fix gpp attribution and description
parent
534008b010
commit
5497d091fc
|
@ -22,19 +22,15 @@ class Metasploit3 < Msf::Post
|
||||||
files containing local user accounts and passwords and decrypts them
|
files containing local user accounts and passwords and decrypts them
|
||||||
using Microsofts public AES key.
|
using Microsofts public AES key.
|
||||||
|
|
||||||
Tested directly on a Win2k8 x64 DC, Win2k12RC x64 DC, and a Windows 7 x32 Client
|
Tested on WinXP SP3 Client and Win2k8 R2 DC.
|
||||||
Workstation.
|
|
||||||
|
|
||||||
Using the ALL or DOMAINS flags whilst on a DC will not enumerate that DC as it
|
|
||||||
is looking externally on the network for other Domain Controllers, however the
|
|
||||||
default (CURRENT=True which inspects the registry) should work successfully.
|
|
||||||
},
|
},
|
||||||
'License' => MSF_LICENSE,
|
'License' => MSF_LICENSE,
|
||||||
'Author' =>[
|
'Author' =>[
|
||||||
'Ben Campbell <eat_meatballs[at]hotmail.co.uk>',
|
'Ben Campbell <eat_meatballs[at]hotmail.co.uk>',
|
||||||
'Loic Jaquemet <loic.jaquemet+msf[at]gmail.com>',
|
'Loic Jaquemet <loic.jaquemet+msf[at]gmail.com>',
|
||||||
'scriptmonkey <scriptmonkey[at]owobble.co.uk>',
|
'scriptmonkey <scriptmonkey[at]owobble.co.uk>',
|
||||||
'TheLightCosine <thelightcosine[at]gmail.com>'
|
'TheLightCosine <thelightcosine[at]metasploit.com>',
|
||||||
|
'Rob Fuller <mubix[at]hak5.org>' #domain/dc enumeration code
|
||||||
],
|
],
|
||||||
'References' =>
|
'References' =>
|
||||||
[
|
[
|
||||||
|
@ -252,7 +248,6 @@ class Metasploit3 < Msf::Post
|
||||||
return domains
|
return domains
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def enum_dcs(domain)
|
def enum_dcs(domain)
|
||||||
print_status("Enumerating DCs for #{domain}")
|
print_status("Enumerating DCs for #{domain}")
|
||||||
domaincontrollers = 24 # 10 + 8 (SV_TYPE_DOMAIN_BAKCTRL || SV_TYPE_DOMAIN_CTRL)
|
domaincontrollers = 24 # 10 + 8 (SV_TYPE_DOMAIN_BAKCTRL || SV_TYPE_DOMAIN_CTRL)
|
||||||
|
@ -285,7 +280,4 @@ class Metasploit3 < Msf::Post
|
||||||
return hostnames
|
return hostnames
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue