whois domain.com# Basic DNS lookup
dig domain.com
# MX records
dig domain.com MX
# Zone transfer attempt
dig axfr @nameserver domain.com# Using dnsenum
dnsenum --enum domain.com -f wordlist.txt -r
# Certificate transparency logs
curl -s "https://crt.sh/?q=domain.com&output=json" | jq -r '.[] | .name_value' | sort -u# Using Gobuster
gobuster vhost -u http://target_IP -w wordlist.txt --append-domain# Banner grabbing
curl -I domain.com
# WAF detection
wafw00f domain.com
# Comprehensive scan
nikto -h domain.com -Tuning b# Using robots.txt
curl domain.com/robots.txt
# Using Scrapy
python3 ReconSpider.py http://domain.comsite:domain.com # Limit to specific domain
inurl:login # Find login pages
filetype:pdf # Search for file types
intitle:"index of" # Directory listing/.well-known/security.txt
/.well-known/change-password
/.well-known/openid-configuration