Skip to content

Instantly share code, notes, and snippets.

@insi2304
Created December 31, 2019 09:51
Show Gist options
  • Save insi2304/297832d8850e05f43860e570cc21e922 to your computer and use it in GitHub Desktop.
Save insi2304/297832d8850e05f43860e570cc21e922 to your computer and use it in GitHub Desktop.
Run dirsearch on subdomains
#!/bin/sh
for i in `cat /root/work/bugbounty/recon/my_recon/data/webhosts`;
do
python3 /root/tools/dirsearch/dirsearch.py -e php,jsp,asp,txt,zip,gz -u $i -w /root/tools/wordlists/content_discovery_all.txt | tee -a dirsearch_domain.log;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment