Created
April 25, 2018 09:56
-
-
Save 0xbharath/cd6f53a81964cac7f02a5c4bc1693d4b to your computer and use it in GitHub Desktop.
A simple bash function to enumerate sub-domains using VirusTotal
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
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