mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-11 21:54:56 +03:00
1.3 KiB
1.3 KiB
Workflows - Web Application Vulnerability Triage
Workflow 1: DAST Finding Triage
- Import DAST scan results (ZAP XML/JSON, Burp XML)
- Auto-classify findings by OWASP Top 10 category via CWE mapping
- Filter out known false positive patterns (missing headers on non-sensitive pages, etc.)
- Flag confirmed exploitation findings as true positives
- Queue remaining findings for manual validation
- Security analyst validates with manual testing in Burp/ZAP
- Assign OWASP risk rating to validated findings
- Push validated findings to DefectDojo/Jira
Workflow 2: SAST Finding Triage
- Import SAST scan results (Semgrep JSON, SonarQube)
- Filter out findings in test files, example code, and dead code
- Cross-reference against data flow analysis for injection findings
- Review code context to validate exploitability
- Assign severity based on data sensitivity and exposure
- Create development tickets for validated findings
Workflow 3: Combined Triage and Deduplication
- Import both DAST and SAST findings for same application
- Correlate SAST code findings with DAST runtime findings
- Findings confirmed by both DAST and SAST get elevated priority
- Deduplicate findings pointing to same root cause
- Generate unified triage report with remediation priority