]> code.ossystems Code Review - openembedded-core.git/commitdiff
python3: whitelist CVE-2020-15523
authorLee Chee Yang <chee.yang.lee@intel.com>
Thu, 19 Nov 2020 11:00:33 +0000 (19:00 +0800)
committerSteve Sakoman <steve@sakoman.com>
Thu, 19 Nov 2020 20:02:23 +0000 (10:02 -1000)
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: Steve Sakoman <steve@sakoman.com>
meta/recipes-devtools/python/python3_3.8.2.bb

index 758ed8754688c3ee42032170aa812617b3ac841d..5f7901dbf205000f3c71b62348fb573c2de3e7e8 100644 (file)
@@ -54,6 +54,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.8"
 
 S = "${WORKDIR}/Python-${PV}"