Common Vulnerability Scoring System

From Wikipedia, the free encyclopedia

The Common Vulnerability Scoring System (CVSS) is a free and open industry standard for assessing the severity of computer system security vulnerabilities. CVSS attempts to assign severity scores to vulnerabilities, allowing responders to prioritize responses and resources according to threat. Scores are calculated based on a formula that depends on several metrics that approximate ease and impact of an exploit. Scores range from 0 to 10, with 10 being the most severe. While many use only the CVSS Base score for determining severity, temporal and environmental scores also exist, to factor in availability of mitigations and how widespread vulnerable systems are within an organization, respectively.

The current version of CVSS (CVSSv4.0) was released in November 2023.[1]

History[edit]

Research by the National Infrastructure Advisory Council (NIAC) in 2003/2004 led to the launch of CVSS version 1 (CVSSv1) in February 2005,[2] with the goal of being "designed to provide open and universally standard severity ratings of software vulnerabilities". This initial draft had not been subject to peer review or review by other organizations. In April 2005, NIAC selected the Forum of Incident Response and Security Teams (FIRST) to become the custodian of CVSS for future development.[3][4]

Feedback from vendors using CVSSv1 in production suggested there were "significant issues with the initial draft of CVSS". Work on CVSS version 2 (CVSSv2) began in April 2005 with the final specification being launched in June 2007.[5]

Further feedback resulted in work beginning on CVSS version 3[6] in 2012, ending with CVSSv3.0 being released in June 2015.[7][2]

Terminology[edit]

The CVSS assessment measures three areas of concern:

  1. base metrics for qualities intrinsic to a vulnerability,
  2. temporal metrics for characteristics that evolve over the lifetime of vulnerability, and
  3. environmental metrics for vulnerabilities that depend on a particular implementation or environment.

A numerical score is generated for each of these metric groups. A vector string (or simply "vector" in CVSSv2) represents the values of all the metrics as a block of text.

Version 2[edit]

Complete documentation for CVSSv2 is available from FIRST.[8] A summary is provided below.

Base metrics[edit]

Access Vector[edit]

The access vector (AV) shows how a vulnerability may be exploited.

Value Description Score
Local (L) The attacker must either have physical access to the vulnerable system (e.g. firewire attacks) or a local account (e.g. a privilege escalation attack). 0.395
Adjacent Network (A) The attacker must have access to the broadcast or collision domain of the vulnerable system (e.g. ARP spoofing, Bluetooth attacks). 0.646
Network (N) The vulnerable interface is working at layer 3 or above of the OSI Network stack. These types of vulnerabilities are often described as remotely exploitable (e.g. a remote buffer overflow in a network service) 1.0

Access Complexity[edit]

The access complexity (AC) metric describes how easy or difficult it is to exploit the discovered vulnerability.

Value Description Score
High (H) Specialised conditions exist, such as a race condition with a narrow window, or a requirement for social engineering methods that would be readily noticed by knowledgeable people. 0.35
Medium (M) There are some additional requirements for the attack, such as a limit on the origin of the attack, or a requirement for the vulnerable system to be running with an uncommon, non-default configuration. 0.61
Low (L) There are no special conditions for exploiting the vulnerability, such as when the system is available to large numbers of users, or the vulnerable configuration is ubiquitous. 0.71

Authentication[edit]

The authentication (Au) metric describes the number of times that an attacker must authenticate to a target to exploit it. It does not include (for example) authentication to a network in order to gain access. For locally exploitable vulnerabilities, this value should only be set to Single or Multiple if further authentication is required after initial access.

Value Description Score
Multiple (M) Exploitation of the vulnerability requires that the attacker authenticate two or more times, even if the same credentials are used each time. 0.45
Single (S) The attacker must authenticate once in order to exploit the vulnerability. 0.56
None (N) There is no requirement for the attacker to authenticate. 0.704

Impact metrics[edit]

Confidentiality[edit]

The confidentiality (C) metric describes the impact on the confidentiality of data processed by the system.

Value Description Score
None (N) There is no impact on the confidentiality of the system. 0.0
Partial (P) There is considerable disclosure of information, but the scope of the loss is constrained such that not all of the data is available. 0.275
Complete (C) There is total information disclosure, providing access to any / all data on the system. Alternatively, access to only some restricted information is obtained, but the disclosed information presents a direct, serious impact. 0.660

Integrity[edit]

The Integrity (I) metric describes the impact on the integrity of the exploited system.

Value Description Score
None (N) There is no impact on the integrity of the system. 0.0
Partial (P) Modification of some data or system files is possible, but the scope of the modification is limited. 0.275
Complete (C) There is total loss of integrity; the attacker can modify any files or information on the target system. 0.660

Availability[edit]

The availability (A) metric describes the impact on the availability of the target system. Attacks that consume network bandwidth, processor cycles, memory, or any other resources affect the availability of a system.

Value Description Score
None (N) There is no impact on the availability of the system. 0.0
Partial (P) There is reduced performance or loss of some functionality. 0.275
Complete (C) There is total loss of availability of the attacked resource. 0.660

Calculations[edit]

These six metrics are used to calculate the exploitability and impact sub-scores of the vulnerability. These sub-scores are used to calculate the overall base score.

The metrics are concatenated to produce the CVSS Vector for the vulnerability.

Example[edit]

A buffer overflow vulnerability affects web server software that allows a remote user to gain partial control of the system, including the ability to cause it to shut down:

Metric Value Description
Attack Vector Network The vulnerability may be accessed from any network that can access the target system — typically the whole of the internet.
Attack Complexity Low There are no special requirements for access.
Authentication None There is no requirement for authentication in order to exploit the vulnerability.
Confidentiality Partial The attacker can read some files and data on the system.
Integrity Partial The attacker can alter some files and data on the system.
Availability Complete The attacker can cause the system and web service to become unavailable / unresponsive by shutting the system down.

This would give an exploitability sub-score of 10, and an impact sub-score of 8.5, giving an overall base score of 9.0. The vector for the base score in this case would be AV:N/AC:L/Au:N/C:P/I:P/A:C. The score and vector are normally presented together to allow the recipient to fully understand the nature of the vulnerability and to calculate their own environmental score if necessary.

Temporal metrics[edit]

The value of temporal metrics change over the lifetime of the vulnerability, as exploits are developed, disclosed and automated and as mitigations and fixes are made available.

Exploitability[edit]

The exploitability (E) metric describes the current state of exploitation techniques or automated exploitation code.

Value Description Score
Unproven (U) No exploit code is available, or the exploit is theoretical. 0.85
Proof-of-concept (P) Proof-of-concept exploit code or demonstration attacks are available, but not practical for widespread use. Not functional against all instances of the vulnerability. 0.9
Functional (F) Functional exploit code is available, and works in most situations where the vulnerability is present. 0.95
High (H) The vulnerability can be exploited by automated code, including mobile code (such as a worm or virus). 1.0
Not Defined (ND) This is a signal to ignore this score. 1.0

Remediation Level[edit]

The remediation level (RL) of a vulnerability allows the temporal score of a vulnerability to decrease as mitigations and official fixes are made available.

Value Description Score
Official Fix (O) A complete vendor solution is available — either a patch or an upgrade. 0.87
Temporary Fix (T) There is an official but temporary fix / mitigation available from the vendor. 0.90
Workaround (W) There is an unofficial, non-vendor solution or mitigation available — perhaps developed or suggested by users of the affected product or another third party. 0.95
Unavailable (U) There is no solution available, or it is impossible to apply a suggested solution. This is the usual initial state of the remediation level when a vulnerability is identified. 1.0
Not Defined (ND) This is a signal to ignore this score. 1.0

Report Confidence[edit]

The report confidence (RC) of a vulnerability measures the level of confidence in the existence of the vulnerability and also the credibility of the technical details of the vulnerability.

Value Description Score
Unconfirmed (UC) A single unconfirmed source, or multiple conflicting sources. Rumored vulnerability. 0.9
Uncorroborated (UR) Multiple sources that broadly agree — there may be a level of remaining uncertainty about the vulnerability 0.95
Confirmed (C) Acknowledged and confirmed by the vendor or manufacturer of the affected product. 1.0
Not Defined (ND) This is a signal to ignore this score. 1.0

Calculations[edit]

These three metrics are used in conjunction with the base score that has already been calculated to produce the temporal score for the vulnerability with its associated vector.

The formula used to calculate the temporal score is:

Example[edit]

To continue with the example above, if the vendor was first informed of the vulnerability by a posting of proof-of-concept code to a mailing list, the initial temporal score would be calculated using the values shown below:

Metric Value Description
Exploitability Proof-of-concept Proof-of concept, non-automated code is provided to show basic exploit functionality.
Remediation Level Unavailable The vendor has not yet had the opportunity to provide a mitigation or fix.
Report Confidence Unconfirmed There has been a single report of the vulnerability.

This would give a temporal score of 7.3, with a temporal vector of E:P/RL:U/RC:UC (or a full vector of AV:N/AC:L/Au:N/C:P/I:P/A:C/E:P/RL:U/RC:UC).

If the vendor then confirms the vulnerability, then the score rises to 8.1, with a temporal vector of E:P/RL:U/RC:C

A temporary fix from the vendor would reduce the score back to 7.3 (E:P/RL:T/RC:C), while an official fix would reduce it further to 7.0 (E:P/RL:O/RC:C). As it is not possible to be confident that every affected system has been fixed or patched, the temporal score cannot reduce below a certain level based on the vendor's actions, and may increase if an automated exploit for the vulnerability is developed.

Environmental metrics[edit]

The environmental metrics use the base and current temporal score to assess the severity of a vulnerability in the context of the way that the vulnerable product or software is deployed. This measure is calculated subjectively, typically by affected parties.

Collateral Damage Potential[edit]

The collateral damage potential (CDP) metric measures the potential loss or impact on either physical assets such as equipment (and lives), or the financial impact upon the affected organisation if the vulnerability is exploited.

Value Description Score
None (N) No potential for loss of property, revenue or productivity 0
Low (L) Slight damage to assets, or minor loss of revenue or productivity 0.1
Low-Medium (LM) Moderate damage or loss 0.3
Medium-High (MH) Significant damage or loss 0.4
High (H) Catastrophic damage or loss 0.5
Not Defined (ND) This is a signal to ignore this score. 0

Target Distribution[edit]

The target distribution (TD) metric measures the proportion of vulnerable systems in the environment.

Value Description Score
None (N) No target systems exist, or they only exist in laboratory settings 0
Low (L) 1–25% of systems at risk 0.25
Medium (M) 26–75% of systems at risk 0.75
High (H) 76–100% of systems at risk 1.0
Not Defined (ND) This is a signal to ignore this score. 1.0

Impact Subscore Modifier[edit]

Three further metrics assess the specific security requirements for confidentiality (CR), integrity (IR) and availability (AR), allowing the environmental score to be fine-tuned according to the users' environment.

Value Description Score
Low (L) Loss of (confidentiality / integrity / availability) is likely to have only a limited effect on the organisation. 0.5
Medium (M) Loss of (confidentiality / integrity / availability) is likely to have a serious effect on the organisation. 1.0
High (H) Loss of (confidentiality / integrity / availability) is likely to have a catastrophic effect on the organisation. 1.51
Not Defined (ND) This is a signal to ignore this score. 1.0

Calculations[edit]

The five environmental metrics are used in conjunction with the previously assessed base and temporal metrics to calculate the environmental score and to produce the associated environmental vector.

Example[edit]

If the aforementioned vulnerable web server were used by a bank to provide online banking services, and a temporary fix was available from the vendor, then the environmental score could be assessed as:

Metric Value Description
Collateral Damage Potential Medium-High This value would depend on what information the attacker is able to access if a vulnerable system is exploited. In this case I am assuming that some personal banking information is available, therefore there is a significant reputational impact on the bank.
Target Distribution High All of the bank's web servers run the vulnerable software.
Confidentiality Requirement High Customers expect their banking information to be confidential.
Integrity Requirement High Financial and personal information should not be changeable without authorization.
Availability Requirement Low Unavailability of online banking services is likely to be an inconvenience for customers, but not catastrophic.

This would give an environmental score of 8.2, and an environmental vector of CDP:MH/TD:H/CR:H/IR:H/AR:L. This score is within the range 7.0-10.0, and therefore constitutes a critical vulnerability in the context of the affected bank's business.

Criticism of Version 2[edit]

Several vendors and organizations expressed dissatisfaction with CVSSv2.

Risk Based Security, which manages the Open Source Vulnerability Database, and the Open Security Foundation jointly published a public letter to FIRST regarding the shortcomings and failures of CVSSv2.[9] The authors cited a lack of granularity in several metrics, which results in CVSS vectors and scores that do not properly distinguish vulnerabilities of different type and risk profiles. The CVSS scoring system was also noted as requiring too much knowledge of the exact impact of the vulnerability.

Oracle introduced the new metric value of "Partial+" for Confidentiality, Integrity, and Availability, to fill perceived gaps in the description between Partial and Complete in the official CVSS specifications.[10]

Version 3[edit]

To address some of these criticisms, development of CVSS version 3 was started in 2012. The final specification was named CVSSv3.0 and released in June 2015. In addition to a Specification Document, a User Guide and Examples document were also released.[11]

Several metrics were changed, added, and removed. The numerical formulas were updated to incorporate the new metrics while retaining the existing scoring range of 0-10. Textual severity ratings of None (0), Low (0.1-3.9), Medium (4.0-6.9), High (7.0-8.9), and Critical (9.0-10.0)[12] were defined, similar to the categories NVD defined for CVSSv2 that were not part of that standard.[13]

Changes from Version 2[edit]

Base metrics[edit]

In the Base vector, the new metrics User Interaction (UI) and Privileges Required (PR) were added to help distinguish vulnerabilities that required user interaction or user or administrator privileges to be exploited. Previously, these concepts were part of the Access Vector metric of CVSSv2. UI can take the values None or Required; attacks that do not require logging in as a user are considered more severe. PR can take the values None, Low, or High; similarly, attacks requiring fewer privileges are more severe.

The Base vector also saw the introduction of the new Scope (S) metric, which was designed to make clear which vulnerabilities may be exploited and then used to attack other parts of a system or network. These new metrics allow the Base vector to more clearly express the type of vulnerability being evaluated.

The Confidentiality, Integrity, and Availability (C, I, A) metrics were updated to have scores consisting of None, Low, or High, rather than the None, Partial, and Complete of CVSSv2. This allows more flexibility in determining the impact of a vulnerability on CIA metrics.

Access Complexity was renamed Attack Complexity (AC) to make clear that access privileges were moved to a separate metric. This metric now describes how repeatable exploit of this vulnerability may be; AC is High if the attacker requires perfect timing or other circumstances (other than user interaction, which is also a separate metric) which may not be easily duplicated on future attempts.

Attack Vector (AV) saw the inclusion of a new metric value of Physical (P), to describe vulnerabilities that require physical access to the device or system to perform.

Temporal metrics[edit]

The Temporal metrics were essentially unchanged from CVSSv2.

Environmental metrics[edit]

The Environmental metrics of CVSSv2 were completely removed and replaced with essentially a second Base score, known as the Modified vector. The Modified Base is intended to reflect differences within an organization or company compared to the world as a whole. New metrics to capture the importance of Confidentiality, Integrity, and Availability to a specific environment were added.

Criticism of Version 3[edit]

In a blog post in September 2015, the CERT Coordination Center discussed limitations of CVSSv2 and CVSSv3.0 for use in scoring vulnerabilities in emerging technology systems such as the Internet of Things.[14]

Version 3.1[edit]

A minor update to CVSS was released on June 17, 2019. The goal of CVSSv3.1 was to clarify and improve upon the existing CVSSv3.0 standard without introducing new metrics or metric values, allowing for frictionless adoption of the new standard by both scoring providers and scoring consumers alike. Usability was a prime consideration when making improvements to the CVSS standard. Several changes being made in CVSSv3.1 are to improve the clarity of concepts introduced in CVSSv3.0, and thereby improve the overall ease of use of the standard.

FIRST has used input from industry subject-matter experts to continue to enhance and refine CVSS to be more and more applicable to the vulnerabilities, products, and platforms being developed over the past 15 years and beyond. The primary goal of CVSS is to provide a deterministic and repeatable way to score the severity of a vulnerability across many different constituencies, allowing consumers of CVSS to use this score as input to a larger decision matrix of risk, remediation, and mitigation specific to their particular environment and risk tolerance.

Updates to the CVSSv3.1 specification include clarification of the definitions and explanation of existing base metrics such as Attack Vector, Privileges Required, Scope, and Security Requirements. A new standard method of extending CVSS, called the CVSS Extensions Framework, was also defined, allowing a scoring provider to include additional metrics and metric groups while retaining the official Base, Temporal, and Environmental Metrics. The additional metrics allow industry sectors such as privacy, safety, automotive, healthcare, etc., to score factors that are outside the core CVSS standard. Finally, the CVSS Glossary of Terms has been expanded and refined to cover all terms used throughout the CVSSv3.1 documentation.

Version 4.0[edit]

In June 2023, a public preview of CVSSv4.0 was released, bringing a number of improvements.[15] Version 4.0 was officially released in November 2023.[1]

Adoption[edit]

Versions of CVSS have been adopted as the primary method for quantifying the severity of vulnerabilities by a wide range of organizations and companies, including:

See also[edit]

References[edit]

  1. ^ a b "FIRST has officially published the latest version of the Common Vulnerability Scoring System (CVSS v4.0)". FIRST. Archived from the original on 2023-11-01.
  2. ^ a b Johnson, Pontus; Lagerstrom, Robert; Ekstedt, Mathias; Franke, Ulrik (2018-11-01). "Can the Common Vulnerability Scoring System be Trusted? A Bayesian Analysis". IEEE Transactions on Dependable and Secure Computing. 15 (6): 1002–1015. doi:10.1109/TDSC.2016.2644614. ISSN 1545-5971. S2CID 53287880.
  3. ^ "CVSS v1 Archive". First.org, Inc. Retrieved 2015-11-15.
  4. ^ "NATIONAL INFRASTRUCTURE ADVISORY COUNCIL / MEETING AGENDA / Tuesday, April 12, 2005 / 1:30-4:30 p.m. / National Press Club / Washington, DC" (PDF). Cybersecurity and Infrastructure Security Agency. 2005-04-12. Retrieved 2022-07-18. MITRE and CERT/CC both bring distinct but important value. Based on those proposals, the Working Group strongly suggests that these organizations work under the umbrella provided by Global FIRST for the CVSS.
  5. ^ "CVSS v2 History". First.org, Inc. Retrieved 2015-11-15.
  6. ^ "Announcing the CVSS Special Interest Group for CVSS v3 Development". First.org, Inc. Archived from the original on February 17, 2013. Retrieved March 2, 2013.
  7. ^ "Common Vulnerability Scoring System, V3 Development Update". First.org, Inc. Retrieved November 13, 2015.
  8. ^ "CVSS v2 Complete Documentation". First.org, Inc. Retrieved 2015-11-15.
  9. ^ "CVSS - Shortcomings, Faults and Failures" (PDF). Risk Based Security. 2013-02-27. Archived from the original (PDF) on 2022-03-11. Retrieved 2015-11-15.
  10. ^ "CVSS Scoring System". Oracle. 2010-06-01. Retrieved 2015-11-15.
  11. ^ "CVSS v3,.0 Specification Document". FIRST, Inc. Retrieved 2015-11-15.
  12. ^ "Common Vulnerability Scoring System v3.0: Specification Document (Qualitative Severity Rating Scale)". First.org. Retrieved 2016-01-10.
  13. ^ "NVD Common Vulnerability Scoring System Support v2". National Vulnerability Database. National Institute of Standards and Technology. Retrieved March 2, 2013.
  14. ^ "CVSS and the Internet of Things". CERT Coordination Center. 2015-09-02. Retrieved 2015-11-15.
  15. ^ "Common Vulnerability Scoring System". FIRST — Forum of Incident Response and Security Teams. Retrieved 2023-06-13.
  16. ^ "National Vulnerability Database Home". Nvd.nist.gov. Retrieved 2013-04-16.
  17. ^ "The Open Source Vulnerability Database". OSVDB. Retrieved 2013-04-16.
  18. ^ "Vulnerability Severity Using CVSS". CERT Coordination Center. 2012-04-12. Retrieved 2015-11-15.

External links[edit]