99. List of tools for grabbing subdomains
General Tools
- SubFinder
- Findomain
- Sublist3r
- dnssearch
- Sudomy
- Assetfinder
- Vita
- PureDNS
- GetAllUrls(GUA)
Frameworks
- Amass
- Sudomy
- ReconFTW
- DMitry
Dictionary attacks
- knockPy
- DNSRecon
- MassDNS
Datasets
- crt.sh
- WaybackURLS
Permutation Scanning
- AltDNS
DNS Databases
- DNS Dumpster
- Shodan
- Pentest-tools
- Rapid7 Forward DNS (FDNS)
- Crobat
- Subdomain finder by c99.nl
- BufferOver
- Spyse
Checking SubDomain Status Code
- URLChecker
- HTTProbe
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