CVSS::V4::Nomenclature
Inherits Enum < Comparable < Value < Object
Vector nomenclature classification per CVSS v4.0 specification §6.
A v4.0 vector is labelled by which optional metric groups carry
meaningful (non-X) values:
| Code | Threat (E) | Environmental (CR/IR/AR/M*) |
|---|---|---|
| CVSS-B | unset / X | unset / X |
| CVSS-BT | set | unset / X |
| CVSS-BE | unset / X | set |
| CVSS-BTE | set | set |
Supplemental metrics (S, AU, R, V, RE, U) are informational and never change the nomenclature.
Constants
Base = 0
BaseThreat = 1
BaseEnvironmental = 2
BaseThreatEnvironmental = 3
Instance methods
Appends a String representation of this enum member to the given io.
See also: to_s.
to_s
Spec-defined label string ("CVSS-B", "CVSS-BT", …). Overrides the
default Enum#to_s which would otherwise return the member name.