1. Reconnaissance
鈹斺攢> 2. Scanning
鈹斺攢> 3. Exploitation
鈹斺攢> 4. Post-Exploitation
鈹斺攢> 5. Reporting
# Quick enum
subfinder -d target.com -o subs.txt
# Probe alive hosts
cat subs.txt | httpx -silent > alive.txt
# Or use the alias
recon target.comwhatweb https://target.comnmap -sV -sC -T4 target.com# Nuclei (recommended)
nuclei -u https://target.com -severity high,critical
# Nikto
nikto -h https://target.com
# Or use the alias
webscan https://target.com# Common directories
ffuf -u https://target.com/FUZZ -w /opt/wordlists/web/common.txt
# With extensions
ffuf -u https://target.com/FUZZ -w /opt/wordlists/web/common.txt -e .php,.html,.jssqlmap -u "https://target.com/page?id=1" --batch --dbsdalfox url "https://target.com/search?q=test"Check for:
- Default credentials
- JWT vulnerabilities (
jwt-hack) - Session management issues
- Extract sensitive data
- Escalate privileges
- Maintain access (if authorized)
goat-report| Wordlist | Path |
|---|---|
| Common dirs | /opt/wordlists/web/common.txt |
| Large dirs | /opt/wordlists/web/directory-list-2.3-medium.txt |
| API endpoints | /opt/wordlists/custom/api-endpoints.txt |
| Parameters | /opt/wordlists/custom/api-params.txt |