Skip to content

Instantly share code, notes, and snippets.

@0xbharath
Created April 25, 2018 09:56
Show Gist options
  • Save 0xbharath/cd6f53a81964cac7f02a5c4bc1693d4b to your computer and use it in GitHub Desktop.
Save 0xbharath/cd6f53a81964cac7f02a5c4bc1693d4b to your computer and use it in GitHub Desktop.
A simple bash function to enumerate sub-domains using VirusTotal
find-subdomains-vt()
{ curl -s https://www.virustotal.com/ui/domains/$1/subdomains\?limit\=$2 | jq .data[].id; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment