Skip to content

Instantly share code, notes, and snippets.

@ACK-J
Created March 27, 2021 03:36
Show Gist options
  • Save ACK-J/61c9f72b77f19c3e69234be259561d25 to your computer and use it in GitHub Desktop.
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
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