Loading...
Loading...
Run OWASP ZAP for Dynamic Application Security Testing. Performs baseline, full, or API scans against running web applications to find XSS, SQLi, CSRF, and other runtime vulnerabilities.
npx skill4agent add vchirrav/product-security-ai-skills dast-zapdocker pull zaproxy/zap-stabledocker run --rm -v $(pwd):/zap/wrk zaproxy/zap-stable \
zap-baseline.py -t <target-url> -J zap-baseline-results.jsondocker run --rm -v $(pwd):/zap/wrk zaproxy/zap-stable \
zap-full-scan.py -t <target-url> -J zap-full-results.jsondocker run --rm -v $(pwd):/zap/wrk zaproxy/zap-stable \
zap-api-scan.py -t <openapi-url> -f openapi -J zap-api-results.json| # | Risk | Confidence | Alert | URL | CWE | Description | Solution |
|---|------|------------|-------|-----|-----|-------------|----------|| Scan Type | Speed | Coverage | Use Case |
|---|---|---|---|
| Baseline | ~2 min | Passive only | CI/CD gates, quick checks |
| Full | 10-60 min | Active + passive | Pre-release security review |
| API | 5-20 min | API-focused | REST/GraphQL endpoint testing |