CVEDigest

CVSS scores explained for non-experts (0.0 to 10.0)

By Editorial team · 2026-06-14

In short: CVSS (Common Vulnerability Scoring System) rates a vulnerability's severity from 0.0 to 10.0. Under CVSS v3.x the bands are None (0.0), Low (0.1–3.9), Medium (4.0–6.9), High (7.0–8.9) and Critical (9.0–10.0). The base score measures intrinsic severity — how reachable and impactful a flaw is — but it does not measure your actual risk, which also depends on exposure and whether the flaw is being exploited.

CVSS stands for the Common Vulnerability Scoring System. It is an open standard, maintained by FIRST (the Forum of Incident Response and Security Teams), that rates how severe a software vulnerability is on a scale from 0.0 to 10.0. If you have ever seen a vulnerability described as “CVSS 9.8 Critical,” that number came from CVSS.

For the official severity bands at a glance, see our CVSS severity guide. This article explains what the number actually means and how not to misread it.

What do the CVSS severity bands mean?

CVSS v3.x maps the numeric score to a qualitative rating. These are the bands you will see most often:

RatingScore rangePlain-English meaning
None0.0No measurable security impact; informational.
Low0.1 – 3.9Limited impact; often needs local access or unusual conditions.
Medium4.0 – 6.9Moderate impact, or harder-to-exploit conditions.
High7.0 – 8.9Serious impact; prioritize patching, especially if internet-facing.
Critical9.0 – 10.0Severe and easily exploited; treat as an emergency.

Source: FIRST CVSS v3.1 specification.

What goes into a CVSS base score?

The base score is the headline number, and it reflects the intrinsic characteristics of the flaw — properties that do not change regardless of where it is deployed. In CVSS v3.x, the base metrics fall into two groups:

Exploitability metrics — how easy is the flaw to use?

Impact metrics — what damage results?

A flaw scores highest (toward 10.0) when it is reachable over the network, easy to exploit, needs no privileges or user interaction, and fully compromises confidentiality, integrity, and availability. That combination is what produces the dreaded “9.8” and “10.0” Criticals.

Base, Temporal, and Environmental: the three metric groups

Most published scores are base scores, but CVSS actually defines three layers:

Metric groupQuestion it answersChanges over time / by org?
BaseHow severe is the flaw intrinsically?No — fixed properties of the vulnerability.
TemporalHas this become more or less exploitable as exploit code and patches appear?Yes — changes over time.
EnvironmentalHow severe is it in my specific environment?Yes — you tailor it to your systems.

Almost everyone uses the base score because it is what vendors and the NVD publish. But the environmental score is where CVSS becomes genuinely about your risk — it lets you downgrade a Critical that only affects a system you have isolated, or upgrade one that sits on a crown-jewel database.

Why a high CVSS score is not the same as high risk

This is the single most important thing to understand about CVSS, and it trips up even experienced teams.

The base score measures severity, not risk. Risk is severity combined with likelihood and exposure:

Real-world data backs this up: only a small fraction of all CVEs are ever exploited, and exploitation does not track neatly with severity. That is why mature programs do not patch strictly by CVSS. They combine it with exploitation evidence (KEV) and exploit-likelihood prediction (EPSS) — a method we walk through in patch prioritization: KEV + EPSS + CVSS.

CVSS v3.1 vs v4.0: which will I see?

CVSS v4.0 was released in 2023 and improves on v3.1 by refining metrics and adding supplemental ones for a more nuanced picture. However, adoption is gradual — many vulnerability feeds and tools still report v3.1 scores, and you will frequently see both for the same flaw. The practical rule: always check which version a score uses, because a “7.0” in v3.1 and a “7.0” in v4.0 are computed differently.

Key takeaways

Next: learn how to read a CVE identifier, or browse scored examples in the CVE catalog.

Frequently asked questions

What CVSS score is considered critical?

Under CVSS v3.x, a base score of 9.0 to 10.0 is rated Critical, 7.0–8.9 is High, 4.0–6.9 is Medium, 0.1–3.9 is Low, and 0.0 is None.

Who created and maintains CVSS?

CVSS is an open standard maintained by FIRST (the Forum of Incident Response and Security Teams). It is free to use and the specification is publicly published.

Is a high CVSS score the same as high risk?

No. The base score measures intrinsic severity, not your risk. Whether the affected software runs in your environment, is exposed to untrusted networks, and is being actively exploited matters at least as much.

What is the difference between CVSS v3.1 and v4.0?

CVSS v4.0, released in 2023, refines the metric set, adds supplemental metrics, and changes how scores are computed to better reflect real-world impact. Many feeds still report v3.1 scores, so you will encounter both — always note which version a score uses.

Related articles

Last updated: 2026-06-14