diff --git a/src/universal/.devcontainer/local-features/patch-python/install.sh b/src/universal/.devcontainer/local-features/patch-python/install.sh index 7f788540a..4863bc1e6 100644 --- a/src/universal/.devcontainer/local-features/patch-python/install.sh +++ b/src/universal/.devcontainer/local-features/patch-python/install.sh @@ -44,3 +44,6 @@ update_package() { # https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40897 update_package /usr/local/python/3.9.*/bin/python setuptools 65.5.1 + +# https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-45803 +update_package /usr/local/python/3.10.*/bin/python urllib3 2.0.7 diff --git a/src/universal/test-project/test.sh b/src/universal/test-project/test.sh index 65472f5b4..69356eef5 100644 --- a/src/universal/test-project/test.sh +++ b/src/universal/test-project/test.sh @@ -189,6 +189,7 @@ ls -la /home/codespace ## Python - current checkPythonPackageVersion "python" "setuptools" "65.5.1" checkPythonPackageVersion "python" "requests" "2.31.0" +checkPythonPackageVersion "python" "urllib3" "2.0.7" ## Python 3.9 checkPythonPackageVersion "/usr/local/python/3.9.*/bin/python" "setuptools" "65.5.1"