Created
March 27, 2021 03:36
-
-
Save ACK-J/61c9f72b77f19c3e69234be259561d25 to your computer and use it in GitHub Desktop.
One-liner to find all CNAME's for each subddomain of a given domain
This file contains hidden or 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
| while read line; do dig @1.1.1.1 +short "$line" cname >> out.txt; done < <(assetfinder -subs-only domain.com) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment