Last active
July 21, 2018 12:17
-
-
Save streaak/5f831bb1034aba4dd7338b7dd6342c0e to your computer and use it in GitHub Desktop.
Make life easier for people using aquatone
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
#!/bin/bash | |
for var in $@ | |
do | |
aquatone-discover -d $var --threads 10 && aquatone-scan -d $var --ports huge --threads 10 && aquatone-takeover -d $var --threads 10 && aquatone-gather -d $var --threads 10 | |
done | |
# USAGE | |
# sh aqua2.sh DOMAINNAMES... | |
# Example - sh aqua2.sh corp.yahoo.com advertising.yahoo.com shopping.yahoo.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment