Why does Spamhaus’ CBL blocklist return records for 1.1.1.1 and 8.8.8.8?
I’m looking up ips with the following code
import dns.resolver
resolver = dns.resolver.Resolver()
resolver.timeout = 0.10
resolver.lifetime = 0.10
resolver.nameservers = [‘127.0.0.53’]
searchIp = ‘8.8.8.8’
ipRev = ‘.’.join… Continue reading Why does Spamhaus’ CBL blocklist return records for 1.1.1.1 and 8.8.8.8?