-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-provenance-report.sarif
More file actions
150 lines (150 loc) · 4.76 KB
/
Copy pathsample-provenance-report.sarif
File metadata and controls
150 lines (150 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"$schema": "https://json.schemastore.org/sarif-2.1.0.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "sbom-diff-risk",
"fullName": "sbom-diff-risk",
"version": "1.1.0.dev0",
"semanticVersion": "1.1.0.dev0",
"rules": [
{
"id": "sdr.policy_violation.provenance_required",
"name": "policy_violation.provenance_required",
"shortDescription": {
"text": "Policy violation: provenance_required"
},
"fullDescription": {
"text": "A configured provenance requirement was not satisfied for the component."
},
"defaultConfiguration": {
"level": "error"
},
"properties": {
"tags": [
"supply-chain",
"policy",
"provenance"
]
}
},
{
"id": "sdr.policy_violation.unverified_provenance",
"name": "policy_violation.unverified_provenance",
"shortDescription": {
"text": "Policy violation: unverified_provenance"
},
"fullDescription": {
"text": "PyPI attestations were present, but provenance could not be verified against publisher metadata."
},
"defaultConfiguration": {
"level": "error"
},
"properties": {
"tags": [
"supply-chain",
"policy",
"provenance"
]
}
}
]
}
},
"artifacts": [
{
"location": {
"uri": "examples/requirements_before.txt",
"uriBaseId": "%SRCROOT%"
}
},
{
"location": {
"uri": "examples/requirements_after.txt",
"uriBaseId": "%SRCROOT%"
}
}
],
"properties": {
"sbom_diff_risk": {
"result_limit": 5000,
"total_candidate_results": 2,
"emitted_results": 2,
"omitted_results": 0,
"truncated": false,
"prioritization": "error results first, then warning, then note; direct mapped findings before policy-only checks; stable rule priority and component key tie-breakers.",
"warning": null
}
},
"results": [
{
"ruleId": "sdr.policy_violation.provenance_required",
"level": "error",
"message": {
"text": "mystery-lib: Provenance required for new package; no attestations were published."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "examples/requirements_after.txt",
"uriBaseId": "%SRCROOT%"
},
"region": {
"startLine": 1
}
}
}
],
"partialFingerprints": {
"ruleId": "sdr.policy_violation.provenance_required",
"componentKey": "purl:pkg:pypi/mystery-lib"
},
"properties": {
"policy_rule_id": "provenance_required",
"component_key": "purl:pkg:pypi/mystery-lib",
"component_name": "mystery-lib",
"result_kind": "policy_violation"
}
},
{
"ruleId": "sdr.policy_violation.unverified_provenance",
"level": "error",
"message": {
"text": "legacy-lib: PyPI attestation publisher could not be verified by policy."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "examples/requirements_after.txt",
"uriBaseId": "%SRCROOT%"
},
"region": {
"startLine": 1
}
}
}
],
"partialFingerprints": {
"ruleId": "sdr.policy_violation.unverified_provenance",
"componentKey": "purl:pkg:pypi/legacy-lib"
},
"properties": {
"policy_rule_id": "unverified_provenance",
"component_key": "purl:pkg:pypi/legacy-lib",
"component_name": "legacy-lib",
"result_kind": "policy_violation"
}
}
],
"originalUriBaseIds": {
"%SRCROOT%": {
"uri": "file:///__PROJECT_ROOT__/"
}
}
}
]
}