Prioritizing Vulnerabilities with CVSS Scoring
Overview
The Common Vulnerability Scoring System (CVSS) is the industry standard framework maintained by FIRST (Forum of Incident Response and Security Teams) for assessing vulnerability severity. CVSS v4.0 (released November 2023) introduces refined metrics for more accurate scoring. This skill covers calculating CVSS scores, interpreting vector strings, and using CVSS alongside contextual factors like EPSS and CISA KEV for effective vulnerability prioritization.
When to Use
- When managing security operations that require prioritizing vulnerabilities with cvss scoring
- When improving security program maturity and operational processes
- When establishing standardized procedures for security team workflows
- When integrating threat intelligence or vulnerability data into operations
Common Misconfigurations & Verification
- Base score as final answer — verify Threat (EPSS/exploit maturity) and Environmental metrics are applied, not just the NVD base.
- CVSS v2 leakage — verify scores use v3.1/v4.0 vectors, not legacy v2.
- Environmental metrics unset — verify CR/IR/AR reflect the asset's real data sensitivity.
- Scanner score trust — verify the vector string matches the vulnerability rather than accepting the scanner's number blindly.
- Severity ≠ risk — verify prioritization blends asset criticality and exposure, not severity alone.
- Vector miscommunication — verify teams record the full v4.0 vector so scores are reproducible.
Prerequisites
- Understanding of common vulnerability types (buffer overflow, injection, XSS, etc.)
- Familiarity with networking concepts (attack vectors, protocols)
- Access to NVD (National Vulnerability Database) for CVE lookups
- Vulnerability scan results requiring prioritization
Core Concepts
CVSS v4.0 Metric Groups
1. Base Metrics (Intrinsic Severity)
Represent the inherent characteristics of a vulnerability:
Exploitability Metrics:
- Attack Vector (AV): Network (N), Adjacent (A), Local (L), Physical (P)
- Attack Complexity (AC): Low (L), High (H)
- Attack Requirements (AT): None (N), Present (P) - NEW in v4.0
- Privileges Required (PR): None (N), Low (L), High (H)
- User Interaction (UI): None (N), Passive (P), Active (A) - Expanded in v4.0
Impact Metrics (Vulnerable System):
- Confidentiality (VC): None (N), Low (L), High (H)
- Integrity (VI): None (N), Low (L), High (H)
- Availability (VA): None (N), Low (L), High (H)
Impact Metrics (Subsequent System):
- Confidentiality (SC): None (N), Low (L), High (H)
- Integrity (SI): None (N), Low (L), High (H)
- Availability (SA): None (N), Low (L), High (H)
2. Threat Metrics (Dynamic Context)
- Exploit Maturity (E): Attacked (A), POC (P), Unreported (U)
3. Environmental Metrics (Organization-Specific)
Modified versions of base metrics reflecting local deployment context, plus:
- Confidentiality Requirement (CR): High (H), Medium (M), Low (L)
- Integrity Requirement (IR): High (H), Medium (M), Low (L)
- Availability Requirement (AR): High (H), Medium (M), Low (L)
4. Supplemental Metrics (Advisory Information)
- Safety (S): Present (P), Negligible (X)
- Automatable (AU): Yes (Y), No (N)
- Recovery (R): Automatic (A), User (U), Irrecoverable (I)
- Value Density (V): Diffuse (D), Concentrated (C)
- Vulnerability Response Effort (RE): Low (L), Moderate (M), High (H)
- Provider Urgency (U): Red, Amber, Green, Clear
CVSS v4.0 Severity Ratings
| Score Range |
Severity |
| 0.0 |
None |
| 0.1 - 3.9 |
Low |
| 4.0 - 6.9 |
Medium |
| 7.0 - 8.9 |
High |
| 9.0 - 10.0 |
Critical |
CVSS v4.0 Vector String Format
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
This example represents a network-exploitable vulnerability requiring no privileges, no user interaction, no attack requirements, with high impact on confidentiality, integrity, and availability of the vulnerable system.
Workflow
Step 1: Assess Base Metrics
For each vulnerability, evaluate:
Example: CVE-2024-3094 (XZ Utils Backdoor)
Attack Vector: Network (N) - Exploitable over network
Attack Complexity: High (H) - Specific conditions required
Attack Requirements: Present (P) - Specific build/config needed
Privileges Required: None (N) - No authentication needed
User Interaction: None (N) - No victim action needed
Vulnerable System Impact:
Confidentiality: High (H) - Complete access to SSH keys
Integrity: High (H) - Arbitrary code execution
Availability: High (H) - Full system compromise
Subsequent System Impact:
Confidentiality: High (H) - Lateral movement possible
Integrity: High (H) - Network-wide compromise
Availability: None (N) - No downstream availability impact
Vector: CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:N
Step 2: Apply Threat Intelligence Context
Enrich CVSS with real-world threat data:
Exploit Maturity: Attacked (A) - Active exploitation in the wild
EPSS Score: 0.94 - 94% probability of exploitation in 30 days
CISA KEV: Listed - Mandatory remediation for federal agencies
Step 3: Calculate Environmental Score
Adjust for organizational context:
Confidentiality Req: High (H) - Handles PII/financial data
Integrity Req: High (H) - Critical business process
Availability Req: Medium (M) - Has DR/failover capability
Modified Attack Vector: Network (N) - Internet-facing deployment
Step 4: Multi-Factor Prioritization Matrix
Combine CVSS with additional prioritization factors:
| Factor |
Weight |
Source |
| CVSS Base Score |
25% |
NVD/Scanner |
| EPSS Score |
25% |
FIRST EPSS API |
| Asset Criticality |
20% |
Asset inventory/CMDB |
| CISA KEV Listed |
15% |
CISA catalog |
| Network Exposure |
15% |
Network segmentation data |
Step 5: Define Remediation SLAs
| Priority Level |
CVSS Range |
EPSS |
Asset Tier |
SLA |
| P1 - Emergency |
9.0-10.0 |
>0.5 |
Tier 1 |
24-48 hours |
| P2 - Critical |
7.0-8.9 |
>0.3 |
Tier 1-2 |
7 days |
| P3 - High |
7.0-8.9 |
<0.3 |
Tier 2-3 |
14 days |
| P4 - Medium |
4.0-6.9 |
Any |
Any |
30 days |
| P5 - Low |
0.1-3.9 |
Any |
Any |
90 days |
Best Practices
- Never rely solely on CVSS base score for prioritization
- Always incorporate threat intelligence (EPSS, KEV, exploit databases)
- Maintain accurate asset criticality ratings in your CMDB
- Adjust environmental metrics for your specific deployment context
- Use CVSS v4.0 vector strings for precise communication between teams
- Document scoring rationale for audit trail and consistency
- Re-evaluate scores when new threat intelligence becomes available
- Train remediation teams on interpreting CVSS metrics and vector strings
Common Pitfalls
- Treating CVSS base score as the sole prioritization factor
- Ignoring environmental metrics that reflect organizational risk
- Not updating threat metrics when exploit maturity changes
- Confusing CVSS severity with actual organizational risk
- Using outdated CVSS v2.0 scores instead of v3.1/v4.0
- Over-relying on scanner-provided scores without validation
Related Skills
- prioritizing-patches-with-exploit-prediction-scoring
- implementing-risk-based-vulnerability-management
- implementing-vulnerability-remediation-sla
1---2name: prioritizing-vulnerabilities-with-cvss-scoring3description: The Common Vulnerability Scoring System (CVSS) is the industry standard framework maintained by FIRST (Forum of Incident Response and Security Teams) for assessing vulnerability severity. CVSS v4.0 (r4license: Apache-2.05---6# Prioritizing Vulnerabilities with CVSS Scoring
7
8## Overview
9The Common Vulnerability Scoring System (CVSS) is the industry standard framework maintained by FIRST (Forum of Incident Response and Security Teams) for assessing vulnerability severity. CVSS v4.0 (released November 2023) introduces refined metrics for more accurate scoring. This skill covers calculating CVSS scores, interpreting vector strings, and using CVSS alongside contextual factors like EPSS and CISA KEV for effective vulnerability prioritization.
10
11
12## When to Use
13
14- When managing security operations that require prioritizing vulnerabilities with cvss scoring
15- When improving security program maturity and operational processes
16- When establishing standardized procedures for security team workflows
17- When integrating threat intelligence or vulnerability data into operations
18
19## Common Misconfigurations & Verification
20
21- **Base score as final answer** — verify Threat (EPSS/exploit maturity) and Environmental metrics are applied, not just the NVD base.
22- **CVSS v2 leakage** — verify scores use v3.1/v4.0 vectors, not legacy v2.
23- **Environmental metrics unset** — verify CR/IR/AR reflect the asset's real data sensitivity.
24- **Scanner score trust** — verify the vector string matches the vulnerability rather than accepting the scanner's number blindly.
25- **Severity ≠ risk** — verify prioritization blends asset criticality and exposure, not severity alone.
26- **Vector miscommunication** — verify teams record the full v4.0 vector so scores are reproducible.
27
28## Prerequisites
29- Understanding of common vulnerability types (buffer overflow, injection, XSS, etc.)
30- Familiarity with networking concepts (attack vectors, protocols)
31- Access to NVD (National Vulnerability Database) for CVE lookups
32- Vulnerability scan results requiring prioritization
33
34## Core Concepts
35
36### CVSS v4.0 Metric Groups
37
38#### 1. Base Metrics (Intrinsic Severity)
39Represent the inherent characteristics of a vulnerability:
40
41**Exploitability Metrics:**
42- **Attack Vector (AV)**: Network (N), Adjacent (A), Local (L), Physical (P)
43- **Attack Complexity (AC)**: Low (L), High (H)
44- **Attack Requirements (AT)**: None (N), Present (P) - NEW in v4.0
45- **Privileges Required (PR)**: None (N), Low (L), High (H)
46- **User Interaction (UI)**: None (N), Passive (P), Active (A) - Expanded in v4.0
47
48**Impact Metrics (Vulnerable System):**
49- **Confidentiality (VC)**: None (N), Low (L), High (H)
50- **Integrity (VI)**: None (N), Low (L), High (H)
51- **Availability (VA)**: None (N), Low (L), High (H)
52
53**Impact Metrics (Subsequent System):**
54- **Confidentiality (SC)**: None (N), Low (L), High (H)
55- **Integrity (SI)**: None (N), Low (L), High (H)
56- **Availability (SA)**: None (N), Low (L), High (H)
57
58#### 2. Threat Metrics (Dynamic Context)
59- **Exploit Maturity (E)**: Attacked (A), POC (P), Unreported (U)
60
61#### 3. Environmental Metrics (Organization-Specific)
62Modified versions of base metrics reflecting local deployment context, plus:
63- **Confidentiality Requirement (CR)**: High (H), Medium (M), Low (L)
64- **Integrity Requirement (IR)**: High (H), Medium (M), Low (L)
65- **Availability Requirement (AR)**: High (H), Medium (M), Low (L)
66
67#### 4. Supplemental Metrics (Advisory Information)
68- **Safety (S)**: Present (P), Negligible (X)
69- **Automatable (AU)**: Yes (Y), No (N)
70- **Recovery (R)**: Automatic (A), User (U), Irrecoverable (I)
71- **Value Density (V)**: Diffuse (D), Concentrated (C)
72- **Vulnerability Response Effort (RE)**: Low (L), Moderate (M), High (H)
73- **Provider Urgency (U)**: Red, Amber, Green, Clear
74
75### CVSS v4.0 Severity Ratings
76| Score Range | Severity |
77|-------------|----------|
78| 0.0 | None |
79| 0.1 - 3.9 | Low |
80| 4.0 - 6.9 | Medium |
81| 7.0 - 8.9 | High |
82| 9.0 - 10.0 | Critical |
83
84### CVSS v4.0 Vector String Format
85```
86CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
87```
88This example represents a network-exploitable vulnerability requiring no privileges, no user interaction, no attack requirements, with high impact on confidentiality, integrity, and availability of the vulnerable system.
89
90## Workflow
91
92### Step 1: Assess Base Metrics
93For each vulnerability, evaluate:
94
95```
96Example: CVE-2024-3094 (XZ Utils Backdoor)
97
98Attack Vector: Network (N) - Exploitable over network
99Attack Complexity: High (H) - Specific conditions required
100Attack Requirements: Present (P) - Specific build/config needed
101Privileges Required: None (N) - No authentication needed
102User Interaction: None (N) - No victim action needed
103
104Vulnerable System Impact:
105 Confidentiality: High (H) - Complete access to SSH keys
106 Integrity: High (H) - Arbitrary code execution
107 Availability: High (H) - Full system compromise
108
109Subsequent System Impact:
110 Confidentiality: High (H) - Lateral movement possible
111 Integrity: High (H) - Network-wide compromise
112 Availability: None (N) - No downstream availability impact
113
114Vector: CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:N
115```
116
117### Step 2: Apply Threat Intelligence Context
118Enrich CVSS with real-world threat data:
119
120```
121Exploit Maturity: Attacked (A) - Active exploitation in the wild
122EPSS Score: 0.94 - 94% probability of exploitation in 30 days
123CISA KEV: Listed - Mandatory remediation for federal agencies
124```
125
126### Step 3: Calculate Environmental Score
127Adjust for organizational context:
128
129```
130Confidentiality Req: High (H) - Handles PII/financial data
131Integrity Req: High (H) - Critical business process
132Availability Req: Medium (M) - Has DR/failover capability
133
134Modified Attack Vector: Network (N) - Internet-facing deployment
135```
136
137### Step 4: Multi-Factor Prioritization Matrix
138
139Combine CVSS with additional prioritization factors:
140
141| Factor | Weight | Source |
142|--------|--------|--------|
143| CVSS Base Score | 25% | NVD/Scanner |
144| EPSS Score | 25% | FIRST EPSS API |
145| Asset Criticality | 20% | Asset inventory/CMDB |
146| CISA KEV Listed | 15% | CISA catalog |
147| Network Exposure | 15% | Network segmentation data |
148
149### Step 5: Define Remediation SLAs
150
151| Priority Level | CVSS Range | EPSS | Asset Tier | SLA |
152|---------------|------------|------|------------|-----|
153| P1 - Emergency | 9.0-10.0 | >0.5 | Tier 1 | 24-48 hours |
154| P2 - Critical | 7.0-8.9 | >0.3 | Tier 1-2 | 7 days |
155| P3 - High | 7.0-8.9 | <0.3 | Tier 2-3 | 14 days |
156| P4 - Medium | 4.0-6.9 | Any | Any | 30 days |
157| P5 - Low | 0.1-3.9 | Any | Any | 90 days |
158
159## Best Practices
1601. Never rely solely on CVSS base score for prioritization
1612. Always incorporate threat intelligence (EPSS, KEV, exploit databases)
1623. Maintain accurate asset criticality ratings in your CMDB
1634. Adjust environmental metrics for your specific deployment context
1645. Use CVSS v4.0 vector strings for precise communication between teams
1656. Document scoring rationale for audit trail and consistency
1667. Re-evaluate scores when new threat intelligence becomes available
1678. Train remediation teams on interpreting CVSS metrics and vector strings
168
169## Common Pitfalls
170- Treating CVSS base score as the sole prioritization factor
171- Ignoring environmental metrics that reflect organizational risk
172- Not updating threat metrics when exploit maturity changes
173- Confusing CVSS severity with actual organizational risk
174- Using outdated CVSS v2.0 scores instead of v3.1/v4.0
175- Over-relying on scanner-provided scores without validation
176
177## Related Skills
178- prioritizing-patches-with-exploit-prediction-scoring
179- implementing-risk-based-vulnerability-management
180- implementing-vulnerability-remediation-sla