Subdomain Enumeration
SSL/TLS certs
Certificate Transparency logs can help find subdomains
these are publically accessible logs
these can be viewed at sites like
Search Engines
search engines can be used with filters to find subdomains
/site:*.domain.com -site:www.domain.comDNSRecon
dnsrecon -t brt -d domain.comSublist3r
sublister.py -d domain.comVirtual Hosts
ffuf can be used to find subdomains
ffuf -w /usr/share/wordlists/SecLists/Discovery/DNS/namelist.txt -H "Host: FUZZ.domain.com" -u http://MACHINE_IPThe above command will always produce valid results, we need to use -fs to filter by pagesize. Filter this with the most occurring size value.
ffuf -w /usr/share/wordlists/SecLists/Discovery/DNS/namelist.txt -H "Host: FUZZ.acmeitsupport.thm" -u http://MACHINE_IP -fs {size}Last updated