Skip to content

Commit 52b929c

Browse files
author
root
committed
1 parent ce89d39 commit 52b929c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

modules/post/windows/gather/credentials/mcafee_hashdump.rb

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@ def initialize(info = {})
2828
),
2929
'License' => MSF_LICENSE,
3030
'Author' => [
31-
'Mike Manzotti <michelemanzotti[at]gmail.com>', # Metasploit module?
32-
'Maurizio inode Agazzini' # original research?
31+
'Mike Manzotti <mike.manzotti[at]dionach.com>', # Metasploit module
32+
'Maurizio inode Agazzini' # original research
33+
],
34+
'References' => [
35+
['URL', 'https://www.dionach.com/blog/disabling-mcafee-on-access-scanning']
3336
],
3437
'Platform' => [ 'win' ],
3538
'SessionTypes' => [ 'meterpreter' ]
@@ -44,7 +47,7 @@ def enum_vse_keys
4447
'HKLM\\Software\\McAfee\\DesktopProtection' # 32-bit
4548
].each do |key|
4649
subkeys = registry_enumkeys(key)
47-
keys << key unless subkeys.empty?
50+
keys << key unless subkeys.nil?
4851
end
4952
keys
5053
end

0 commit comments

Comments
 (0)