mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
Fix incorrect (broken) return value in p2p-conficker.nse. Spotted by
Daniel Miller.
This commit is contained in:
parent
f57b87a010
commit
bbf254d90e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue