Adjusted attribute strings to match MSDN cases
parent
3519aff146
commit
141195a5ae
|
@ -228,7 +228,7 @@ class Metasploit3 < Msf::Post
|
|||
epassword = node.attributes['cpassword']
|
||||
next if epassword.to_s.empty?
|
||||
|
||||
user = node.attributes['userName']
|
||||
user = node.attributes['username'] #lowercase in MSDN
|
||||
path = node.attributes['path']
|
||||
|
||||
changed = node.parent.attributes['changed']
|
||||
|
@ -245,7 +245,7 @@ class Metasploit3 < Msf::Post
|
|||
epassword = node.attributes['cpassword']
|
||||
next if epassword.to_s.empty?
|
||||
|
||||
user = node.attributes['userName']
|
||||
user = node.attributes['username'] #lowercase in MSDN
|
||||
path = node.attributes['path']
|
||||
|
||||
changed = node.parent.attributes['changed']
|
||||
|
@ -262,7 +262,7 @@ class Metasploit3 < Msf::Post
|
|||
epassword = node.attributes['cpassword']
|
||||
next if epassword.to_s.empty?
|
||||
|
||||
user = node.attributes['userName']
|
||||
user = node.attributes['username'] #lowercase in MSDN
|
||||
dsn = node.attributes['dsn']
|
||||
|
||||
changed = node.parent.attributes['changed']
|
||||
|
|
Loading…
Reference in New Issue