Created
March 6, 2019 16:05
-
-
Save blurbdust/1fc313fb545425414ab59a81ade419d3 to your computer and use it in GitHub Desktop.
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
mkdir $1 | |
cd $1 | |
amass -d $1 | tee amass.log | |
subfinder -d $1 -o subfinder.log -b -w /root/tools/all.txt/all.lower.txt -recursive | |
#subfinder -d $1 -o subfinder.log | |
python /root/tools/Sublist3r/sublist3r.py -d $1 -o sublister.log | |
cat *.log >> subs.txt | |
sort subs.txt | uniq > subdomains.txt | |
subjack -w subdomains.txt -t 10 -timeout 30 -o results.txt -ssl -a | |
tko-subs -domains=subdomains.txt -data=/root/go_work/src/github.com/anshumanbh/tko-subs/providers-data.csv | tee tko-subs.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment