]> code.ossystems Code Review - openembedded-core.git/commitdiff
python3: whitelist CVE-2020-15523
authorLee Chee Yang <chee.yang.lee@intel.com>
Wed, 18 Nov 2020 13:22:26 +0000 (21:22 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 24 Nov 2020 10:27:38 +0000 (10:27 +0000)
This CVE is issue on _Py_CheckPython3 uses uninitialized dllpath when embedder sets module path with Py_SetPath.
Since it is .dll issue (on windows only), hence whitelist it.

https://bugs.python.org/issue29778

Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/python/python3_3.9.0.bb

index ae9a974f043ecceabfdb199a6a25043564e0fe76..d29a779a81588b1946af5465447ca617c8edcd70 100644 (file)
@@ -49,6 +49,9 @@ CVE_PRODUCT = "python"
 # This is not exploitable when glibc has CVE-2016-10739 fixed.
 CVE_CHECK_WHITELIST += "CVE-2019-18348"
 
+# This is windows only issue.
+CVE_CHECK_WHITELIST += "CVE-2020-15523"
+
 PYTHON_MAJMIN = "3.9"
 
 S = "${WORKDIR}/Python-${PV}"