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:
@@ -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
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user