Skip to content

Commit bfbacf6

Browse files
Update CISA Track* to Monitor and version
1 parent 1fb7e2a commit bfbacf6

1 file changed

Lines changed: 24 additions & 2 deletions

File tree

src/ssvc/outcomes/cisa/scoring.py

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@
3333
"CISA recommends remediating Track* vulnerabilities within standard update timelines.",
3434
)
3535

36+
37+
_MONITOR = DecisionPointValue(
38+
name="Monitor",
39+
key="M",
40+
description="The vulnerability contains specific characteristics that may require closer monitoring for changes. "
41+
"CISA recommends remediating Monitor vulnerabilities within standard update timelines.",
42+
)
43+
3644
_ATTEND = DecisionPointValue(
3745
name="Attend",
3846
key="A",
@@ -50,7 +58,7 @@
5058
"CISA recommends remediating Act vulnerabilities as soon as possible.",
5159
)
5260

53-
CISA = CisaDecisionPoint(
61+
CISA1 = CisaDecisionPoint(
5462
name="CISA Levels",
5563
key="CISA",
5664
description="The CISA outcome group. "
@@ -63,13 +71,27 @@
6371
_ACT,
6472
),
6573
)
74+
75+
CISA2 = CisaDecisionPoint(
76+
name="CISA Levels",
77+
key="CISA",
78+
description="The CISA outcome group. "
79+
"CISA uses its own SSVC decision tree model to prioritize relevant vulnerabilities into four possible decisions: Track, Track*, Attend, and Act.",
80+
version="1.0.1",
81+
values=(
82+
_TRACK,
83+
_MONITOR,
84+
_ATTEND,
85+
_ACT,
86+
),
87+
)
6688
"""
6789
The CISA outcome group. Based on CISA's customizations of the SSVC model.
6890
See https://www.cisa.gov/stakeholder-specific-vulnerability-categorization-ssvc
6991
"""
7092

7193

72-
VERSIONS = (CISA,)
94+
VERSIONS = (CISA2,)
7395
LATEST = VERSIONS[-1]
7496

7597

0 commit comments

Comments
 (0)