99. List of tools for grabbing subdomains
General Tools
Frameworks
Dictionary attacks
Datasets
Permutation Scanning
DNS Databases
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