SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-73193

CRITICAL · CVSS 9.8 EPSS 0.48% 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 on 32-bit systems due to an integer wraparound in the output buffer size calculation during the preparse function. This vulnerability allows an attacker to exploit the flaw by passing an excessively long untrusted statement, leading to potential arbitrary code execution or data corruption. Organizations using 32-bit Perl builds with DBI should prioritize patching this vulnerability to mitigate the risk of exploitation.

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-73193
Severity
CRITICAL
CVSS
9.8
EPSS
0.48%

Original NVD Description

DBI versions before 1.652 for Perl allow a heap out-of-bounds write on 32-bit perl via an integer wraparound in the output buffer size computed by preparse. preparse reserves its output buffer with `newSV(strlen(statement) * 7 + 16)`, budgeting seven output bytes per input byte for the longest ':p99999' expansion. The product is computed in STRLEN, which is 32 bits wide on a 32-bit perl build, so a statement of 613,566,757 bytes multiplies to 4,294,967,299, wraps modulo 2^32 to 3, and reserves 19 bytes. The parser then copies the statement out through a raw pointer with no capacity check, writing the whole 585 MB input past the end of the allocation. The 99,999 placeholder limit does not bound this path, which is reached by ordinary non-placeholder content. Any caller that passes an untrusted statement of that length to preparse on a 32-bit perl gets a heap out-of-bounds write of attacker controlled bytes. Builds with a 64-bit STRLEN are not affected, since the wrap there needs a statement of about 2.3 exabytes.