Cyber Resilience

CVE-2026-7383

HighUpdated

Published: 09 June 2026

Published
09 June 2026
Modified
17 June 2026
KEV Added
Patch
CVSS Score v3.1 8.1 CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0036 27.8th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-7383 is a high-severity Out-of-bounds Write (CWE-787) vulnerability in Openssl Openssl. Its CVSS base score is 8.1 (High).

Operationally, ranked at the 27.8th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and SI-2 (Flaw Remediation).

Deeper analysis

CVE-2026-7383 is a signed integer overflow vulnerability in OpenSSL's ASN1_mbstring_ncopy() and ASN1_mbstring_copy() functions. The flaw occurs when computing the destination buffer size for Unicode output formats such as BMPSTRING, UNIVERSALSTRING, or UTF8STRING, where left shifts or per-character byte summations on large inputs cause the signed int calculation to wrap, resulting in an undersized heap allocation via OPENSSL_malloc() followed by an out-of-bounds write during character copying. The affected code lies outside the FIPS module boundary in versions 4.0, 3.6, 3.5, 3.4, and 3.0.

An attacker can trigger the heap buffer overflow only by supplying roughly half a gigabyte or more of attacker-controlled input directly to ASN1_mbstring_copy(), ASN1_mbstring_ncopy(), or a custom string type registered via ASN1_STRING_TABLE_add(). Standard X.509 certificate processing paths, including ASN1_STRING_set_by_NID() and DIRSTRING_TYPE handling, impose length limits that prevent the overflow, and no network protocol or certificate-handling code in OpenSSL exercises the vulnerable path. Successful exploitation could produce a crash or attacker-controlled code execution, though the issue received a Low severity rating because of these constraints.

Publicly referenced commits in the OpenSSL repository provide the corrective patches that address the integer overflow during buffer sizing. The FIPS modules remain unaffected. The current EPSS score of 0.0007 indicates minimal observed exploitation interest.

EU & UK References

Vulnerability details

Issue summary: A signed integer overflow when sizing the destination buffer for Unicode output in ASN1_mbstring_ncopy() can lead to a heap buffer overflow. Impact summary: A heap buffer overflow may lead to a crash or possibly attacker controlled code execution…

more

or other undefined behaviour. In ASN1_mbstring_copy() and ASN1_mbstring_ncopy() the destination size for Unicode output is computed in a signed int: by left shift of the input character count for BMPSTRING (UTF-16) and UNIVERSALSTRING (UTF-32), and by summing per-character byte counts for UTF8STRING. The calculation overflows when the input reaches around 2^30 characters. In the worst case (UNIVERSALSTRING at 2^30 characters) the size wraps to zero, OPENSSL_malloc(1) is called, and the subsequent character copy writes several gigabytes past the one-byte allocation. X.509 certificate processing routes through ASN1_STRING_set_by_NID(), whose DIRSTRING_TYPE mask excludes UNIVERSALSTRING and whose per-NID size limits cap the input length; no network protocol or certificate-handling path in OpenSSL exercises the overflow. Triggering the bug requires an application that calls ASN1_mbstring_copy() or ASN1_mbstring_ncopy() directly, or registers a custom string type via ASN1_STRING_TABLE_add(), with attacker-controlled input on the order of half a gigabyte or more. For these reasons this issue was assigned Low severity. The FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by this issue, as the affected code is outside the OpenSSL FIPS module boundary.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

Insufficient information to map techniques.
Confidence: LOW · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2022-2274Same product: Openssl Openssl
CVE-2022-3602Same product: Openssl Openssl
CVE-2021-37563Shared CWE-787
CVE-2023-0182Shared CWE-787
CVE-2021-36417Shared CWE-787
CVE-2022-32045Shared CWE-787
CVE-2022-40961Shared CWE-787
CVE-2022-40657Shared CWE-787
CVE-2023-31906Shared CWE-787
CVE-2022-32052Shared CWE-787

Affected Assets

openssl
openssl
4.0.0 · 1.0.2 — 1.0.2zq · 1.1.1 — 1.1.1zh · 3.0.0 — 3.0.21

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires applying the published OpenSSL patches that correct the signed integer overflow in ASN1_mbstring_ncopy() and ASN1_mbstring_copy() before the vulnerable code can be reached.

prevent

Enforces validation of input length and character-set parameters supplied to ASN1_mbstring_* functions, blocking the ~2^30-character inputs required to trigger the size-calculation wrap.

prevent

Provides memory-protection mechanisms that can detect or block the subsequent out-of-bounds write after OPENSSL_malloc receives the wrapped (zero) allocation size.

References