Debian Package Tracker
Register | Log in
Subscribe

libdate-manip-perl

module for manipulating dates

Choose email to subscribe with

general
  • source: libdate-manip-perl (main)
  • version: 6.99-2
  • maintainer: Debian Perl Group (archive) (DMD) (LowNMU)
  • uploaders: Damyan Ivanov [DMD] – gregor herrmann [DMD] – Xavier Guimard [DMD]
  • arch: all
  • std-ver: 4.7.4
  • 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.83-1
  • oldstable: 6.91-1
  • stable: 6.98-1
  • testing: 6.99-1
  • unstable: 6.99-2
versioned links
  • 6.83-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.91-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.98-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.99-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 6.99-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • libdate-manip-perl
action needed
2 security issues in forky high

There are 2 open security issues in forky.

2 important issues:
  • CVE-2026-60074: Date::Manip versions through 6.99 for Perl return corrupted dates via non-ASCII decimal digits that pass the numeric range tests in check. The parse regexes capture year, month and day with the `\d` shorthand, which on a character string matches the whole Unicode decimal digit property `\p{Nd}` and not just `[0-9]`. Date::Manip::Base::check then validates the captured fields with numeric comparisons alone (`$y<1 || $y>9999`, `$m<1 || $m>12`, `$d<1 || $d>$days`), and _parse_check stores the numified fields (`$y+0`). Perl truncates a string at the first character that is not an ASCII digit, so a field whose leading characters are ASCII digits numifies to an in-range prefix and satisfies every test: a year field of three ASCII digits followed by U+0664 ARABIC-INDIC DIGIT FOUR numifies to 202, giving the year 0202, and one non-ASCII digit in the month or day field shifts those fields the same way. The hour, minute and second fields match explicit ASCII character classes (`0?[0-9]`, `[0-5][0-9]`) and do not shift, though a non-ASCII digit in a fractional hour or minute field truncates the fraction. Any caller that passes an untrusted character string to ParseDate() or Date::Manip::Date->parse() can get back a date that differs from the string it parsed, with no parse error. Where the parsed date gates logic such as an expiry check or a retention window, the shift goes unnoticed.
  • CVE-2026-60075: Date::Manip versions through 6.99 for Perl allow CPU exhaustion via quadratic backtracking in the unanchored time substitution in _parse_time. _parse_time removes a time from anywhere in the string with the unanchored substitution `s/$timerx/ /`, where $timerx is an auto-generated alternation of time patterns reached through a leading `(?:$atrx|^|\s+)`. The engine therefore retries the match at every position of an interior whitespace run: at each start position the leading `\s+` consumes the rest of the run greedily, the time alternation fails because the run holds no digits, and the engine backtracks a space at a time across the run before advancing the start position, which is quadratic in the length of the run. No time need be present in the string for this to happen, only a long run of whitespace, and the parse time rises about fourfold for each doubling of the run: a few kilobytes of whitespace costs seconds of CPU per parse and tens of kilobytes costs minutes. Any caller that passes an untrusted string of unbounded length to ParseDate(), Date::Manip::Date->parse() or ->parse_time() can be made to spend unbounded CPU in a single parse, a denial of service.
Created: 2026-07-30 Last update: 2026-08-02 20:32
2 low-priority security issues in trixie low

There are 2 open security issues in trixie.

2 issues left for the package maintainer to handle:
  • CVE-2026-60074: (needs triaging) Date::Manip versions through 6.99 for Perl return corrupted dates via non-ASCII decimal digits that pass the numeric range tests in check. The parse regexes capture year, month and day with the `\d` shorthand, which on a character string matches the whole Unicode decimal digit property `\p{Nd}` and not just `[0-9]`. Date::Manip::Base::check then validates the captured fields with numeric comparisons alone (`$y<1 || $y>9999`, `$m<1 || $m>12`, `$d<1 || $d>$days`), and _parse_check stores the numified fields (`$y+0`). Perl truncates a string at the first character that is not an ASCII digit, so a field whose leading characters are ASCII digits numifies to an in-range prefix and satisfies every test: a year field of three ASCII digits followed by U+0664 ARABIC-INDIC DIGIT FOUR numifies to 202, giving the year 0202, and one non-ASCII digit in the month or day field shifts those fields the same way. The hour, minute and second fields match explicit ASCII character classes (`0?[0-9]`, `[0-5][0-9]`) and do not shift, though a non-ASCII digit in a fractional hour or minute field truncates the fraction. Any caller that passes an untrusted character string to ParseDate() or Date::Manip::Date->parse() can get back a date that differs from the string it parsed, with no parse error. Where the parsed date gates logic such as an expiry check or a retention window, the shift goes unnoticed.
  • CVE-2026-60075: (needs triaging) Date::Manip versions through 6.99 for Perl allow CPU exhaustion via quadratic backtracking in the unanchored time substitution in _parse_time. _parse_time removes a time from anywhere in the string with the unanchored substitution `s/$timerx/ /`, where $timerx is an auto-generated alternation of time patterns reached through a leading `(?:$atrx|^|\s+)`. The engine therefore retries the match at every position of an interior whitespace run: at each start position the leading `\s+` consumes the rest of the run greedily, the time alternation fails because the run holds no digits, and the engine backtracks a space at a time across the run before advancing the start position, which is quadratic in the length of the run. No time need be present in the string for this to happen, only a long run of whitespace, and the parse time rises about fourfold for each doubling of the run: a few kilobytes of whitespace costs seconds of CPU per parse and tens of kilobytes costs minutes. Any caller that passes an untrusted string of unbounded length to ParseDate(), Date::Manip::Date->parse() or ->parse_time() can be made to spend unbounded CPU in a single parse, a denial of service.

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

Created: 2026-07-30 Last update: 2026-08-02 20:32
debian/patches: 2 patches to forward upstream low

Among the 2 debian patches available in version 6.99-2 of the package, we noticed the following issues:

  • 2 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: 2026-07-31 Last update: 2026-07-31 09:30
testing migrations
  • excuses:
    • Migration status for libdate-manip-perl (6.99-1 to 6.99-2): BLOCKED: Rejected/violates migration policy/introduces a regression
    • Issues preventing migration:
    • ∙ ∙ Autopkgtest for libdate-manip-perl/6.99-2: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, loong64: Pass, ppc64el: Pass, riscv64: Pass, s390x: Pass
    • ∙ ∙ Autopkgtest for nagios-plugins-contrib/48.20250420+nmu1: amd64: Failed (not a regression) ♻ (reference ♻), arm64: Failed (not a regression) ♻ (reference ♻), armhf: Failed (not a regression) ♻ (reference ♻), i386: Failed (not a regression) ♻ (reference ♻), loong64: Regression ♻ (reference ♻), ppc64el: Failed (not a regression) ♻ (reference ♻), riscv64: Failed (not a regression) ♻ (reference ♻), s390x: Failed (not a regression) ♻ (reference ♻)
    • ∙ ∙ Too young, only 3 of 5 days old
    • Additional info (not blocking):
    • ∙ ∙ Piuparts tested OK - https://piuparts.debian.org/sid/source/libd/libdate-manip-perl.html
    • ∙ ∙ Reproduced on amd64 - info
    • ∙ ∙ Reproduced on arm64 - info
    • ∙ ∙ Reproduced on armhf - info
    • ∙ ∙ Reproduced on i386 - info
    • Not considered
news
[rss feed]
  • [2026-07-30] Accepted libdate-manip-perl 6.99-2 (source) into unstable (gregor herrmann)
  • [2026-03-13] libdate-manip-perl 6.99-1 MIGRATED to testing (Debian testing watch)
  • [2026-03-09] Accepted libdate-manip-perl 6.99-1 (source) into unstable (gregor herrmann)
  • [2025-06-28] libdate-manip-perl 6.98-1 MIGRATED to testing (Debian testing watch)
  • [2025-06-08] Accepted libdate-manip-perl 6.98-1 (source) into unstable (gregor herrmann)
  • [2025-03-13] libdate-manip-perl 6.97-1 MIGRATED to testing (Debian testing watch)
  • [2025-03-08] Accepted libdate-manip-perl 6.97-1 (source) into unstable (gregor herrmann)
  • [2024-12-10] libdate-manip-perl 6.96-1 MIGRATED to testing (Debian testing watch)
  • [2024-12-08] Accepted libdate-manip-perl 6.96-1 (source) into unstable (gregor herrmann)
  • [2024-03-06] libdate-manip-perl 6.95-1 MIGRATED to testing (Debian testing watch)
  • [2024-03-02] Accepted libdate-manip-perl 6.95-1 (source) into unstable (gregor herrmann)
  • [2024-01-23] libdate-manip-perl 6.94-1 MIGRATED to testing (Debian testing watch)
  • [2024-01-20] Accepted libdate-manip-perl 6.94-1 (source) into unstable (gregor herrmann)
  • [2023-12-04] libdate-manip-perl 6.93-1 MIGRATED to testing (Debian testing watch)
  • [2023-12-02] Accepted libdate-manip-perl 6.93-1 (source) into unstable (gregor herrmann)
  • [2023-06-27] libdate-manip-perl 6.92-1 MIGRATED to testing (Debian testing watch)
  • [2023-06-25] Accepted libdate-manip-perl 6.92-1 (source) into unstable (gregor herrmann)
  • [2023-03-11] libdate-manip-perl 6.91-1 MIGRATED to testing (Debian testing watch)
  • [2023-03-05] Accepted libdate-manip-perl 6.91-1 (source) into unstable (gregor herrmann)
  • [2022-12-06] libdate-manip-perl 6.90-1 MIGRATED to testing (Debian testing watch)
  • [2022-12-03] Accepted libdate-manip-perl 6.90-1 (source) into unstable (gregor herrmann)
  • [2022-09-19] libdate-manip-perl 6.89-1 MIGRATED to testing (Debian testing watch)
  • [2022-09-06] Accepted libdate-manip-perl 6.89-1 (source) into unstable (gregor herrmann)
  • [2022-06-08] libdate-manip-perl 6.88-1 MIGRATED to testing (Debian testing watch)
  • [2022-06-04] Accepted libdate-manip-perl 6.88-1 (source) into unstable (gregor herrmann)
  • [2021-11-23] libdate-manip-perl 6.86-1 MIGRATED to testing (Debian testing watch)
  • [2021-11-20] Accepted libdate-manip-perl 6.86-1 (source) into unstable (gregor herrmann)
  • [2021-08-16] libdate-manip-perl 6.85-1 MIGRATED to testing (Debian testing watch)
  • [2021-03-04] Accepted libdate-manip-perl 6.85-1 (source) into unstable (gregor herrmann)
  • [2020-12-05] libdate-manip-perl 6.83-1 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 0
links
  • homepage
  • lintian
  • buildd: logs, reproducibility
  • popcon
  • browse source code
  • other distros
  • security tracker
  • debian patches
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 6.99-2

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