Release date:
2026-09-18 09:16:19 UTC
Description:
* SECURITY UPDATE: CPU denial-of-service in csv.Sniffer. Two independent
regexes in Sniffer._guess_quote_and_delimiter() ran in super-linear time
on samples reachable from the public csv.Sniffer.sniff() API (CWE-1176,
algorithmic complexity). The quoted-field probe matched a field body with
a lazy ".*?" under re.DOTALL, so a closing quote not followed by a
delimiter was retried against every later quote in the sample: quadratic.
The doubled-quote probe dq_regexp was unanchored, rescanned leading
whitespace and ran even when no delimiter had been found, which is
exponential on a sample carrying a run of quote characters.
- debian/patches/CVE-2026-18503.patch: backport of cpython 19e5024518
(gh-109638, GH-154868) and fd78b565 (gh-98820, GH-154867), both in
their upstream 3.10-branch form. Both commits are part of Python
3.10.21, the release the CVE record names as fixing the "0 to <
3.10.21" range, and gh-98820 alone leaves the doubled-quote probe
exponential: with it applied on its own, sniff() on
'"",'*100 + '"'*100 + '0' + '"'*100 + '0', on '"a"\n' + ' '*100000
with delimiters=',;', and on '"a" "b"\n' + ' '*100000 each still runs
unbounded inside a single C-level re call. Field bodies are now matched
by unrolled, unambiguous loops that cannot backtrack, the doubled-quote
probe is anchored on whole fields and skipped when no delimiter was
found, and sniff() normalises CRLF and CR to LF first so the probe's
"$" means end of record. The 3.10 commits are used rather than the
3.11+ ones, which express the same fix with a possessive quantifier
that Python 2.7's re module does not support.
- CVE-2026-18503
* The Misc/NEWS.d fragments of both commits are omitted; this version
ships a single Misc/NEWS file.
Updated packages:
-
alt-python27_2.7.18-31_amd64.deb
sha:0c38cb596e26e5f6b22531d3641d49e61d912355
-
alt-python27-debug_2.7.18-31_amd64.deb
sha:a07b3802a7e77e8866696990e3290c5ec4558fe5
-
alt-python27-devel_2.7.18-31_amd64.deb
sha:a037867e06aa9e07332bad759f51196cc1cdabd2
-
alt-python27-idle_2.7.18-31_amd64.deb
sha:9a24beb4387dd329712b6b566562b976a4dadf48
-
alt-python27-libs_2.7.18-31_amd64.deb
sha:3b7c36ca54b99c205c1efc7035aae62797ffaa12
-
alt-python27-test_2.7.18-31_amd64.deb
sha:70fa8fdc791305c293ba137487ed5385995e4d8f
-
alt-python27-tkinter_2.7.18-31_amd64.deb
sha:7596a75edfde1b658886b51c1f23c8d28dd9f51e
-
alt-python27-tools_2.7.18-31_amd64.deb
sha:92cf3117f5d35e61e2707cb83ba092c0e4e0ec9a
Notes:
This page is generated automatically and has not been checked for errors. For clarification or
corrections please contact the
CloudLinux Packaging Team.