mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-12 14:14:56 +03:00
2.5 KiB
2.5 KiB
Workflows - Vulnerability SLA Breach Alerting
Workflow 1: SLA Assignment on New Findings
Trigger
New vulnerability findings imported from scanner.
Steps
- Parse incoming vulnerability data (CVE ID, CVSS score, affected asset)
- Look up asset criticality from CMDB to determine if SLA should be tightened
- Calculate SLA tier based on CVSS score and asset criticality
- Compute SLA deadline:
discovered_at + remediation_days - Insert SLA record into tracking database
- Assign finding owner based on asset ownership mapping
- Send initial notification to asset owner with SLA deadline
Workflow 2: Hourly SLA Breach Check
Trigger
Cron job running every hour.
Steps
- Query all open vulnerability SLA records
- For each record, calculate current SLA status:
- within_sla: Less than 80% of SLA window elapsed
- approaching_breach: 80-100% of SLA window elapsed
- breached: Past SLA deadline
- For approaching_breach findings (first notification):
- Send Slack/Teams warning to asset owner
- Send email notification to asset owner and team lead
- For breached findings:
- Send immediate Slack alert to security team channel
- Trigger PagerDuty incident for critical/high severity
- Send escalation email to management chain
- Update escalation_level in database
- For post-breach findings (already breached, escalation increase):
- Every 12 hours, increase escalation level
- Level 1: Team lead notification
- Level 2: Director notification
- Level 3: VP/CISO notification
Workflow 3: Remediation Confirmation
Trigger
Vulnerability scanner re-scan confirms finding resolved.
Steps
- Match resolved finding to SLA record
- Record remediation timestamp
- Calculate if remediation was within SLA
- Update SLA record status to
remediated_within_slaorremediated_breach - Close any associated PagerDuty incidents
- Send confirmation notification to asset owner
- Update metrics dashboard
Workflow 4: Monthly SLA Compliance Report
Trigger
First business day of each month.
Steps
- Query all SLA records for the previous month
- Calculate metrics by severity tier:
- Total findings per tier
- SLA compliance rate per tier
- Mean time to remediate per tier
- Count of currently overdue findings
- Identify top 10 assets with most SLA breaches
- Identify teams with lowest compliance rates
- Generate HTML report with charts
- Email report to security leadership
- Update executive dashboard