Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions src/ssvc/outcomes/cisa/scoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@
"CISA recommends remediating Track* vulnerabilities within standard update timelines.",
)


_MONITOR = DecisionPointValue(
name="Monitor",
key="M",
description="The vulnerability contains specific characteristics that may require closer monitoring for changes. "
"CISA recommends remediating Monitor vulnerabilities within standard update timelines.",
)

_ATTEND = DecisionPointValue(
name="Attend",
key="A",
Expand All @@ -50,7 +58,7 @@
"CISA recommends remediating Act vulnerabilities as soon as possible.",
)

CISA = CisaDecisionPoint(
CISA1 = CisaDecisionPoint(
name="CISA Levels",
key="CISA",
description="The CISA outcome group. "
Expand All @@ -63,13 +71,27 @@
_ACT,
),
)

CISA2 = CisaDecisionPoint(
name="CISA Levels",
key="CISA",
description="The CISA outcome group. "
"CISA uses its own SSVC decision tree model to prioritize relevant vulnerabilities into four possible decisions: Track, Track*, Attend, and Act.",
version="1.0.1",
values=(
_TRACK,
_MONITOR,
_ATTEND,
_ACT,
),
)
"""
The CISA outcome group. Based on CISA's customizations of the SSVC model.
See https://www.cisa.gov/stakeholder-specific-vulnerability-categorization-ssvc
"""


VERSIONS = (CISA,)
VERSIONS = (CISA2,)
LATEST = VERSIONS[-1]


Expand Down