What is a CVE (Common Vulnerabilities and Exposures)?
Last reviewed June 2, 2026
A CVE (Common Vulnerabilities and Exposures) is a unique, public identifier assigned to a specific, publicly disclosed security vulnerability. CVE IDs follow the format CVE-YYYY-NNNN and are managed by the CVE Program, which is operated by MITRE and sponsored by the U.S. Cybersecurity and Infrastructure Security Agency (CISA). They give everyone a common name for the same flaw so tools, advisories, and teams can refer to it without confusion.
CVE in one sentence
CVE stands for Common Vulnerabilities and Exposures. A single CVE is a catalog entry -- an identifier plus a brief record -- that names one publicly disclosed vulnerability in a piece of software, firmware, or hardware.
The point of a CVE is to be a shared reference. When a scanner reports CVE-2021-44228, a vendor advisory cites CVE-2021-44228, and a news article mentions CVE-2021-44228, everyone knows they are talking about the exact same Log4j flaw. Without that common name, each tool and team would invent its own label and coordination would break down.
Who runs the CVE Program
The CVE Program is operated by MITRE, a non-profit organization, and sponsored by CISA (the U.S. Cybersecurity and Infrastructure Security Agency). MITRE maintains the core infrastructure and the official CVE List, while a distributed network of CVE Numbering Authorities (CNAs) actually assigns IDs and writes records.
This federated model means MITRE does not personally triage every vulnerability on Earth. Instead, vendors like Microsoft, Google, and Red Hat -- plus independent coordinators -- are authorized as CNAs to assign CVE IDs within their own scope.
What a CVE record contains
- The CVE ID itself, in the form CVE-YYYY-NNNN.
- A short description of the vulnerability and the affected product or products.
- References: links to advisories, patches, exploits, and write-ups.
- The assigning CNA, plus state metadata such as whether the record is reserved, published, or rejected.
- Optional enrichment added later, such as CVSS severity scores, CWE weakness mappings, and CPE product identifiers.
A CVE is an ID, not a score
A common point of confusion: a CVE by itself does not tell you how severe a flaw is or how likely it is to be exploited. The CVE record names the vulnerability; separate systems describe it.
Severity is expressed with CVSS, exploitation likelihood with EPSS, the underlying weakness type with CWE, and the affected products with CPE. The National Vulnerability Database (NVD) and CISA's enrichment programs add much of this data on top of the base CVE record.
Why CVEs matter for defenders
CVE IDs are the connective tissue of vulnerability management. Patch advisories, vulnerability scanners, SBOM tooling, threat intelligence feeds, and the CISA Known Exploited Vulnerabilities (KEV) catalog all key off CVE IDs.
Because the identifier is stable and public, you can track one vulnerability from first disclosure through patching, and correlate it across every tool in your stack.
Keep exploring
- CVE ID format explainedWhat each part of CVE-YYYY-NNNN means.
- What is a CNA?The authorities that assign CVE IDs.
- CVE lifecycleHow a CVE moves from reserved to published.
- What is CVSS?How CVE severity is scored.
- CNA directoryBrowse the organizations that assign CVEs.
- CVE vs CVSSIdentifier versus severity score.
- NVD vs CVEThe CVE List versus the NVD enrichment layer.
Frequently asked questions
- What does CVE stand for?
- CVE stands for Common Vulnerabilities and Exposures. It is both the name of the program and the prefix used on each identifier, such as CVE-2021-44228.
- Who assigns CVE IDs?
- CVE IDs are assigned by CVE Numbering Authorities (CNAs) -- organizations authorized by the CVE Program. The program is operated by MITRE and sponsored by CISA.
- Is a CVE the same as a vulnerability?
- A CVE is an identifier and record for a vulnerability, not the vulnerability itself. One CVE generally corresponds to one independently fixable flaw.
- Does a CVE tell me how dangerous a flaw is?
- No. The CVE record names the flaw; severity comes from CVSS, exploitation likelihood from EPSS, and the weakness type from CWE.