Debian Package Tracker
Register | Log in
Subscribe

python3.13

Interactive high-level object-oriented language (version 3.13)

Choose email to subscribe with

general
  • source: python3.13 (main)
  • version: 3.13.11-1
  • maintainer: Matthias Klose (DMD)
  • uploaders: Stefano Rivera [DMD]
  • arch: all any
  • std-ver: 4.7.2
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • stable: 3.13.5-2
  • testing: 3.13.11-1
  • unstable: 3.13.11-1
versioned links
  • 3.13.5-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 3.13.11-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • idle-python3.13
  • libpython3.13
  • libpython3.13-dbg
  • libpython3.13-dev (1 bugs: 0, 0, 1, 0)
  • libpython3.13-minimal
  • libpython3.13-stdlib (2 bugs: 0, 2, 0, 0)
  • libpython3.13-testsuite
  • python3.13 (4 bugs: 3, 0, 1, 0)
  • python3.13-dbg (3 bugs: 0, 3, 0, 0)
  • python3.13-dev
  • python3.13-doc
  • python3.13-examples
  • python3.13-full
  • python3.13-gdbm (1 bugs: 0, 1, 0, 0)
  • python3.13-minimal (1 bugs: 0, 0, 1, 0)
  • python3.13-nopie
  • python3.13-tk
  • python3.13-venv
action needed
15 security issues in trixie high

There are 15 open security issues in trixie.

8 important issues:
  • CVE-2026-0672: When using http.cookies.Morsel, user-controlled cookie values and parameters can allow injecting HTTP headers into messages. Patch rejects all control characters within cookie names, values, and parameters.
  • CVE-2026-0865: User-controlled header names and values containing newlines can allow injecting HTTP headers.
  • CVE-2026-1299: The email module, specifically the "BytesGenerator" class, didn’t properly quote newlines for email headers when serializing an email message allowing for header injection when an email is serialized. This is only applicable if using "LiteralHeader" writing headers that don't respect email folding rules, the new behavior will reject the incorrectly folded headers in "BytesGenerator".
  • CVE-2025-11468: When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.
  • CVE-2025-12781: When passing data to the b64decode(), standard_b64decode(), and urlsafe_b64decode() functions in the "base64" module the characters "+/" will always be accepted, regardless of the value of "altchars" parameter, typically used to establish an "alternative base64 alphabet" such as the URL safe alphabet. This behavior matches what is recommended in earlier base64 RFCs, but newer RFCs now recommend either dropping characters outside the specified base64 alphabet or raising an error. The old behavior has the possibility of causing data integrity issues. This behavior can only be insecure if your application uses an alternate base64 alphabet (without "+/"). If your application does not use the "altchars" parameter or the urlsafe_b64decode() function, then your application does not use an alternative base64 alphabet. The attached patches DOES NOT make the base64-decode behavior raise an error, as this would be a change in behavior and break existing programs. Instead, the patch deprecates the behavior which will be replaced with the newly recommended behavior in a future version of Python. Users are recommended to mitigate by verifying user-controlled inputs match the base64 alphabet they are expecting or verify that their application would not be affected if the b64decode() functions accepted "+" or "/" outside of altchars.
  • CVE-2025-15282: User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.
  • CVE-2025-15366: The imaplib module, when passed a user-controlled command, can have additional commands injected using newlines. Mitigation rejects commands containing control characters.
  • CVE-2025-15367: The poplib module, when passed a user-controlled command, can have additional commands injected using newlines. Mitigation rejects commands containing control characters.
7 issues left for the package maintainer to handle:
  • CVE-2025-6069: (needs triaging) The html.parser.HTMLParser class had worse-case quadratic complexity when processing certain crafted malformed inputs potentially leading to amplified denial-of-service.
  • CVE-2025-6075: (needs triaging) If the value passed to os.path.expandvars() is user-controlled a performance degradation is possible when expanding environment variables.
  • CVE-2025-8194: (needs triaging) There is a defect in the CPython “tarfile” module affecting the “TarFile” extraction and entry enumeration APIs. The tar implementation would process tar archives with negative offsets without error, resulting in an infinite loop and deadlock during the parsing of maliciously crafted tar archives. This vulnerability can be mitigated by including the following patch after importing the “tarfile” module:  https://gist.github.com/sethmlarson/1716ac5b82b73dbcbf23ad2eff8b33e1
  • CVE-2025-8291: (needs triaging) The 'zipfile' module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the 'zipfile' module compared to other ZIP implementations. Remediation maintains this behavior, but checks that the offset specified in the ZIP64 EOCD Locator record matches the expected value.
  • CVE-2025-12084: (needs triaging) When building nested elements using xml.dom.minidom methods such as appendChild() that have a dependency on _clear_id_cache() the algorithm is quadratic. Availability can be impacted when building excessively nested documents.
  • CVE-2025-13836: (needs triaging) When reading an HTTP response from a server, if no read amount is specified, the default behavior will be to use Content-Length. This allows a malicious server to cause the client to read large amounts of data into memory, potentially causing OOM or other DoS.
  • CVE-2025-13837: (needs triaging) When loading a plist file, the plistlib module reads data in size specified by the file itself, meaning a malicious file can cause OOM and DoS issues

You can find information about how to handle these issues in the security team's documentation.

Created: 2025-05-16 Last update: 2026-01-24 07:02
8 security issues in sid high

There are 8 open security issues in sid.

8 important issues:
  • CVE-2026-0672: When using http.cookies.Morsel, user-controlled cookie values and parameters can allow injecting HTTP headers into messages. Patch rejects all control characters within cookie names, values, and parameters.
  • CVE-2026-0865: User-controlled header names and values containing newlines can allow injecting HTTP headers.
  • CVE-2026-1299: The email module, specifically the "BytesGenerator" class, didn’t properly quote newlines for email headers when serializing an email message allowing for header injection when an email is serialized. This is only applicable if using "LiteralHeader" writing headers that don't respect email folding rules, the new behavior will reject the incorrectly folded headers in "BytesGenerator".
  • CVE-2025-11468: When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.
  • CVE-2025-12781: When passing data to the b64decode(), standard_b64decode(), and urlsafe_b64decode() functions in the "base64" module the characters "+/" will always be accepted, regardless of the value of "altchars" parameter, typically used to establish an "alternative base64 alphabet" such as the URL safe alphabet. This behavior matches what is recommended in earlier base64 RFCs, but newer RFCs now recommend either dropping characters outside the specified base64 alphabet or raising an error. The old behavior has the possibility of causing data integrity issues. This behavior can only be insecure if your application uses an alternate base64 alphabet (without "+/"). If your application does not use the "altchars" parameter or the urlsafe_b64decode() function, then your application does not use an alternative base64 alphabet. The attached patches DOES NOT make the base64-decode behavior raise an error, as this would be a change in behavior and break existing programs. Instead, the patch deprecates the behavior which will be replaced with the newly recommended behavior in a future version of Python. Users are recommended to mitigate by verifying user-controlled inputs match the base64 alphabet they are expecting or verify that their application would not be affected if the b64decode() functions accepted "+" or "/" outside of altchars.
  • CVE-2025-15282: User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.
  • CVE-2025-15366: The imaplib module, when passed a user-controlled command, can have additional commands injected using newlines. Mitigation rejects commands containing control characters.
  • CVE-2025-15367: The poplib module, when passed a user-controlled command, can have additional commands injected using newlines. Mitigation rejects commands containing control characters.
Created: 2026-01-21 Last update: 2026-01-24 07:02
8 security issues in forky high

There are 8 open security issues in forky.

8 important issues:
  • CVE-2026-0672: When using http.cookies.Morsel, user-controlled cookie values and parameters can allow injecting HTTP headers into messages. Patch rejects all control characters within cookie names, values, and parameters.
  • CVE-2026-0865: User-controlled header names and values containing newlines can allow injecting HTTP headers.
  • CVE-2026-1299: The email module, specifically the "BytesGenerator" class, didn’t properly quote newlines for email headers when serializing an email message allowing for header injection when an email is serialized. This is only applicable if using "LiteralHeader" writing headers that don't respect email folding rules, the new behavior will reject the incorrectly folded headers in "BytesGenerator".
  • CVE-2025-11468: When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.
  • CVE-2025-12781: When passing data to the b64decode(), standard_b64decode(), and urlsafe_b64decode() functions in the "base64" module the characters "+/" will always be accepted, regardless of the value of "altchars" parameter, typically used to establish an "alternative base64 alphabet" such as the URL safe alphabet. This behavior matches what is recommended in earlier base64 RFCs, but newer RFCs now recommend either dropping characters outside the specified base64 alphabet or raising an error. The old behavior has the possibility of causing data integrity issues. This behavior can only be insecure if your application uses an alternate base64 alphabet (without "+/"). If your application does not use the "altchars" parameter or the urlsafe_b64decode() function, then your application does not use an alternative base64 alphabet. The attached patches DOES NOT make the base64-decode behavior raise an error, as this would be a change in behavior and break existing programs. Instead, the patch deprecates the behavior which will be replaced with the newly recommended behavior in a future version of Python. Users are recommended to mitigate by verifying user-controlled inputs match the base64 alphabet they are expecting or verify that their application would not be affected if the b64decode() functions accepted "+" or "/" outside of altchars.
  • CVE-2025-15282: User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.
  • CVE-2025-15366: The imaplib module, when passed a user-controlled command, can have additional commands injected using newlines. Mitigation rejects commands containing control characters.
  • CVE-2025-15367: The poplib module, when passed a user-controlled command, can have additional commands injected using newlines. Mitigation rejects commands containing control characters.
Created: 2026-01-21 Last update: 2026-01-24 07:02
lintian reports 6 errors and 30 warnings high
Lintian reports 6 errors and 30 warnings about this package. You should make the package lintian clean getting rid of them.
Created: 2025-10-17 Last update: 2026-01-20 18:01
AppStream hints: 1 error and 1 warning for idle-python3.13 high
AppStream found metadata issues for packages:
  • idle-python3.13: 1 error and 1 warning
You should get rid of them to provide more metadata about this software.
Created: 2024-10-08 Last update: 2024-10-08 17:00
Depends on packages which need a new maintainer normal
The packages that python3.13 depends on which need a new maintainer are:
  • db5.3 (#1055356)
    • Depends: libdb5.3t64 libdb5.3t64
  • systemtap (#1114760)
    • Build-Depends: systemtap-sdt-dev
  • db-defaults (#1055344)
    • Build-Depends: libdb-dev
Created: 2024-05-15 Last update: 2026-01-24 18:30
3 bugs tagged patch in the BTS normal
The BTS contains patches fixing 3 bugs, consider including or untagging them.
Created: 2025-04-01 Last update: 2026-01-24 18:16
Multiarch hinter reports 2 issue(s) normal
There are issues with the multiarch metadata for this package.
  • python3.13-examples could be marked Multi-Arch: foreign
  • python3.13-gdbm could be marked Multi-Arch: same
Created: 2024-05-15 Last update: 2026-01-24 16:31
Does not build reproducibly during testing normal
A package building reproducibly enables third parties to verify that the source matches the distributed binaries. It has been identified that this source package produced different results, failed to build or had other issues in a test environment. Please read about how to improve the situation!
Created: 2024-05-31 Last update: 2026-01-24 15:01
version in VCS is newer than in repository, is it time to upload? normal
vcswatch reports that this package seems to have a new changelog entry (version 3.13.11-2, distribution UNRELEASED) and new commits in its VCS. You should consider whether it's time to make an upload.

Here are the relevant commit messages:
commit d6ada690a560460e8aa42f86a5fe1f1750459e6a
Author: Stefano Rivera <stefanor@debian.org>
Date:   Sun Dec 21 11:33:57 2025 -0400

    Patch: Ensure that Element & Attr instances have the ownerDocument attribute. Closes: #1122875

commit ae4cc6f78befa39798c5f2c7b3c90ee275b086e6
Author: Stefano Rivera <stefanor@debian.org>
Date:   Mon Dec 15 11:08:02 2025 -0400

    Replace m68k patch with upstream version.

commit 07b7a329a1d4dbacd7db291c644a705bcaef34cc
Author: Stefano Rivera <stefanor@debian.org>
Date:   Fri Dec 5 14:52:28 2025 -0400

    Drop -Os from CFLAGS for sh4. Closes: #1122045
Created: 2025-12-07 Last update: 2026-01-21 23:35
10 open merge requests in Salsa normal
There are 10 open merge requests for this package on Salsa. You should consider reviewing and/or merging these merge requests.
Created: 2025-08-19 Last update: 2025-11-23 15:02
debian/patches: 10 patches to forward upstream low

Among the 27 debian patches available in version 3.13.11-1 of the package, we noticed the following issues:

  • 10 patches 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-05-15 Last update: 2025-12-07 07:31
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.3 instead of 4.7.2).
Created: 2025-12-23 Last update: 2025-12-23 20:00
news
[rss feed]
  • [2025-12-12] python3.13 3.13.11-1 MIGRATED to testing (Debian testing watch)
  • [2025-12-06] Accepted python3.13 3.13.11-1 (source) into unstable (Stefano Rivera)
  • [2025-10-22] python3.13 3.13.9-1 MIGRATED to testing (Debian testing watch)
  • [2025-10-16] Accepted python3.13 3.13.9-1 (source) into unstable (Stefano Rivera)
  • [2025-10-15] python3.13 3.13.8-1 MIGRATED to testing (Debian testing watch)
  • [2025-10-09] Accepted python3.13 3.13.8-1 (source) into unstable (Matthias Klose)
  • [2025-08-28] python3.13 3.13.7-1 MIGRATED to testing (Debian testing watch)
  • [2025-08-21] Accepted python3.13 3.13.7-1 (source) into unstable (Stefano Rivera)
  • [2025-08-18] python3.13 3.13.6-1 MIGRATED to testing (Debian testing watch)
  • [2025-08-10] Accepted python3.13 3.13.6-1 (source) into unstable (Stefano Rivera)
  • [2025-07-11] python3.13 3.13.5-2 MIGRATED to testing (Debian testing watch)
  • [2025-06-26] Accepted python3.13 3.13.5-2 (source) into unstable (Stefano Rivera)
  • [2025-06-12] Accepted python3.13 3.13.5-1 (source) into unstable (Stefano Rivera)
  • [2025-06-03] Accepted python3.13 3.13.4-1 (source) into unstable (Matthias Klose)
  • [2025-05-21] Accepted python3.13 3.13.3-4 (source) into unstable (Matthias Klose)
  • [2025-05-20] Accepted python3.13 3.13.3-3 (source) into unstable (Matthias Klose)
  • [2025-04-22] python3.13 3.13.3-2 MIGRATED to testing (Debian testing watch)
  • [2025-04-11] Accepted python3.13 3.13.3-2 (source) into unstable (Stefano Rivera)
  • [2025-04-09] Accepted python3.13 3.13.3-1 (source) into unstable (Stefano Rivera)
  • [2025-04-04] python3.13 3.13.2-3 MIGRATED to testing (Debian testing watch)
  • [2025-03-29] Accepted python3.13 3.13.2-3 (source) into unstable (Matthias Klose)
  • [2025-03-19] python3.13 3.13.2-2 MIGRATED to testing (Debian testing watch)
  • [2025-03-13] Accepted python3.13 3.13.2-2 (source) into unstable (Matthias Klose)
  • [2025-02-11] python3.13 3.13.2-1 MIGRATED to testing (Debian testing watch)
  • [2025-02-05] Accepted python3.13 3.13.2-1 (source) into unstable (Stefano Rivera)
  • [2025-01-14] python3.13 3.13.1-3 MIGRATED to testing (Debian testing watch)
  • [2025-01-03] Accepted python3.13 3.13.1-3 (source) into unstable (Matthias Klose)
  • [2024-12-14] python3.13 3.13.1-2 MIGRATED to testing (Debian testing watch)
  • [2024-12-12] Accepted python3.13 3.13.1-2 (source) into unstable (Matthias Klose)
  • [2024-12-06] python3.13 3.13.1-1 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 15 16
  • RC: 2 3
  • I&N: 10
  • M&W: 3
  • F&P: 0
  • patch: 3
links
  • lintian (6, 30)
  • buildd: logs, reproducibility, cross
  • popcon
  • browse source code
  • edit tags
  • other distros
  • security tracker
  • screenshots
  • debian patches
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 3.13.11-1
  • 4 bugs

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