Skip to content

Commit 9861a7a

Browse files
Merge pull request #224 from CycloneDX/v1.5-dev-ssvc
Add SSVC to existing rating methods
2 parents 674427b + 88c908f commit 9861a7a

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

schema/bom-1.5.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,8 @@ enum ScoreMethod {
853853
SCORE_METHOD_OTHER = 5;
854854
// Common Vulnerability Scoring System v3.1 - https://www.first.org/cvss/v4-0/
855855
SCORE_METHOD_CVSSV4 = 6;
856+
// Stakeholder Specific Vulnerability Categorization (all versions) - https://github.com/CERTCC/SSVC
857+
SCORE_METHOD_SSVC = 7;
856858
}
857859

858860
message Advisory {

schema/bom-1.5.schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,13 +1809,14 @@
18091809
"scoreMethod": {
18101810
"type": "string",
18111811
"title": "Method",
1812-
"description": "Specifies the severity or risk scoring methodology or standard used.\n\n* CVSSv2 - [Common Vulnerability Scoring System v2](https://www.first.org/cvss/v2/)\n* CVSSv3 - [Common Vulnerability Scoring System v3](https://www.first.org/cvss/v3-0/)\n* CVSSv31 - [Common Vulnerability Scoring System v3.1](https://www.first.org/cvss/v3-1/)\n* CVSSv4 - [Common Vulnerability Scoring System v4](https://www.first.org/cvss/v4-0/)\n* OWASP - [OWASP Risk Rating Methodology](https://owasp.org/www-community/OWASP_Risk_Rating_Methodology)",
1812+
"description": "Specifies the severity or risk scoring methodology or standard used.\n\n* CVSSv2 - [Common Vulnerability Scoring System v2](https://www.first.org/cvss/v2/)\n* CVSSv3 - [Common Vulnerability Scoring System v3](https://www.first.org/cvss/v3-0/)\n* CVSSv31 - [Common Vulnerability Scoring System v3.1](https://www.first.org/cvss/v3-1/)\n* CVSSv4 - [Common Vulnerability Scoring System v4](https://www.first.org/cvss/v4-0/)\n* OWASP - [OWASP Risk Rating Methodology](https://owasp.org/www-community/OWASP_Risk_Rating_Methodology)\n* SSVC - [Stakeholder Specific Vulnerability Categorization](https://github.com/CERTCC/SSVC) (all versions)",
18131813
"enum": [
18141814
"CVSSv2",
18151815
"CVSSv3",
18161816
"CVSSv31",
18171817
"CVSSv4",
18181818
"OWASP",
1819+
"SSVC",
18191820
"other"
18201821
]
18211822
},

schema/bom-1.5.xsd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3980,6 +3980,14 @@ limitations under the License.
39803980
</xs:documentation>
39813981
</xs:annotation>
39823982
</xs:enumeration>
3983+
<xs:enumeration value="SSVC">
3984+
<xs:annotation>
3985+
<xs:documentation xml:lang="en">
3986+
The rating is based on Stakeholder Specific Vulnerability Categorization (all versions)
3987+
https://github.com/CERTCC/SSVC
3988+
</xs:documentation>
3989+
</xs:annotation>
3990+
</xs:enumeration>
39833991
<xs:enumeration value="other">
39843992
<xs:annotation>
39853993
<xs:documentation xml:lang="en">

0 commit comments

Comments
 (0)