Description
Perl versions from 5.9.4 before 5.41.9 produce incorrect regular expression match results when a stale failure flag ends the Aho-Corasick prescan early in S_find_byclass.

The prescan walks the subject for positions where the full pattern could match, and the engine tries it from the leftmost one recorded. A failing transition sets the failed flag, and a later successful transition does not clear it, so the prescan reads the stale flag as a failure and stops before it can record a candidate that starts earlier. It takes a subject where one candidate is recorded and a later character then forces a fallback through a fail link that succeeds.

Example:

"ABCDE" =~ m/ABCF|BCDE|C/; # matches C at offset 2, not BCDE
"ABCDE" =~ m/ABCF|BCDE|C(G)/; # no match, BCDE missed

An alternation like this can miss input it should match, or match it on the wrong branch, so an access or filtering decision made from the result can be wrong.
Published: 2026-08-13
Score: 5.3 Medium
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The flaw in Perl’s regex engine occurs when a stale failure flag in the Aho‑Corasick prescan prematurely terminates the scan, causing valid matches to be missed or wrong alternatives to be taken. This logic error can lead to access control bypasses or incorrect input filtering when applications rely on regular‑expression matches to make decisions. The weakness is classified as CWE‑670.

Affected Systems

Perl interpreters from version 5.9.4 up through 5.41.8 are affected. The issue is fixed in Perl 5.42.0 and later, or can be remedied by applying the upstream patch supplied by the Perl project.

Risk and Exploitability

The vulnerability does not provide code execution or remote access. It can be exploited only by supplying crafted input to a regex routine in an affected Perl application. The EPSS score is not available, and the vulnerability is not listed in the CISA KEV catalog. The CVSS score is 5.3, indicating a moderate level of severity. Consequently, the risk is limited to logic errors in input validation or filtering performed by legacy Perl code evident only when vulnerable regex patterns are evaluated.

Generated by OpenCVE AI on August 13, 2026 at 19:44 UTC.

Remediation

Vendor Solution

Upgrade to Perl 5.42.0 or later, or apply the upstream patch.


OpenCVE Recommended Actions

  • Upgrade the Perl runtime to version 5.42.0 or later, ensuring all components use the updated interpreter.
  • If upgrading is not immediately possible, apply the upstream patch available from the Perl source repository to the current Perl installation.
  • Perform regression testing or a targeted code review of regex patterns that perform access or filtering decisions to confirm that match results are now correct, and adjust patterns if necessary.

Generated by OpenCVE AI on August 13, 2026 at 19:44 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 13 Aug 2026 19:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'yes', 'Exploitation': 'poc', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Thu, 13 Aug 2026 18:30:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 5.3, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L'}


Thu, 13 Aug 2026 18:15:00 +0000

Type Values Removed Values Added
First Time appeared Perl
Perl perl
Vendors & Products Perl
Perl perl

Thu, 13 Aug 2026 16:00:00 +0000

Type Values Removed Values Added
Description Perl versions from 5.9.4 before 5.41.9 produce incorrect regular expression match results when a stale failure flag ends the Aho-Corasick prescan early in S_find_byclass. The prescan walks the subject for positions where the full pattern could match, and the engine tries it from the leftmost one recorded. A failing transition sets the failed flag, and a later successful transition does not clear it, so the prescan reads the stale flag as a failure and stops before it can record a candidate that starts earlier. It takes a subject where one candidate is recorded and a later character then forces a fallback through a fail link that succeeds. Example: "ABCDE" =~ m/ABCF|BCDE|C/; # matches C at offset 2, not BCDE "ABCDE" =~ m/ABCF|BCDE|C(G)/; # no match, BCDE missed An alternation like this can miss input it should match, or match it on the wrong branch, so an access or filtering decision made from the result can be wrong.
Title Perl versions from 5.9.4 before 5.41.9 produce incorrect regular expression match results when a stale failure flag ends the Aho-Corasick prescan early in S_find_byclass
Weaknesses CWE-670
References

cve-icon MITRE

Status: PUBLISHED

Assigner: CPANSec

Published:

Updated: 2026-08-13T20:12:11.045Z

Reserved: 2026-08-10T16:35:50.763Z

Link: CVE-2026-19487

cve-icon Vulnrichment

Updated: 2026-08-13T17:46:59.130Z

cve-icon NVD

Status : Received

Published: 2026-08-13T16:17:59.440

Modified: 2026-08-13T18:17:24.750

Link: CVE-2026-19487

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T19:45:17Z

Weaknesses
  • CWE-670

    Always-Incorrect Control Flow Implementation