AUGUST 14, 2026
Live Feed
Back to database
Case File

CVE-2026-19487

MEDIUM · CVSS 5.3 EPSS 0.43% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-13 · Last synced 2026-08-14

CyberRota Analysis

AI-Generated

Perl versions prior to 5.41.9 are vulnerable to incorrect regular expression match results due to a flaw in the Aho-Corasick prescan mechanism, which can lead to missed matches or incorrect matches. This vulnerability can result in erroneous access or filtering decisions based on the faulty regex evaluations. Developers and organizations utilizing affected Perl versions should prioritize addressing this issue to ensure the integrity of their applications that rely on regular expression processing.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-19487
Severity
MEDIUM
CVSS
5.3
EPSS
0.43%

Original NVD 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.