Member-only story
General Tools
Frameworks
Dictionary attacks
Datasets
- crt.sh
- WaybackURLS
- Google dork ‘cache:’ (unlike wayback machine , the google cache sometimes has some info that can be easily overlooked and if it’s available then it’s definitely automated) — Thank you HackerPrat
Permutation Scanning
DNS Databases
- DNS Dumpster
- Shodan
- Pentest-tools
- Rapid7 Forward DNS (FDNS)
- Crobat
- Subdomain finder by c99.nl
- BufferOver
- Spyse
Checking SubDomain Status Code
Bash Extra resources
curl -s <https://rapiddns.io/subdomain/example.com?full=1> | grep -oP '_blank">\\K[^<]*' | grep -v http | sort -u
- curl -s https://rapiddns.io/subdomain/example.com?full=1 >>>> Will download a list of all the domains from rapiddns
- grep -oP ‘_blank”>\K[^<]*’ >>>> Will grep all the links that open in a new tab
- Will grep all URLs that start with http
- Will then sort the list
- https://gowthams.gitbook.io/bughunter-handbook/list-of-vulnerabilities-bugs/recon-and-osint/subdomain-enumeration
- https://github.com/CristinaSolana/subdomain-recon
- https://github.com/ARPSyndicate/kenzer
- https://github.com/bing0o/SubEnum
- https://github.com/gwen001/github-search/blob/master/github-subdomains.py