🩹 Handle vendor NoneType #791
Some checks are pending
docker / docker_dev (push) Waiting to run

This commit is contained in:
jokob-sk
2024-09-17 08:05:17 +10:00
parent 7340ce6da2
commit 064a51acee
2 changed files with 2 additions and 18 deletions

View File

@@ -1057,7 +1057,7 @@ def main():
elif values.rdns_scanning:
file_print_pr("[DEBUG] Timestamp 45: ", timeNow())
dns_query=None
ipn = ipaddress.ip_network(values.rdns_scanning)
ipn = ipaddress.ip_network(values.rdns_scanning, strict=False)
for ip in ipn.hosts():
the_query = ip.reverse_pointer
if not dns_query: