Skip to content

Commit ac47505

Browse files
Added SSVC
Signed-off-by: Steve Springett <steve@springett.us>
1 parent b816b76 commit ac47505

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
@@ -799,6 +799,8 @@ enum ScoreMethod {
799799
SCORE_METHOD_OTHER = 5;
800800
// Common Vulnerability Scoring System v3.1 - https://www.first.org/cvss/v4-0/
801801
SCORE_METHOD_CVSSV4 = 6;
802+
// Stakeholder Specific Vulnerability Categorization (all versions) - https://github.com/CERTCC/SSVC
803+
SCORE_METHOD_SSVC = 7;
802804
}
803805

804806
message Advisory {

schema/bom-1.5.schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1743,13 +1743,14 @@
17431743
"scoreMethod": {
17441744
"type": "string",
17451745
"title": "Method",
1746-
"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)",
1746+
"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)",
17471747
"enum": [
17481748
"CVSSv2",
17491749
"CVSSv3",
17501750
"CVSSv31",
17511751
"CVSSv4",
17521752
"OWASP",
1753+
"SSVC",
17531754
"other"
17541755
]
17551756
},

schema/bom-1.5.xsd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3790,6 +3790,14 @@ limitations under the License.
37903790
</xs:documentation>
37913791
</xs:annotation>
37923792
</xs:enumeration>
3793+
<xs:enumeration value="SSVC">
3794+
<xs:annotation>
3795+
<xs:documentation xml:lang="en">
3796+
The rating is based on Stakeholder Specific Vulnerability Categorization (all versions)
3797+
https://github.com/CERTCC/SSVC
3798+
</xs:documentation>
3799+
</xs:annotation>
3800+
</xs:enumeration>
37933801
<xs:enumeration value="other">
37943802
<xs:annotation>
37953803
<xs:documentation xml:lang="en">

0 commit comments

Comments
 (0)