Skip to content

Instantly share code, notes, and snippets.

@skyleronken
Created October 22, 2020 00:53
Show Gist options
  • Save skyleronken/7f8d79ad9a2c96f5371ddea6e97ea177 to your computer and use it in GitHub Desktop.
Save skyleronken/7f8d79ad9a2c96f5371ddea6e97ea177 to your computer and use it in GitHub Desktop.
reverse_dns_lookup.sh
#!/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