🗒️

99. List of tools for grabbing subdomains

General Tools

  1. SubFinder
  1. Findomain
  1. Sublist3r
  1. dnssearch
  1. Sudomy
  1. Assetfinder
  1. Vita
  1. PureDNS
  1. GetAllUrls(GUA)

Frameworks

  1. Amass
  1. Sudomy
  1. ReconFTW
  1. DMitry

Dictionary attacks

  1. knockPy
  1. DNSRecon
  1. MassDNS

Datasets

  1. crt.sh
  1. WaybackURLS

Permutation Scanning

  1. AltDNS

DNS Databases

  1. DNS Dumpster
  1. Shodan
  1. Pentest-tools
  1. Rapid7 Forward DNS (FDNS)
  1. Crobat
  1. Subdomain finder by c99.nl
  1. BufferOver
  1. Spyse

Checking SubDomain Status Code

  1. URLChecker
  1. HTTProbe

Bash Extra resources

curl -s https://rapiddns.io/subdomain/example.com?full=1 | grep -oP '_blank">\K[^<]*' | grep -v http | sort -u
  1. curl -s https://rapiddns.io/subdomain/example.com?full=1 >>>> Will download a list of all the domains from rapiddns
  1. grep -oP '_blank">\K[^<]*' >>>> Will grep all the links that open in a new tab
  1. Will grep all URLs that start with http
  1. Will then sort the list

🎩Hide01