Passive and active subdomain enumeration with Subfinder and Amass.
subfinder -d target.com
subfinder -d target.com -o subdomains.txt
subfinder -d target.com -v
subfinder -d target.com -all
subfinder -d target.com -recursive
subfinder -dL domains.txt -o results.txt
subfinder -d target.com -t 50 -timeout 30
subfinder -d target.com -pc ~/.config/subfinder/provider-config.yaml
amass enum -d target.com
amass enum -active -d target.com
amass enum -d target.com -o amass_out.txt
amass enum -d target.com -brute -w /usr/share/seclists/Discovery/DNS/deepmagic.com-prefixes-top50000.txt
amass enum -d target.com -src -ip
amass enum -d target.com -max-dns-queries 5000
amass intel -whois -d target.com
amass intel -asn 12345 -ip
subfinder -d target.com | httpx -silent -o live_hosts.txt
subfinder -d target.com | httpx -title -tech-detect -status-code
cat subdomains.txt | dnsx -a -resp -o resolved.txt
cat subdomains.txt | sort -u > unique.txt
amass enum -d target.com -o amass.txt && subfinder -d target.com -o sub.txt && cat amass.txt sub.txt | sort -u > all_subs.txt