mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
tar: filter CVEs using vendor name
Recently a number of CVEs have been logged against a nodejs project called "node-tar". These appear as false positives against the GNU tar being built by Yocto. Some of these have been manually excluded using CVE_CHECK_WHITELIST. To avoid this problem, use the vendor name (in addition to package name) for filtering CVEs. The syntax for this is: CVE_PRODUCT = "vendor:package" When not specified, the vendor defaults to "%" which matches anything. (From OE-Core rev: 4d0ad4962bd3c69800f70770dc9123a694e16c26) Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit 45d1a0bea0c628f84a00d641a4d323491988106f) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1501d447cf
commit
8f637c5d42
@@ -66,6 +66,6 @@ NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
# These are both specific to the NPM package node-tar
|
||||
CVE_CHECK_WHITELIST += "CVE-2021-32803 CVE-2021-32804"
|
||||
CVE_CHECK_WHITELIST += "CVE-2021-37701 CVE-2021-37712 CVE-2021-37713"
|
||||
# Avoid false positives from CVEs in node-tar package
|
||||
# For example CVE-2021-{32803,32804,37701,37712,37713}
|
||||
CVE_PRODUCT = "gnu:tar"
|
||||
|
||||
Reference in New Issue
Block a user