CVE vs. CVSS
What every Security+ (SY0-701) and CySA+ (CS0-003) candidate needs to know about identifying vulnerabilities versus scoring them
Why this pair of acronyms trips people up
Ask a room full of Security+ or CySA+ candidates to define CVE and CVSS separately, and most will mix them up. Put both terms in the same exam question — "A scan returns CVE-2024-3094 with a CVSS score of 10.0; what should the analyst do first?" — and the wheels start to wobble. That's because CVE and CVSS aren't competing concepts you choose between. They're two different layers of the same vulnerability management stack, and CompTIA loves to test whether you know which layer does what.
Here's the one-sentence version, which is worth memorizing before anything else in this article:
CVE tells you what the vulnerability is. CVSS tells you how bad it is.
Everything below unpacks that sentence — first CVE alone, then CVSS alone, then how the two work together, and finally how each shows up on the SY0-701 and CS0-003 exam objectives, with sample question patterns you're likely to see.
CVE: Common Vulnerabilities and Exposures
CVE is a naming and cataloging system, not a scoring system. Its entire job is to make sure that everyone on the planet — vendors, researchers, scanners, ticketing systems, threat intel feeds — refers to the same vulnerability by the same identifier.
Who runs it? The CVE Program is sponsored by the U.S. Department of Homeland Security / CISA and operated by MITRE Corporation, which maintains the CVE List and the cve.org website. Individual vulnerabilities aren't only assigned by MITRE, though — over 300 organizations worldwide (vendors like Microsoft, Cisco, Red Hat; researchers; bug bounty platforms) are authorized as CVE Numbering Authorities (CNAs) and can mint CVE IDs directly for vulnerabilities in their own products or research scope.
What a CVE ID looks like.
CVE-2024-3094
CVE— fixed prefix2024— the year the ID was assigned (not necessarily the year it was disclosed or exploited — an ID reserved in December 2024 can be published in early 2025 and still carry the 2024 year)3094— a sequence number with no fixed length (older entries have 4 digits; newer ones can run to 7+)
What a CVE record actually contains. A minimal CVE entry is deliberately sparse:
- The CVE ID
- A brief description of the flaw
- References (vendor advisories, patches, mailing list posts)
- Affected products/versions, at a basic level
What a CVE record does not contain. This is the exam-critical part: a bare CVE entry carries no severity rating, no exploitability score, and no risk assessment. MITRE's CVE List is a dictionary, not a risk report. Two CVEs — one for a denial-of-service bug in a niche embedded printer driver and one for an unauthenticated remote code execution flaw in a widely deployed web server — are, as CVE entries, structurally identical: an ID, a description, some references. Severity is bolted on afterward by a separate system — which is exactly where CVSS comes in.
Common exam trap: A question states "the vulnerability has a CVE identifier" and then asks you to judge urgency from that fact alone. The correct instinct is that having a CVE tells you nothing about severity — you need a CVSS score (or other risk context) to prioritize.
CVSS: Common Vulnerability Scoring System
CVSS is a severity-scoring framework maintained by FIRST.org (Forum of Incident Response and Security Teams), an industry consortium — not a government agency and not MITRE. Where CVE answers "what is this flaw and where did it come from," CVSS answers "how severe is this flaw, technically, in a defined and repeatable way."
CVSS produces two things for a given vulnerability:
- A numeric score from 0.0 to 10.0
- A qualitative severity rating derived from that score
| CVSS Score Range | Qualitative Rating |
|---|---|
| 0.0 | None |
| 0.1 – 3.9 | Low |
| 4.0 – 6.9 | Medium |
| 7.0 – 8.9 | High |
| 9.0 – 10.0 | Critical |
Memorize this table. Both exams expect you to map a score to a rating (and vice versa) without a calculator.
The metric groups
CVSS scores are built from metrics, grouped by who can set them and when:
- Base Metrics — the only metrics required to compute a score, and the ones vendors/NVD publish by default. They describe the vulnerability's intrinsic characteristics, which don't change over time or context (Exploitability metrics + Impact metrics).
- Temporal Metrics (CVSS v3.1) / Threat Metrics (CVSS v4.0) — adjust the base score based on real-world factors that do change over time, chiefly whether working exploit code exists and whether a fix is available.
- Environmental Metrics — let the consuming organization re-weight the score based on their own environment (e.g., "this system isn't internet-facing for us" or "this data isn't confidential in our context").
The score everyone quotes — the one on an NVD page or a scanner report — is almost always the Base Score alone. Temporal/Threat and Environmental scores require extra input that most publishers don't supply, so treating a bare Base Score as "the final word on risk" is a common and testable mistake.
Base metrics, CVSS v3.1 (still widely deployed and fair game on both exams)
| Metric | Abbreviation | What it captures |
|---|---|---|
| Attack Vector | AV | How the attacker reaches the vulnerability (Network, Adjacent, Local, Physical) |
| Attack Complexity | AC | How much difficulty/preparation the attack requires (Low, High) |
| Privileges Required | PR | What access level the attacker needs beforehand (None, Low, High) |
| User Interaction | UI | Whether a victim must do something (None, Required) |
| Scope | S | Whether the exploited component can affect resources beyond its own security scope (Unchanged, Changed) |
| Confidentiality Impact | C | Loss of data confidentiality (None, Low, High) |
| Integrity Impact | I | Loss of data trustworthiness (None, Low, High) |
| Availability Impact | A | Loss of access/uptime (None, Low, High) |
A CVSS v3.1 vector string packages all of this into one readable line, e.g.:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Read left to right: network-reachable, low complexity, no privileges or user interaction needed, scope unchanged, and full loss of confidentiality, integrity, and availability. That vector computes to a 9.8 (Critical) — the profile of a classic "wormable" remote code execution flaw.
What changed in CVSS v4.0
FIRST published CVSS v4.0 in late 2023 to fix long-standing complaints about v3.1 (the ambiguous "Scope" metric, weak differentiation among High/Critical scores, and no clean way to separate threat intelligence from environmental context). You don't need to hand-calculate v4.0 vectors for either exam, but you should recognize the shape of the changes if a question references it:
- Scope (S) is removed, replaced by separate Vulnerable System and Subsequent System impact metrics (VC/VI/VA and SC/SI/SA).
- Attack Requirements (AT) is added as a new Base metric, distinct from Attack Complexity.
- Threat Metrics formally replace Temporal Metrics, built around the single metric "Exploit Maturity."
- A new optional Supplemental Metrics group adds factors like Safety (S), Automatable (AU), and Recovery (R) — reflecting a push toward OT/ICS and larger-scale automated-exploitation scenarios.
- Naming convention adds a suffix indicating which metric groups were scored, e.g. CVSS-BTE (Base + Threat + Environmental) versus a Base-only CVSS-B score — a hint that not every published score is created equal.
Exam framing: Expect SY0-701 to test CVSS at the conceptual level (know what it is, what a score means, that it's separate from CVE). CS0-003 goes deeper — expect you to reason about which metric would change a score in a given scenario, and to know that a Base Score alone can overstate or understate actual organizational risk.
CVE and CVSS side by side
| CVE | CVSS | |
|---|---|---|
| Full name | Common Vulnerabilities and Exposures | Common Vulnerability Scoring System |
| Governing body | MITRE / CVE Program (CISA-sponsored) | FIRST.org |
| Purpose | Uniquely identify and catalog a vulnerability | Quantify a vulnerability's severity |
| Output | An ID string (e.g., CVE-2024-3094) + description |
A 0.0–10.0 score + qualitative rating (None–Critical) |
| Changes over time? | No — the ID and core description are fixed | Yes — Temporal/Threat and Environmental metrics can shift the effective score |
| Answers the question | "What is this flaw, and has anyone seen it before?" | "How dangerous is this flaw, technically?" |
| Analogous to | A disease's name and ICD code | A disease's severity/triage rating |
How they actually work together
In practice, you rarely encounter a CVE ID with no CVSS score attached, because the National Vulnerability Database (NVD) — run by NIST — ingests every published CVE and enriches it with a CVSS score, CWE mapping, and affected-product (CPE) data. A vulnerability scanner report that lists "CVE-2024-3094 — CVSS 10.0 (Critical)" is really showing you two independent systems stapled together: MITRE's identifier and NVD's CVSS score.
This is also where two adjacent acronyms belong in your mental map, because exam writers enjoy mixing all four into one scenario:
- CWE (Common Weakness Enumeration) — a taxonomy of vulnerability types (e.g., CWE-79 Cross-Site Scripting, CWE-89 SQL Injection). A CVE is one specific instance of a CWE category. CWE answers "what kind of bug is this," which sits a level above the specific instance.
- CPE (Common Platform Enumeration) — a standardized naming scheme for the affected hardware/software/OS (e.g.,
cpe:2.3:a:apache:log4j:2.14.1). CPE tells you where a CVE applies. - NVD (National Vulnerability Database) — the U.S. government repository that takes raw CVE entries and adds the CVSS score, CWE classification, and CPE applicability that make the entry actionable.
Quick mental chain: CWE (the category of bug) → CVE (this specific instance of that bug, in this specific product) → CPE (exactly which product/version is affected) → CVSS (how severe this specific instance is) → NVD (the database that stitches all four together).
Where this shows up on Security+ (SY0-701)
Vulnerability management lives in Domain 4.0 – Security Operations of the SY0-701 objectives. CompTIA expects you to recognize CVE and CVSS as part of the vulnerability identification and analysis workflow — alongside vulnerability scanning, application security testing, threat feeds, and OSINT as identification methods, and CVSS/CVE/vulnerability classification/exposure factor as analysis criteria used to prioritize what gets remediated first.
For Security+, keep the expectations at the conceptual level:
- Recognize CVE as an identifier, not a severity indicator.
- Recognize CVSS as the standard framework for turning a vulnerability's characteristics into a comparable severity score.
- Know the qualitative bands (None/Low/Medium/High/Critical) and roughly which numeric ranges map to which band.
- Understand that CVSS Base Score alone doesn't equal organizational risk — risk also depends on asset criticality, exposure, compensating controls, and business context, which is why Security+ also tests concepts like risk tolerance and exposure factor in the same breath.
Where this shows up on CySA+ (CS0-003)
CySA+ pushes the same material considerably deeper, primarily in the Vulnerability Management domain, where "given a scenario, analyze data to prioritize vulnerabilities" is an explicit objective. CVE and CVSS interpretation are named directly, alongside vulnerability classification, exposure factor, environmental variables, industry/organizational impact, risk tolerance, and — increasingly — supplementary prioritization signals like EPSS (Exploit Prediction Scoring System) and whether a flaw is a documented/active exploit versus proof-of-concept only.
For CySA+, be ready to:
- Read and reason about a CVSS vector string, not just recognize the acronym — e.g., spot that
AV:NplusPR:NplusUI:Nsignals a remotely exploitable, no-interaction flaw that should jump the remediation queue. - Explain why two vulnerabilities with similar CVSS Base Scores might warrant different remediation priority once Environmental metrics, asset value, or active exploitation intelligence are factored in.
- Distinguish CVSS (technical severity) from risk (technical severity plus business context) from EPSS (likelihood of exploitation in the near term) — CS0-003 scenario questions often present all three and ask which one drives a specific decision.
- Correlate a CVE to its CWE class to reason about whether a pattern of vulnerabilities (not just one instance) needs a systemic fix — e.g., recurring CWE-89 findings suggesting a broader input-validation problem across an application portfolio, rather than one-off patching.
CySA+ framing to internalize: "Highest CVSS score" is not automatically "patch first." A Medium-severity CVSS score on an internet-facing, actively-exploited, business-critical system can outrank a Critical-severity CVSS score on an isolated, air-gapped test server. The exam rewards candidates who treat CVSS as one input to prioritization, not the whole decision.
Common exam gotchas, summarized
- "A CVE was found" is not the same as "a severe vulnerability was found." Severity requires CVSS (or another scoring method) layered on top.
- CVSS scores a vulnerability's technical characteristics — not your organization's actual risk. Risk = severity × exposure × asset value × likelihood, and CVSS only supplies the first piece cleanly.
- The commonly displayed CVSS score is usually the Base Score only. Temporal/Threat and Environmental scores can move that number — and often aren't shown unless someone explicitly calculates them.
- MITRE and NVD are not the same organization, even though they both touch CVE data — MITRE assigns/catalogs CVE IDs; NIST's NVD enriches them with CVSS, CWE, and CPE data.
- CVSS is versioned (v2.0 legacy, v3.0, v3.1, v4.0) — a v3.1 score and a v4.0 score for the same flaw are not guaranteed to match, because the metrics changed.
- CWE ≠ CVE ≠ CPE ≠ CVSS. If a question strings several of these together, determine which one it's asking about: category (CWE), instance (CVE), affected platform (CPE), or severity (CVSS).
Practice-style questions
1. (Security+ style) A vulnerability scan returns a finding with a CVE identifier but no severity information. What should the analyst do next? Look up the CVE in a database such as the NVD to retrieve its CVSS score and severity rating — the CVE ID alone does not indicate how serious the flaw is.
2. (Security+ style) Which organization is responsible for maintaining the CVSS specification? FIRST.org — not MITRE (which manages CVE) and not NIST (which runs the NVD).
3. (CySA+ style) Two findings both carry a CVSS v3.1 Base Score of 8.8. Finding A affects a public-facing customer portal; Finding B affects an internal print server with no network path to sensitive data. Which should be remediated first, and why? Finding A — because Environmental context (public exposure, likely higher asset/data sensitivity) elevates its effective risk even though the Base Scores are identical; CVSS Base Score alone doesn't account for exposure or business impact.
4. (CySA+ style)
An analyst reviews the vector CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H. What does the UI:R component indicate, and how should it affect prioritization relative to a comparable finding with UI:N?
UI:R means the attack requires a victim to take some action (e.g., open a file, click a link), which is a meaningfully higher bar than UI:N (no interaction needed). All else equal, the UI:N finding is typically the more urgent one, since it can be exploited without tricking a user.
Quick-reference cheat sheet
| Concept | One-line definition | Owning body |
|---|---|---|
| CVE | Unique ID + description for a known vulnerability | MITRE / CVE Program |
| CVSS | 0.0–10.0 severity score + qualitative rating | FIRST.org |
| CWE | Category/type of software weakness | MITRE |
| CPE | Standardized name for affected platform/product | NIST |
| NVD | U.S. database enriching CVEs with CVSS/CWE/CPE | NIST |
| EPSS | Predicted likelihood of near-term exploitation | FIRST.org |
Further study: cve.org and nvd.nist.gov for live CVE/CVSS lookups, first.org/CVSS for the full specification, and CompTIA's official SY0-701 and CS0-003 exam objectives documents for the authoritative, current wording of each domain.