1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 13:11:28 +00:00

Add a patch by Tom Sellers to use "html-title.nse" in the debug messages of the

script of that name, instead of the old name "showHTMLTitle."
This commit is contained in:
david
2008-12-06 02:48:30 +00:00
parent e37bb72cd1
commit be28828544

View File

@@ -66,7 +66,7 @@ action = function(host, port)
result = data.body
else
-- debug msg and no output; or no debug msg and some output if we were redirected.
if not redir then stdnse.print_debug( "showHTMLTitle.nse: %s did not respond with any data.", host.targetname or host.ip ) end
if not redir then stdnse.print_debug( "html-title.nse: %s did not respond with any data.", host.targetname or host.ip ) end
return (redir and ("%s %s no page was returned."):format( redir, (loc and ", but") or "and" )) or nil
end
@@ -76,7 +76,7 @@ action = function(host, port)
if title and title ~= "" then
result = string.gsub(title , "[\n\r\t]", "")
if string.len(title) > 65 then
stdnse.print_debug("showHTMLTitle.nse: (%s) Title got truncated!", host.targetname or host.ip );
stdnse.print_debug("html-title.nse: (%s) Title got truncated!", host.targetname or host.ip );
result = string.sub(result, 1, 62) .. "..."
end
else
@@ -177,7 +177,7 @@ function is_vhost( rhost, host )
local answer, msg = dns.query( rhost, opts )
if not answer then
stdnse.print_debug( "showHTMLTitle: DNS query failed for target %s. Query was: %s. Error Code: %s", host.targetname or host.ip, rhost, msg or "nil" )
stdnse.print_debug( "html-title.nse: DNS query failed for target %s. Query was: %s. Error Code: %s", host.targetname or host.ip, rhost, msg or "nil" )
return false
end