From be28828544d8c0d94e000a9eb48a1030d773c96a Mon Sep 17 00:00:00 2001 From: david Date: Sat, 6 Dec 2008 02:48:30 +0000 Subject: [PATCH] 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." --- scripts/html-title.nse | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/html-title.nse b/scripts/html-title.nse index f8b724f6f..861177b8a 100644 --- a/scripts/html-title.nse +++ b/scripts/html-title.nse @@ -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