We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518e286 commit 1f6bd3eCopy full SHA for 1f6bd3e
modules/auxiliary/scanner/http/title.rb
@@ -13,7 +13,7 @@ class Metasploit3 < Msf::Auxiliary
13
14
def initialize
15
super(
16
- 'Name' => 'HTTP HTML <title> tag content grabber',
+ 'Name' => 'HTTP HTML Title tag content grabber',
17
'Description' => %q{
18
Generates a GET request to the webservers provided and returns the server header,
19
HTML title attribute and location header (if set). Useful for rapidly identifying
@@ -45,8 +45,8 @@ def run_host(target_host)
45
begin
46
# Send a normal GET request
47
res = send_request_cgi(
48
- 'uri' => '/',
49
- 'method' => 'GET'
+ 'uri': '/',
+ 'method': 'GET'
50
)
51
52
# If no response, quit now
0 commit comments