Merge branch 'drupal_views_user_enum.rb' of git://github.com/zeknox/metasploit-framework into zeknox-drupal_views_user_enum.rb
commit
8fe3f289bf
|
@ -24,7 +24,8 @@ class Metasploit3 < Msf::Auxiliary
|
||||||
'Author' =>
|
'Author' =>
|
||||||
[
|
[
|
||||||
'Justin Klein Keane', #Original Discovery
|
'Justin Klein Keane', #Original Discovery
|
||||||
'Robin Francois <rof[at]navixia.com>'
|
'Robin Francois <rof[at]navixia.com>',
|
||||||
|
'Brandon McCann "zeknox" <bmccann [at] accuvant.com>'
|
||||||
],
|
],
|
||||||
'License' => MSF_LICENSE,
|
'License' => MSF_LICENSE,
|
||||||
'References' =>
|
'References' =>
|
||||||
|
@ -106,11 +107,15 @@ class Metasploit3 < Msf::Auxiliary
|
||||||
print_status("Done. " + final_results.length.to_s + " usernames found...")
|
print_status("Done. " + final_results.length.to_s + " usernames found...")
|
||||||
|
|
||||||
final_results.each do |user|
|
final_results.each do |user|
|
||||||
report_auth_info(
|
print_good("Found User: #{user}")
|
||||||
:host => Rex::Socket.getaddress(datastore['RHOST']),
|
|
||||||
:port => datastore['RPORT'],
|
store_loot(
|
||||||
:user => user,
|
type,
|
||||||
:type => "drupal_user"
|
'text/plain',
|
||||||
|
Rex::Socket.getaddress(datastore['RHOST']),
|
||||||
|
user,
|
||||||
|
'drupal_user.txt',
|
||||||
|
user
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue