1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-20 13:19:01 +00:00

Fix incorrect (broken) return value in p2p-conficker.nse. Spotted by

Daniel Miller.
This commit is contained in:
david
2011-07-18 20:40:47 +00:00
parent f57b87a010
commit bbf254d90e

View File

@@ -621,6 +621,6 @@ action = function(host)
table.insert(response, string.format("%d/%d checks are positive: Host is likely INFECTED", count, checks))
end
return true, stdnse.format_output(true, response)
return stdnse.format_output(true, response)
end