diff --git a/python39.changes b/python39.changes index 7871a1b..dfd219b 100644 --- a/python39.changes +++ b/python39.changes @@ -216,14 +216,14 @@ Wed May 5 15:16:58 UTC 2021 - Matej Cepl - bpo-43472: Ensures interpreter-level audit hooks receive the cpython.PyInterpreterState_New event when called through the _xxsubinterpreters module. - - bpo-36384: ipaddress module no longer accepts any leading - zeros in IPv4 address strings. Leading zeros are ambiguous - and interpreted as octal notation by some libraries. For - example the legacy function socket.inet_aton() treats - leading zeros as octal notatation. glibc implementation of - modern inet_pton() does not accept any leading zeros. For - a while the ipaddress module used to accept ambiguous - leading zeros. + - bpo-36384 (bsc#1185706, CVE-2021-29921): ipaddress module + no longer accepts any leading zeros in IPv4 address + strings. Leading zeros are ambiguous and interpreted as + octal notation by some libraries. For example the legacy + function socket.inet_aton() treats leading zeros as octal + notatation. glibc implementation of modern inet_pton() does + not accept any leading zeros. For a while the ipaddress + module used to accept ambiguous leading zeros. - bpo-43075: Fix Regular Expression Denial of Service (ReDoS) vulnerability in urllib.request.AbstractBasicAuthHandler. The ReDoS-vulnerable regex has quadratic worst-case