Quick Start¶
Get up and running in under 2 minutes.
Authorised targets only
Only scan systems you own or have explicit written permission to test. For practice, use DVWA, WebGoat, or a HackTheBox / TryHackMe machine.
1. Clone and install¶
git clone https://github.com/davidalvarezp/websec-audit.git
cd websec-audit
chmod +x install.sh websec-audit.sh
sudo ./install.sh
2. Run your first scan¶
The scan runs all 15 modules sequentially. Depending on the target and available tools, a standard scan takes 5–20 minutes.
3. Review the results¶
When the scan finishes you will see a summary like this:
┌───────────────────────────────────────────────────┐
│ TARGET : https://target.com │
│ IP : 93.184.216.34 │
│ RISK : HIGH │
├───────────────────────────────────────────────────┤
│ CRITICAL : 2 │
│ HIGH : 5 │
│ MEDIUM : 7 │
│ LOW : 4 │
│ INFO : 3 │
├───────────────────────────────────────────────────┤
│ TOTAL : 21 finding(s) │
│ DURATION : 487s │
└───────────────────────────────────────────────────┘
HTML report : results_target_YYYYMMDD_HHMMSS/reports/report_*.html
JSON report : results_target_YYYYMMDD_HHMMSS/reports/report_*.json
Audit log : results_target_YYYYMMDD_HHMMSS/logs/audit_*.log
Open the HTML report in your browser for the interactive dashboard.
Common usage patterns¶
Output directory structure¶
results_target_20240101_120000/
├── logs/
│ ├── audit_20240101_120000.log # full timestamped log
│ └── findings.jsonl # one JSON object per finding
├── recon/ WHOIS, DNS records, subdomains, WhatWeb, WAF, dorks
├── portscan/ nmap (.txt .xml .gnmap)
├── ssl/ testssl.json / sslscan.txt
├── headers/ response headers
├── dirs/ gobuster results, sensitive paths found
├── vulns/ sqlmap/, xss/, nuclei/
├── cms/ wpscan_results.json, droopescan_*.json
├── misc/ cors_tests.txt, open_redirect.txt, ssrf_tests.txt, subtakeover.txt
└── reports/
├── report_*.html ← open this in your browser
├── report_*.json
└── report_*.txt
Next steps¶
- Read the full Usage reference for all flags and options
- Understand Scan Modes to choose the right intensity
- Browse the Module docs to learn what each module checks
- Review Reports & Output to understand the report format