CVE-2026-60074
Last modified
CVE-2026-60074 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. 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`). EPSS estimates a 0.19% chance of exploitation in the next 30 days.
Description
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.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| SBECK | Date::Manip | <= 6.99 |
References
Timeline
- Published
- Last Modified
- Status
- Deferred
Frequently Asked Questions
What is CVE-2026-60074?
How severe is CVE-2026-60074?
How do I fix CVE-2026-60074?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-60060Improper Handling of Length Parameter Inconsistency (CWE-130…6.3
- CVE-2026-60062The NGINX Agent config_dirs directive allows a low-privilege…6.4
- CVE-2026-60063An out-of-bounds write vulnerability in the Productivity Sui…7.3
- CVE-2026-60065When NGINX Plus is configured to use the Message Queuing Tel…5.3
- CVE-2026-6007A vulnerability was found in itsourcecode Construction Manag…6.3
- CVE-2026-60073An out-of-bounds read in the Productivity Suite allows a phy…5.9
- CVE-2026-60075Date::Manip versions through 6.99 for Perl allow CPU exhaust…7.5
- CVE-2026-6008Authorization bypass through User-Controlled key vulnerabili…6.8
- CVE-2026-60080Use After Free vulnerability in the Rust deserialization log…7.3
- CVE-2026-60081DBI::ProfileData versions before 1.651 for Perl do not limit…7.5
- CVE-2026-60082DBI versions before 1.651 for Perl do not enforce statement …9.1
- CVE-2026-60085PraisonAI before 4.6.78 contains an unenforced security poli…8.7
Are you affected by CVE-2026-60074?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
