Skip to content

Commit 6ccc0a5

Browse files
fix: check unescaped BomRef when matching PkgIdentifier (#6025)
Signed-off-by: knqyf263 <[email protected]> Co-authored-by: knqyf263 <[email protected]>
1 parent 458c5d9 commit 6ccc0a5

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

pkg/fanal/types/artifact.go

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package types
22

33
import (
44
"encoding/json"
5+
"strings"
56
"time"
67

78
v1 "github.com/google/go-containerregistry/pkg/v1"
@@ -156,6 +157,13 @@ func (id *PkgIdentifier) Empty() bool {
156157
}
157158

158159
func (id *PkgIdentifier) Match(s string) bool {
160+
// Encode string as PURL
161+
if strings.HasPrefix(s, "pkg:") {
162+
if p, err := packageurl.FromString(s); err == nil {
163+
s = p.String()
164+
}
165+
}
166+
159167
switch {
160168
case id.BOMRef == s:
161169
return true

pkg/vex/testdata/cyclonedx.json

+21
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,27 @@
1818
"ref": "urn:cdx:3e671687-395b-41f5-a30f-a58921a69b79/1#pkg:maven/com.fasterxml.jackson.core/[email protected]"
1919
}
2020
]
21+
},
22+
{
23+
"id": "CVE-2022-27943",
24+
"source": {
25+
"name": "ubuntu",
26+
"url": "https://git.launchpad.net/ubuntu-cve-tracker"
27+
},
28+
"affects": [
29+
{
30+
"ref": "urn:cdx:3e671687-395b-41f5-a30f-a58921a69b79/1#pkg:deb/ubuntu/libstdc%2B%[email protected]~22.04?arch=amd64&distro=ubuntu-22.04",
31+
"versions": [
32+
{
33+
"version": "12.3.0-1ubuntu1~22.04",
34+
"status": "affected"
35+
}
36+
]
37+
}
38+
],
39+
"analysis": {
40+
"state": "not_affected"
41+
}
2142
}
2243
]
2344
}

pkg/vex/vex_test.go

+25
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,31 @@ func TestVEX_Filter(t *testing.T) {
149149
},
150150
},
151151
},
152+
{
153+
VulnerabilityID: "CVE-2022-27943",
154+
PkgID: "[email protected]~22.04",
155+
PkgName: "libstdc++6",
156+
InstalledVersion: "12.3.0-1ubuntu1~22.04",
157+
PkgIdentifier: ftypes.PkgIdentifier{
158+
BOMRef: "pkg:deb/ubuntu/libstdc%2B%[email protected]~22.04?distro=ubuntu-22.04&arch=amd64",
159+
PURL: &packageurl.PackageURL{
160+
Type: packageurl.TypeDebian,
161+
Namespace: "ubuntu",
162+
Name: "libstdc++6",
163+
Version: "12.3.0-1ubuntu1~22.04",
164+
Qualifiers: []packageurl.Qualifier{
165+
{
166+
Key: "arch",
167+
Value: "amd64",
168+
},
169+
{
170+
Key: "distro",
171+
Value: "ubuntu-22.04",
172+
},
173+
},
174+
},
175+
},
176+
},
152177
},
153178
},
154179
want: []types.DetectedVulnerability{

0 commit comments

Comments
 (0)