Enumerate subdomains for a domain using ProjectDiscovery's chaos-client tool
Use the chaos-client tool to enumerate subdomains from ProjectDiscovery's dataset.
/home/kali/.pdtm/go/bin/chaos-client (also in $PATH as chaos-client)
# Get subdomains for a domain
chaos-client -d example.com -silent
# Get first N subdomains
chaos-client -d example.com -silent | head -N
# Get subdomain count/statistics
chaos-client -d example.com -count
# Output as JSON
chaos-client -d example.com -json -silent
# Save to file
chaos-client -d example.com -silent -o output.txt
# Multiple domains from file
chaos-client -dL domains.txt -silent
chaos-client command-silent flag suppresses banner output — use it for cleaner results