mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 17:03:17 +01:00
feat: add bash classifier (#2055)
Signed-off-by: witchcraze <witchcraze@gmail.com>
This commit is contained in:
parent
62f689824c
commit
1848aa22cf
@ -667,6 +667,18 @@ func Test_Cataloger_DefaultClassifiers_PositiveCases(t *testing.T) {
|
|||||||
Metadata: metadata("nginx-binary"),
|
Metadata: metadata("nginx-binary"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "positive-bash-5.2.15",
|
||||||
|
fixtureDir: "test-fixtures/classifiers/positive/bash-5.2.15",
|
||||||
|
expected: pkg.Package{
|
||||||
|
Name: "bash",
|
||||||
|
Version: "5.2.15",
|
||||||
|
Type: "binary",
|
||||||
|
PURL: "pkg:generic/bash@5.2.15",
|
||||||
|
Locations: locations("bash"),
|
||||||
|
Metadata: metadata("bash-binary"),
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
|
|||||||
@ -269,6 +269,20 @@ var defaultClassifiers = []classifier{
|
|||||||
cpe.Must("cpe:2.3:a:nginx:nginx:*:*:*:*:*:*:*:*"),
|
cpe.Must("cpe:2.3:a:nginx:nginx:*:*:*:*:*:*:*:*"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Class: "bash-binary",
|
||||||
|
FileGlob: "**/bash",
|
||||||
|
EvidenceMatcher: fileContentsVersionMatcher(
|
||||||
|
// @(#)Bash version 5.2.15(1) release GNU
|
||||||
|
// @(#)Bash version 5.2.0(1) alpha GNU
|
||||||
|
// @(#)Bash version 5.2.0(1) beta GNU
|
||||||
|
// @(#)Bash version 5.2.0(1) rc4 GNU
|
||||||
|
`(?m)@\(#\)Bash version (?P<version>[0-9]+\.[0-9]+\.[0-9]+)\([0-9]\) [a-z0-9]+ GNU`,
|
||||||
|
),
|
||||||
|
Package: "bash",
|
||||||
|
PURL: mustPURL("pkg:generic/bash@version"),
|
||||||
|
CPEs: singleCPE("cpe:2.3:a:gnu:bash:*:*:*:*:*:*:*:*"),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// in both binaries and shared libraries, the version pattern is [NUL]3.11.2[NUL]
|
// in both binaries and shared libraries, the version pattern is [NUL]3.11.2[NUL]
|
||||||
|
|||||||
@ -0,0 +1 @@
|
|||||||
|
@(#)Bash version 5.2.15(1) release GNU
|
||||||
Loading…
x
Reference in New Issue
Block a user