Created
October 22, 2020 00:53
-
-
Save skyleronken/7f8d79ad9a2c96f5371ddea6e97ea177 to your computer and use it in GitHub Desktop.
reverse_dns_lookup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while read p; do | |
echo -n "$p: " | |
curl https://api.hackertarget.com/reversedns/?q=$p | |
echo "" | |
done <$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment