Index: scripts/html-title.nse =================================================================== --- scripts/html-title.nse (revision 11284) +++ scripts/html-title.nse (working copy) @@ -66,7 +66,7 @@ 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 @@ 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 @@ 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