Skip to content

Commit

Permalink
Update cli.py
Browse files Browse the repository at this point in the history
Allow WHOIS input to be empty
  • Loading branch information
kazzarahw authored Mar 13, 2024
1 parent bac2aa0 commit 116babf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnsrecon/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ def whois_ips(res, ip_list):
)
)

elif "n" in answer:
elif "n" in answer or answer == ['']:
print_status("No Reverse Lookups will be performed.")
else:
for a in answer:
Expand Down

0 comments on commit 116babf

Please sign in to comment.