File tree 3 files changed +54
-0
lines changed
3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package types
2
2
3
3
import (
4
4
"encoding/json"
5
+ "strings"
5
6
"time"
6
7
7
8
v1 "github.com/google/go-containerregistry/pkg/v1"
@@ -156,6 +157,13 @@ func (id *PkgIdentifier) Empty() bool {
156
157
}
157
158
158
159
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
+
159
167
switch {
160
168
case id .BOMRef == s :
161
169
return true
Original file line number Diff line number Diff line change 18
18
"ref" :
" urn:cdx:3e671687-395b-41f5-a30f-a58921a69b79/1#pkg:maven/com.fasterxml.jackson.core/[email protected] "
19
19
}
20
20
]
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
+ }
21
42
}
22
43
]
23
44
}
Original file line number Diff line number Diff line change @@ -149,6 +149,31 @@ func TestVEX_Filter(t *testing.T) {
149
149
},
150
150
},
151
151
},
152
+ {
153
+ VulnerabilityID : "CVE-2022-27943" ,
154
+
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
+ },
152
177
},
153
178
},
154
179
want : []types.DetectedVulnerability {
You can’t perform that action at this time.
0 commit comments