From c6affcd6d3cbe0f74f7b99a1960774f6af62f663 Mon Sep 17 00:00:00 2001 From: Tod Beardsley Date: Mon, 5 May 2014 13:38:53 -0500 Subject: [PATCH] Fix caps, description on F5 module The product name isn't "Load Balancer" as far as I can tell. --- modules/auxiliary/gather/f5_bigip_cookie_disclosure.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/auxiliary/gather/f5_bigip_cookie_disclosure.rb b/modules/auxiliary/gather/f5_bigip_cookie_disclosure.rb index 838bc2803e..a949fa36c5 100644 --- a/modules/auxiliary/gather/f5_bigip_cookie_disclosure.rb +++ b/modules/auxiliary/gather/f5_bigip_cookie_disclosure.rb @@ -14,8 +14,8 @@ class Metasploit3 < Msf::Auxiliary super(update_info(info, 'Name' => 'F5 BigIP Backend Cookie Disclosure', 'Description' => %q{ - This module identify F5 BigIP Load Balancers and leaks backends - information through cookies. + This module identifies F5 BigIP load balancers and leaks backend + information through cookies inserted by the BigIP devices. }, 'Author' => [ 'Thanat0s ' ], 'References' => @@ -96,13 +96,13 @@ class Metasploit3 < Msf::Auxiliary cookie = get_cookie() # Get the cookie # If the cookie is not found, stop process 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 end # Print the cookie name on the first request 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 back_end = cookie_decode(cookie[:value])