1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-26 17:39:03 +00:00

Fixed an error in the dnsbl.quorum.to lookup that would incorrectly always

return all lookups as SPAM sources. [Patrik]
This commit is contained in:
patrik
2012-03-11 09:37:49 +00:00
parent 515dbe7f2f
commit 0f06a580a0

View File

@@ -163,7 +163,7 @@ SERVICES = {
return o
end,
resp_parser = function(self, r)
return ( ( r[1] and r[1] == "127.0.0.0" ) and { state = "SPAM" } )
return ( ( r[1] and r[1] ~= "127.0.0.0" ) and { state = "SPAM" } )
end
},