bug/bundler_fix
Tod Beardsley 2013-09-13 14:26:30 -05:00
commit 813290cd68
No known key found for this signature in database
GPG Key ID: 1EFFB682ADB9F193
1 changed files with 7 additions and 2 deletions

View File

@ -218,6 +218,12 @@ class Metasploit3 < Msf::Auxiliary
if (res and res.code == 301)
uri = URI(res.headers['Location'])
if uri.path =~ /\/author\/([[:print:]]+)\//
username = $1
print_good "#{uri.path} - Found user '#{username}' with id #{i.to_s}"
usernames << username
next
end
uri = "#{uri.path}?#{uri.query}"
res = send_request_cgi({
'method' => 'GET',
@ -245,5 +251,4 @@ class Metasploit3 < Msf::Auxiliary
return usernames
end
end