-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR comes to unlock #166 which seems stuck. ## What does it bring ? Basic support of CVSS v4.0, I'll open another issue about #178 about validating the CVSS vectors soon, as the FIRST.ORG SIG CVSS provide official CVSS validation regex we could use for schema validation. The string representation (aka vector) example comes from the CVSS v4.0 Specification Document Section 7. Signed-off-by: Lucas TESSON <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -289,7 +289,8 @@ | |
"type": "string", | ||
"enum": [ | ||
"CVSS_V2", | ||
"CVSS_V3" | ||
"CVSS_V3", | ||
"CVSS_V4" | ||
] | ||
}, | ||
"score": { | ||
|