Passive
Domain & Subdomain discovery
# Subdomain enumeration
subfinder -d target.com -all -recursive -o subdomains.txt
amass enum -passive -d target.com -o amass_subs.txt
assetfinder --subs-only target.com > assetfinder_subs.txt
# Combine and deduplicate
cat subdomains.txt amass_subs.txt assetfinder_subs.txt | sort -u > all_subdomains.txt
# Validate live hosts
httpx -l all_subdomains.txt -o live_hosts.txt -title -tech-detect -status-codeTechnology fingerprinting
# Detect technologies
whatweb -v -a 3 https://target.com
wappalyzer https://target.com
# Check HTTP headers
curl -I https://target.com
# Identify CMS/Framework
# WordPress: /wp-admin, /wp-content
# Drupal: /user/login, CHANGELOG.txt
# Next.js: /_next/static
# React: view-source for React patternsOSINT (Open Source INTelligence)
DNS Enumeration
Last updated