Crates.io | libcvss |
lib.rs | libcvss |
version | 1.0.1 |
source | src |
created_at | 2019-11-27 09:07:38.661999 |
updated_at | 2020-02-07 13:12:41.598991 |
description | A Rust implementation of the CVSS specification. |
homepage | https://crates.io/crates/libcvss |
repository | https://gitlab.inria.fr/celbaz/libcvss |
max_upload_size | |
id | 184761 |
size | 468,156 |
libcvss is a Rust implementation of the CVSS specification.
It provides Rust users with a native way to manipulate CVSS-formatted vulnerability data.
libcvss leverages Rust to provide a CVSS implementation focused on both performance and correctness.
The official CVSS website describes CVSS this way:
The Common Vulnerability Scoring System (CVSS) provides a way to capture the principal characteristics of a vulnerability and produce a numerical score reflecting its severity. The numerical score can then be translated into a qualitative representation (such as low, medium, high, and critical) to help organizations properly assess and prioritize their vulnerability management processes.
Correctness and reliability are an important focus of libcvss.
libcvss is released under a BSD-3 license.
Bug reports and pull requests are appreciated. Please use Inria's Gitlab for both.
Before submitting a pull request, please consider using our pre-commit hook. You can activate it using:
ln -s hooks/pre-commit .git/hooks/pre-commit
Our pre-commit hook will check that:
If your pull request is substantial, consider launching our integration tests suite. These tests download past vulnerability data from the NVD database and perform parsing against real vulnerability metadata. It requires an Internet connection and the availability of the following executables: sh, wget, gunzip, and jq:
cargo test -- --ignored --nocapture
Thank you for your interest in libcvss.