summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3_3.10.4.bb
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-04-26 18:25:08 +0100
commit7c464759540fc8a1c6294e098a7fc3f7fedd2acd (patch)
treedc7d4b86f745532c14d82ef6fd8a66e1106b68db /meta/recipes-devtools/python/python3_3.10.4.bb
parent7bd13c6a0896539f4789aa835f0df6c094c221c2 (diff)
downloadpoky-7c464759540fc8a1c6294e098a7fc3f7fedd2acd.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: 85fac8408baf92d8b71946f5bfea92952b7eab01) 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>
Diffstat (limited to 'meta/recipes-devtools/python/python3_3.10.4.bb')
-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