{
  "document": {
    "aggregate_severity": {
      "text": "Important"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "TuxCare License Agreement",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "legal_disclaimer",
        "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Cloud Linux Inc. and provide a link to the original.",
        "title": "Terms of Use"
      },
      {
        "category": "details",
        "text": "CVE-2026-60075: reject a date or time string longer than 256 characters\n  before any parsing regex runs. The unanchored time substitution in\n  _parse_time backtracks quadratically across an interior whitespace run,\n  so a long string of spaces caused CPU exhaustion without containing any\n  time at all.\n- Drop the test suite invocation and its perl(Test::Inter) and\n  perl(Test::More) build requirements. perl-Test-Inter is not shipped in any AlmaLinux 9.2\n  repository, so the dependency could not be resolved in the 9.2 buildroot\n  and the binary build failed before the build stage. The test suite is not\n  part of the shipped package.",
        "title": "Details"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://tuxcare.com/contact/",
      "name": "TuxCare",
      "namespace": "https://tuxcare.com/"
    },
    "references": [
      {
        "category": "self",
        "summary": "https://cve.tuxcare.com/els/releases/CLSA-2026:1788262245",
        "url": "https://cve.tuxcare.com/els/releases/CLSA-2026:1788262245"
      },
      {
        "category": "self",
        "summary": "Canonical URL",
        "url": "https://security.tuxcare.com/csaf/v2/els_os/almalinux9.2esu/advisories/2026/clsa-2026_1788262245.json"
      }
    ],
    "tracking": {
      "current_release_date": "2026-09-01T11:31:18Z",
      "generator": {
        "date": "2026-09-01T11:31:18Z",
        "engine": {
          "name": "pyCSAF"
        }
      },
      "id": "CLSA-2026:1788262245",
      "initial_release_date": "2026-09-01T11:31:18Z",
      "revision_history": [
        {
          "date": "2026-09-01T11:31:18Z",
          "number": "1",
          "summary": "Initial version"
        }
      ],
      "status": "final",
      "version": "1"
    },
    "title": "perl-Date-Manip: Fix of CVE-2026-60075"
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_name",
                "name": "AlmaLinux 9.2",
                "product": {
                  "name": "AlmaLinux 9.2",
                  "product_id": "AlmaLinux-9.2",
                  "product_identification_helper": {
                    "cpe": "cpe:2.3:o:almalinux:almalinux:9.2:*:*:*:*:*:*:*"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "AlmaLinux"
          }
        ],
        "category": "vendor",
        "name": "AlmaLinux OS Foundation"
      },
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_version",
                "name": "perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch",
                "product": {
                  "name": "perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch",
                  "product_id": "perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/tuxcare/perl-Date-Manip@6.85-3.el9_2.tuxcare.els1?arch=noarch"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "noarch"
          }
        ],
        "category": "vendor",
        "name": "TuxCare"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch as a component of AlmaLinux 9.2",
          "product_id": "AlmaLinux-9.2:perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch"
        },
        "product_reference": "perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch",
        "relates_to_product_reference": "AlmaLinux-9.2"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2026-60075",
      "cwe": {
        "id": "CWE-1333",
        "name": "Inefficient Regular Expression Complexity"
      },
      "notes": [
        {
          "category": "description",
          "text": "Date::Manip versions through 6.99 for Perl allow CPU exhaustion via quadratic backtracking in the unanchored time substitution in _parse_time.\n\n_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.\n\nAny 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.",
          "title": "Vulnerability description"
        }
      ],
      "product_status": {
        "fixed": [
          "AlmaLinux-9.2:perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://cve.tuxcare.com/els/cve/CVE-2026-60075"
        },
        {
          "category": "external",
          "summary": "https://github.com/SBECK-github/Date-Manip/pull/55",
          "url": "https://github.com/SBECK-github/Date-Manip/pull/55"
        },
        {
          "category": "external",
          "summary": "https://metacpan.org/release/SBECK/Date-Manip-6.99/source/lib/Date/Manip/Date.pm#L1526",
          "url": "https://metacpan.org/release/SBECK/Date-Manip-6.99/source/lib/Date/Manip/Date.pm#L1526"
        },
        {
          "category": "external",
          "summary": "https://metacpan.org/release/SBECK/Date-Manip-6.99/source/lib/Date/Manip/Date.pm#L1811",
          "url": "https://metacpan.org/release/SBECK/Date-Manip-6.99/source/lib/Date/Manip/Date.pm#L1811"
        },
        {
          "category": "external",
          "summary": "https://security.metacpan.org/patches/D/Date-Manip/6.99/CVE-2026-60075-r1.patch",
          "url": "https://security.metacpan.org/patches/D/Date-Manip/6.99/CVE-2026-60075-r1.patch"
        },
        {
          "category": "external",
          "summary": "http://www.openwall.com/lists/oss-security/2026/07/30/20",
          "url": "http://www.openwall.com/lists/oss-security/2026/07/30/20"
        }
      ],
      "release_date": "2026-07-30T14:17:00Z",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-09-01T11:30:47.608079Z",
          "details": "Details on how to apply the fix are available at: https://cve.tuxcare.com/els/releases/CLSA-2026:1788262245",
          "product_ids": [
            "AlmaLinux-9.2:perl-Date-Manip-0:6.85-3.el9_2.tuxcare.els1.noarch"
          ],
          "url": "https://cve.tuxcare.com/els/releases/CLSA-2026:1788262245"
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ]
    }
  ]
}