Documentation
README
Recon Methodology
Phase 1: Passive (no direct contact)
Subdomain Enumeration
subfinder -d target.com -silent -all | sort -u > subs.txt
httpx -l subs.txt -silent -status-code -tech-detect | tee live-hosts.txt
URL Discovery
gau target.com | sort -u > historical-urls.txt
waybackurls target.com | sort -u >> historical-urls.txt
grep -E "\?.*=" historical-urls.txt > params.txt
grep -iE "api|admin|internal|debug|test|staging" historical-urls.txt > interesting.txt
Tech Detection
curl -sI https://target.com | grep -iE "server|x-powered|x-runtime|x-generator"
Phase 2: Active (light contact)
This is the opening of the README. Read the full README on GitHub.