We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ad0b7 commit 880f5dbCopy full SHA for 880f5db
syft/pkg/cataloger/binary/classifiers.go
@@ -525,6 +525,17 @@ func DefaultClassifiers() []Classifier {
525
PURL: mustPURL("pkg:generic/wp-cli@version"),
526
CPEs: singleCPE("cpe:2.3:a:wp-cli:wp-cli:*:*:*:*:*:*:*:*"),
527
},
528
+ {
529
+ Class: "chrome-binary",
530
+ FileGlob: "**/chrome",
531
+ EvidenceMatcher: FileContentsVersionMatcher(
532
+ // [NUL]127.0.6533.119[NUL]Default
533
+ `\x00(?P<version>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\x00Default`,
534
+ ),
535
+ Package: "chrome",
536
+ PURL: mustPURL("pkg:generic/chrome@version"),
537
+ CPEs: singleCPE("cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*"),
538
+ },
539
}
540
541
0 commit comments