summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2022-04-25 12:24:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-04 13:07:31 +0100
commited9500ddb6a39dbb4133494a778e59308acf3857 (patch)
tree16bb4c5a686561672ce4971d1bd4e4cb4e3a6cd4
parent881a9d82e75c986e19e7e1ee91635d10ad774818 (diff)
downloadpoky-ed9500ddb6a39dbb4133494a778e59308acf3857.tar.gz
python3: ignore CVE-2015-20107
CVE-2015-20107 describes an arbitrary command execution in the mailcap module, but this is by design in mailcap and needs to be worked around by the calling application. Upstream Python will be documenting this flaw in the library reference, and it is likely that the mailcap module will be deprecated and removed in the future. (From OE-Core rev: f525745af38b0e5ea26693849cd4f19c627efd46) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 85fac8408baf92d8b71946f5bfea92952b7eab01) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3_3.10.4.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3_3.10.4.bb b/meta/recipes-devtools/python/python3_3.10.4.bb
index 7eaafe34ad..d678d55083 100644
--- a/meta/recipes-devtools/python/python3_3.10.4.bb
+++ b/meta/recipes-devtools/python/python3_3.10.4.bb
@@ -55,6 +55,9 @@ CVE_CHECK_IGNORE += "CVE-2007-4559"
55CVE_CHECK_IGNORE += "CVE-2019-18348" 55CVE_CHECK_IGNORE += "CVE-2019-18348"
56# These are specific to Microsoft Windows 56# These are specific to Microsoft Windows
57CVE_CHECK_IGNORE += "CVE-2020-15523 CVE-2022-26488" 57CVE_CHECK_IGNORE += "CVE-2020-15523 CVE-2022-26488"
58# The mailcap module is insecure by design, so this can't be fixed in a meaningful way.
59# The module will be removed in the future and flaws documented.
60CVE_CHECK_IGNORE += "CVE-2015-20107"
58 61
59PYTHON_MAJMIN = "3.10" 62PYTHON_MAJMIN = "3.10"
60 63