Fix caps, description on F5 module

The product name isn't "Load Balancer" as far as I can tell.
bug/bundler_fix
Tod Beardsley 2014-05-05 13:38:53 -05:00
parent 6bfc9a8aa0
commit c6affcd6d3
No known key found for this signature in database
GPG Key ID: 1EFFB682ADB9F193
1 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ class Metasploit3 < Msf::Auxiliary
super(update_info(info, super(update_info(info,
'Name' => 'F5 BigIP Backend Cookie Disclosure', 'Name' => 'F5 BigIP Backend Cookie Disclosure',
'Description' => %q{ 'Description' => %q{
This module identify F5 BigIP Load Balancers and leaks backends This module identifies F5 BigIP load balancers and leaks backend
information through cookies. information through cookies inserted by the BigIP devices.
}, },
'Author' => [ 'Thanat0s <thanspam[at]trollprod.org>' ], 'Author' => [ 'Thanat0s <thanspam[at]trollprod.org>' ],
'References' => 'References' =>
@ -96,13 +96,13 @@ class Metasploit3 < Msf::Auxiliary
cookie = get_cookie() # Get the cookie cookie = get_cookie() # Get the cookie
# If the cookie is not found, stop process # If the cookie is not found, stop process
if cookie.empty? || cookie[:id].nil? if cookie.empty? || cookie[:id].nil?
print_error("#{peer} - F5 Server Load Balancing cookie not found") print_error("#{peer} - F5 Server load balancing cookie not found")
break break
end end
# Print the cookie name on the first request # Print the cookie name on the first request
if i == 0 if i == 0
print_status("#{peer} - F5 Server Load Balancing \"#{cookie[:id]}\" found") print_status("#{peer} - F5 Server load balancing cookie \"#{cookie[:id]}\" found")
end end
back_end = cookie_decode(cookie[:value]) back_end = cookie_decode(cookie[:value])