Rust implementation of the Common Vulnerability Scoring System (v2 / v3.0 / v3.1).
Supports parsing, generation and score calculation (base, temporal, environmental) for CVSS vectors v2/v3.0/v3.1
Current CVSS version is v3.1, but v3.0 and v2 are still in use.
```rust use cvssrust::v3::V3Vector; use cvssrust::CVSSScore; use std::str::FromStr;
let cvssstr = "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N/E:P/RL:W/RC:C"; let cvss = V3Vector::fromstr(cvss_str).unwrap();
asserteq!(cvss.tostring(), String::from(cvssstr)); asserteq!(cvss.basescore().value(), 6.1); asserteq!(cvss.basescore().severity().tostring(), "Medium"); asserteq!(cvss.temporalscore().value(), 5.6); ```
https://www.first.org/cvss/v3.1/specification-document
changes from 3.0: https://www.first.org/cvss/user-guide#2-6-Formula-Changes
calculator: https://www.first.org/cvss/calculator/3.1
https://www.first.org/cvss/v3.0/specification-document
https://www.first.org/cvss/v2/guide
Rounding issue where v2 scores in some cases are off by 0.1, see https://github.com/moor84/cvssrust/issues/10. Does not affect v3 as there's a different rounding function.