Files
Anthropic-Cybersecurity-Skills/skills/triaging-vulnerabilities-with-ssvc-framework/references/api-reference.md
T
mukul975 c21af3347e Complete folder anatomy for all 649 cybersecurity skills + update LICENSE to Mahipal
- Add scripts/agent.py and references/api-reference.md to all remaining skills
- Update all 648 LICENSE files: copyright now reads 'Mahipal'
- Add implementing-security-monitoring-with-datadog (new skill with full anatomy)
- All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
2026-03-11 00:22:12 +01:00

2.1 KiB

API Reference: Triaging Vulnerabilities with SSVC Framework

SSVC Decision Outcomes

Decision Action Timeline
Act Immediate remediation required 24-48 hours
Attend Urgent, prioritize in current cycle 1-2 weeks
Track* Monitor closely, schedule remediation Next patch cycle
Track Standard vulnerability management Regular cadence

SSVC Decision Points

Decision Point Values Description
Exploitation none, poc, active Current exploitation activity
Technical Impact partial, total Scope of compromise if exploited
Automatability no, yes Can exploitation be automated?
Mission Prevalence minimal, support, essential Asset criticality to mission

Enrichment APIs

API Endpoint Purpose
CISA KEV known_exploited_vulnerabilities.json Active exploitation check
FIRST EPSS api.first.org/data/v1/epss?cve= Exploitation probability
NVD services.nvd.nist.gov/rest/json/cves/2.0 CVSS scores, CWE

Decision Tree Key Paths

Exploitation Impact Automatability Prevalence Decision
Active Total any any Act
Active Partial Yes any Act
Active Partial No Essential Act
Active Partial No Support Attend
PoC Total Yes any Attend
PoC Total No any Track*
PoC Partial any any Track*
None Total any any Track*
None Partial any any Track

Python Libraries

Library Version Purpose
requests >=2.28 CISA KEV and EPSS API queries
json stdlib Report generation
pathlib stdlib Output directory management

References