qt bin classifier, fixed #4467

Signed-off-by: Rez Moss <hi@rezmoss.com>
This commit is contained in:
Rez Moss 2026-01-19 10:55:43 -05:00
parent 93ede85c9a
commit 2d52c78595
No known key found for this signature in database
GPG Key ID: C2A599BFF40B075E
2 changed files with 5 additions and 1 deletions

View File

@ -441,6 +441,7 @@ catalogers:
name: qtbase
purl: pkg:generic/qtbase
cpes:
- cpe:2.3:a:qt:qt:*:*:*:*:*:*:*:*
- cpe:2.3:a:qt:qtbase:*:*:*:*:*:*:*:*
type: BinaryPkg
- method: glob

View File

@ -524,7 +524,10 @@ func DefaultClassifiers() []binutils.Classifier {
),
Package: "qtbase",
PURL: mustPURL("pkg:generic/qtbase@version"),
CPEs: singleCPE("cpe:2.3:a:qt:qtbase:*:*:*:*:*:*:*:*", cpe.NVDDictionaryLookupSource),
CPEs: []cpe.CPE{
cpe.Must("cpe:2.3:a:qt:qt:*:*:*:*:*:*:*:*", cpe.NVDDictionaryLookupSource),
cpe.Must("cpe:2.3:a:qt:qtbase:*:*:*:*:*:*:*:*", cpe.NVDDictionaryLookupSource),
},
},
{
Class: "gcc-binary",