SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-73194

CRITICAL · CVSS 9.1 EPSS 0.49% Public Exploit

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

CyberRota Analysis

AI-Generated

DBI versions prior to 1.652 for Perl are vulnerable to a heap out-of-bounds write due to an unvalidated numeric placeholder that improperly sets the binder counter during preparse operations. This flaw allows attackers to exploit untrusted input, potentially leading to memory corruption and application instability. Organizations using affected DBI versions should prioritize patching to mitigate the risk of exploitation, especially those handling untrusted SQL statements.

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-73194
Severity
CRITICAL
CVSS
9.1
EPSS
0.49%

Original NVD Description

DBI versions before 1.652 for Perl allow a heap out-of-bounds write via an unvalidated numeric placeholder that sets the binder counter in preparse. preparse reserves seven output bytes per input byte, the width of the longest ':p99999' expansion. The ':N' branch parses the number with `atoi(src)` and assigns it to the binder counter with no range check, so a statement containing ':2147483648' leaves the counter negative (-2147483648 with glibc, where atoi wraps). Each following '?' then expands through `sprintf(start, ":p%d", idx++)` to ':p-2147483648', 14 bytes with the terminating NUL where the buffer budgets 7. The placeholder limit added in 1.650 tests the counter against 99,999, which a negative counter passes. Any caller that preparses an untrusted statement into ':pN' style placeholders gets a heap out-of-bounds write that grows with the number of '?' marks following the poisoned placeholder. The '?' and '%s' return styles compare the parsed number against the expected sequence and error out, and are unaffected.