1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Remove an unneeded very verbose debug statement.

This commit is contained in:
dmiller
2020-01-19 16:37:35 +00:00
parent 0acdeb5487
commit 8e145819c2

View File

@@ -103,7 +103,6 @@ action = function(host, port)
-- Extract the strings from this probe -- Extract the strings from this probe
local plain = strings(responses[probes[i]], min) local plain = strings(responses[probes[i]], min)
if plain then if plain then
stdnse.debug1("%s:>>>%s<<<", probes[i], plain)
-- rearrange some whitespace to look nice -- rearrange some whitespace to look nice
plain = plain:gsub("^[\n ]*", "\n "):gsub("[\n ]+$", "") plain = plain:gsub("^[\n ]*", "\n "):gsub("[\n ]+$", "")
-- Gather all the probes that had this same set of strings. -- Gather all the probes that had this same set of strings.