Debian Package Tracker
Register | Log in
Subscribe

python-tornado

Choose email to subscribe with

general
  • source: python-tornado (main)
  • version: 6.5.2-3
  • maintainer: Debian Python Team (DMD)
  • uploaders: Yaroslav Halchenko [DMD] – Julian Taylor [DMD] – Carl Chenet [DMD] – Julien Puydt [DMD]
  • arch: all any
  • std-ver: 4.7.0
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 6.1.0-1
  • o-o-sec: 6.1.0-1+deb11u2
  • oldstable: 6.2.0-3+deb12u2
  • old-sec: 6.2.0-3+deb12u2
  • stable: 6.4.2-3
  • testing: 6.5.2-3
  • unstable: 6.5.2-3
versioned links
  • 6.1.0-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.1.0-1+deb11u2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.2.0-3+deb12u2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.4.2-3: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.5.2-3: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • python-tornado-doc
  • python3-tornado
action needed
A new upstream version is available: 6.5.3 high
A new upstream version 6.5.3 is available, you should consider packaging it.
Created: 2025-12-12 Last update: 2025-12-13 21:31
3 security issues in trixie high

There are 3 open security issues in trixie.

3 important issues:
  • CVE-2025-67724: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, the supplied reason phrase is used unescaped in HTTP headers (where it could be used for header injection) or in HTML in the default error page (where it could be used for XSS) and can be exploited by passing untrusted or malicious data into the reason argument. Used by both RequestHandler.set_status and tornado.web.HTTPError, the argument is designed to allow applications to pass custom "reason" phrases (the "Not Found" in HTTP/1.1 404 Not Found) to the HTTP status line (mainly for non-standard status codes). This issue is fixed in version 6.5.3.
  • CVE-2025-67725: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, a single maliciously crafted HTTP request can block the server's event loop for an extended period, caused by the HTTPHeaders.add method. The function accumulates values using string concatenation when the same header name is repeated, causing a Denial of Service (DoS). Due to Python string immutability, each concatenation copies the entire string, resulting in O(n²) time complexity. The severity can vary from high if max_header_size has been increased from its default, to low if it has its default value of 64KB. This issue is fixed in version 6.5.3.
  • CVE-2025-67726: Tornado is a Python web framework and asynchronous networking library. Versions 6.5.2 and below use an inefficient algorithm when parsing parameters for HTTP header values, potentially causing a DoS. The _parseparam function in httputil.py is used to parse specific HTTP header values, such as those in multipart/form-data and repeatedly calls string.count() within a nested loop while processing quoted semicolons. If an attacker sends a request with a large number of maliciously crafted parameters in a Content-Disposition header, the server's CPU usage increases quadratically (O(n²)) during parsing. Due to Tornado's single event loop architecture, a single malicious request can cause the entire server to become unresponsive for an extended period. This issue is fixed in version 6.5.3.
Created: 2025-12-12 Last update: 2025-12-13 05:00
3 security issues in sid high

There are 3 open security issues in sid.

3 important issues:
  • CVE-2025-67724: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, the supplied reason phrase is used unescaped in HTTP headers (where it could be used for header injection) or in HTML in the default error page (where it could be used for XSS) and can be exploited by passing untrusted or malicious data into the reason argument. Used by both RequestHandler.set_status and tornado.web.HTTPError, the argument is designed to allow applications to pass custom "reason" phrases (the "Not Found" in HTTP/1.1 404 Not Found) to the HTTP status line (mainly for non-standard status codes). This issue is fixed in version 6.5.3.
  • CVE-2025-67725: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, a single maliciously crafted HTTP request can block the server's event loop for an extended period, caused by the HTTPHeaders.add method. The function accumulates values using string concatenation when the same header name is repeated, causing a Denial of Service (DoS). Due to Python string immutability, each concatenation copies the entire string, resulting in O(n²) time complexity. The severity can vary from high if max_header_size has been increased from its default, to low if it has its default value of 64KB. This issue is fixed in version 6.5.3.
  • CVE-2025-67726: Tornado is a Python web framework and asynchronous networking library. Versions 6.5.2 and below use an inefficient algorithm when parsing parameters for HTTP header values, potentially causing a DoS. The _parseparam function in httputil.py is used to parse specific HTTP header values, such as those in multipart/form-data and repeatedly calls string.count() within a nested loop while processing quoted semicolons. If an attacker sends a request with a large number of maliciously crafted parameters in a Content-Disposition header, the server's CPU usage increases quadratically (O(n²)) during parsing. Due to Tornado's single event loop architecture, a single malicious request can cause the entire server to become unresponsive for an extended period. This issue is fixed in version 6.5.3.
Created: 2025-12-12 Last update: 2025-12-13 05:00
3 security issues in forky high

There are 3 open security issues in forky.

3 important issues:
  • CVE-2025-67724: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, the supplied reason phrase is used unescaped in HTTP headers (where it could be used for header injection) or in HTML in the default error page (where it could be used for XSS) and can be exploited by passing untrusted or malicious data into the reason argument. Used by both RequestHandler.set_status and tornado.web.HTTPError, the argument is designed to allow applications to pass custom "reason" phrases (the "Not Found" in HTTP/1.1 404 Not Found) to the HTTP status line (mainly for non-standard status codes). This issue is fixed in version 6.5.3.
  • CVE-2025-67725: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, a single maliciously crafted HTTP request can block the server's event loop for an extended period, caused by the HTTPHeaders.add method. The function accumulates values using string concatenation when the same header name is repeated, causing a Denial of Service (DoS). Due to Python string immutability, each concatenation copies the entire string, resulting in O(n²) time complexity. The severity can vary from high if max_header_size has been increased from its default, to low if it has its default value of 64KB. This issue is fixed in version 6.5.3.
  • CVE-2025-67726: Tornado is a Python web framework and asynchronous networking library. Versions 6.5.2 and below use an inefficient algorithm when parsing parameters for HTTP header values, potentially causing a DoS. The _parseparam function in httputil.py is used to parse specific HTTP header values, such as those in multipart/form-data and repeatedly calls string.count() within a nested loop while processing quoted semicolons. If an attacker sends a request with a large number of maliciously crafted parameters in a Content-Disposition header, the server's CPU usage increases quadratically (O(n²)) during parsing. Due to Tornado's single event loop architecture, a single malicious request can cause the entire server to become unresponsive for an extended period. This issue is fixed in version 6.5.3.
Created: 2025-12-12 Last update: 2025-12-13 05:00
3 security issues in bullseye high

There are 3 open security issues in bullseye.

3 important issues:
  • CVE-2025-67724: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, the supplied reason phrase is used unescaped in HTTP headers (where it could be used for header injection) or in HTML in the default error page (where it could be used for XSS) and can be exploited by passing untrusted or malicious data into the reason argument. Used by both RequestHandler.set_status and tornado.web.HTTPError, the argument is designed to allow applications to pass custom "reason" phrases (the "Not Found" in HTTP/1.1 404 Not Found) to the HTTP status line (mainly for non-standard status codes). This issue is fixed in version 6.5.3.
  • CVE-2025-67725: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, a single maliciously crafted HTTP request can block the server's event loop for an extended period, caused by the HTTPHeaders.add method. The function accumulates values using string concatenation when the same header name is repeated, causing a Denial of Service (DoS). Due to Python string immutability, each concatenation copies the entire string, resulting in O(n²) time complexity. The severity can vary from high if max_header_size has been increased from its default, to low if it has its default value of 64KB. This issue is fixed in version 6.5.3.
  • CVE-2025-67726: Tornado is a Python web framework and asynchronous networking library. Versions 6.5.2 and below use an inefficient algorithm when parsing parameters for HTTP header values, potentially causing a DoS. The _parseparam function in httputil.py is used to parse specific HTTP header values, such as those in multipart/form-data and repeatedly calls string.count() within a nested loop while processing quoted semicolons. If an attacker sends a request with a large number of maliciously crafted parameters in a Content-Disposition header, the server's CPU usage increases quadratically (O(n²)) during parsing. Due to Tornado's single event loop architecture, a single malicious request can cause the entire server to become unresponsive for an extended period. This issue is fixed in version 6.5.3.
Created: 2025-12-12 Last update: 2025-12-13 05:00
3 security issues in bookworm high

There are 3 open security issues in bookworm.

3 important issues:
  • CVE-2025-67724: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, the supplied reason phrase is used unescaped in HTTP headers (where it could be used for header injection) or in HTML in the default error page (where it could be used for XSS) and can be exploited by passing untrusted or malicious data into the reason argument. Used by both RequestHandler.set_status and tornado.web.HTTPError, the argument is designed to allow applications to pass custom "reason" phrases (the "Not Found" in HTTP/1.1 404 Not Found) to the HTTP status line (mainly for non-standard status codes). This issue is fixed in version 6.5.3.
  • CVE-2025-67725: Tornado is a Python web framework and asynchronous networking library. In versions 6.5.2 and below, a single maliciously crafted HTTP request can block the server's event loop for an extended period, caused by the HTTPHeaders.add method. The function accumulates values using string concatenation when the same header name is repeated, causing a Denial of Service (DoS). Due to Python string immutability, each concatenation copies the entire string, resulting in O(n²) time complexity. The severity can vary from high if max_header_size has been increased from its default, to low if it has its default value of 64KB. This issue is fixed in version 6.5.3.
  • CVE-2025-67726: Tornado is a Python web framework and asynchronous networking library. Versions 6.5.2 and below use an inefficient algorithm when parsing parameters for HTTP header values, potentially causing a DoS. The _parseparam function in httputil.py is used to parse specific HTTP header values, such as those in multipart/form-data and repeatedly calls string.count() within a nested loop while processing quoted semicolons. If an attacker sends a request with a large number of maliciously crafted parameters in a Content-Disposition header, the server's CPU usage increases quadratically (O(n²)) during parsing. Due to Tornado's single event loop architecture, a single malicious request can cause the entire server to become unresponsive for an extended period. This issue is fixed in version 6.5.3.
Created: 2025-12-12 Last update: 2025-12-13 05:00
lintian reports 6 warnings normal
Lintian reports 6 warnings about this package. You should make the package lintian clean getting rid of them.
Created: 2025-10-05 Last update: 2025-10-05 08:35
debian/patches: 1 patch to forward upstream low

Among the 7 debian patches available in version 6.5.2-3 of the package, we noticed the following issues:

  • 1 patch where the metadata indicates that the patch has not yet been forwarded upstream. You should either forward the patch upstream or update the metadata to document its real status.
Created: 2024-09-25 Last update: 2025-10-05 09:01
Standards version of the package is outdated. wishlist
The package should be updated to follow the last version of Debian Policy (Standards-Version 4.7.2 instead of 4.7.0).
Created: 2025-02-21 Last update: 2025-10-05 05:02
news
[rss feed]
  • [2025-10-09] python-tornado 6.5.2-3 MIGRATED to testing (Debian testing watch)
  • [2025-10-05] Accepted python-tornado 6.5.2-3 (source) into unstable (Bo YU)
  • [2025-09-28] Accepted python-tornado 6.5.2-2 (source) into unstable (Thomas Goirand)
  • [2025-08-26] Accepted python-tornado 6.5.2-1 (source) into experimental (Thomas Goirand)
  • [2025-06-06] Accepted python-tornado 6.2.0-3+deb12u2 (source) into proposed-updates (Debian FTP Masters) (signed by: Daniel Leidert)
  • [2025-06-06] Accepted python-tornado 6.2.0-3+deb12u2 (source) into stable-security (Debian FTP Masters) (signed by: Daniel Leidert)
  • [2025-05-29] Accepted python-tornado 6.1.0-1+deb11u2 (source) into oldstable-security (Daniel Leidert)
  • [2025-05-25] python-tornado 6.4.2-3 MIGRATED to testing (Debian testing watch)
  • [2025-05-22] Accepted python-tornado 6.4.2-3 (source) into unstable (Bo YU)
  • [2025-05-18] Accepted python-tornado 6.4.2-2 (source) into unstable (Colin Watson)
  • [2025-01-03] Accepted python-tornado 6.2.0-3+deb12u1 (source) into proposed-updates (Debian FTP Masters) (signed by: Daniel Leidert)
  • [2025-01-01] Accepted python-tornado 6.1.0-1+deb11u1 (source) into oldstable-security (Daniel Leidert)
  • [2024-12-04] python-tornado 6.4.2-1 MIGRATED to testing (Debian testing watch)
  • [2024-11-29] Accepted python-tornado 6.4.2-1 (source) into unstable (Colin Watson)
  • [2024-09-30] python-tornado 6.4.1-3 MIGRATED to testing (Debian testing watch)
  • [2024-09-25] Accepted python-tornado 6.4.1-3 (source) into unstable (Alexandre Detiste)
  • [2024-08-25] python-tornado 6.4.1-2 MIGRATED to testing (Debian testing watch)
  • [2024-08-19] Accepted python-tornado 6.4.1-2 (source) into unstable (Colin Watson)
  • [2024-06-20] python-tornado 6.4.1-1 MIGRATED to testing (Debian testing watch)
  • [2024-06-20] python-tornado 6.4.1-1 MIGRATED to testing (Debian testing watch)
  • [2024-06-13] Accepted python-tornado 6.4.1-1 (source) into unstable (Julien Puydt)
  • [2024-06-03] python-tornado 6.4.0-2 MIGRATED to testing (Debian testing watch)
  • [2024-05-29] Accepted python-tornado 6.4.0-2 (source) into unstable (Timo Röhling)
  • [2024-01-24] python-tornado 6.4.0-1 MIGRATED to testing (Debian testing watch)
  • [2024-01-21] Accepted python-tornado 6.4.0-1 (source) into unstable (Stefano Rivera)
  • [2023-06-28] python-tornado 6.3.2-1 MIGRATED to testing (Debian testing watch)
  • [2023-06-26] Accepted python-tornado 6.3.2-1 (source) into unstable (Julien Puydt)
  • [2022-11-22] python-tornado 6.2.0-3 MIGRATED to testing (Debian testing watch)
  • [2022-11-20] Accepted python-tornado 6.2.0-3 (source) into unstable (Jelmer Vernooij) (signed by: Jelmer Vernooij)
  • [2022-10-19] python-tornado 6.2.0-2 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 3
  • RC: 0
  • I&N: 3
  • M&W: 0
  • F&P: 0
  • patch: 0
links
  • homepage
  • lintian (0, 6)
  • buildd: logs, reproducibility, cross
  • popcon
  • browse source code
  • edit tags
  • other distros
  • security tracker
  • screenshots
  • l10n (-, 100)
  • debian patches
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 6.5.2-3
  • 1 bug

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing