Skip to main content

wolfSSL CVE-2026-12340

| EUVDEUVD-2026-39547 MEDIUM
Out-of-bounds Read (CWE-125)
2026-06-25 wolfSSL GHSA-q349-x427-xg3w
6.3
CVSS 4.0 · Vendor: wolfSSL
Share

Severity by source

Vendor (wolfSSL) PRIMARY
6.3 MEDIUM
CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
vuln.today AI
3.7 LOW

Network-reachable but requires non-default SM2 compile flag (AC:H); impact limited to availability crash; no confidentiality or integrity impact confirmed.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L
4.0 AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N

Primary rating from Vendor (wolfSSL).

CVSS VectorVendor: wolfSSL

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
X

Lifecycle Timeline

2
Source Code Evidence Fetched
Jun 25, 2026 - 20:25 vuln.today
Analysis Generated
Jun 25, 2026 - 20:25 vuln.today

DescriptionCVE.org

Out-of-bounds heap read during SM2/SM3 certificate signature verification. When parsing a certificate with an SM3wSM2 signature, the Subject Key Identifier computation reads the trailing 65 bytes of the public key without checking that the key is at least that long. A public key shorter than 65 bytes results in an out-of-bounds heap read, leading to a potential crash (denial of service); there is no out-of-bounds write. Note this only affects builds with SM2 support (--enable-sm2 or --enable-all).

AnalysisAI

Out-of-bounds heap read in wolfSSL's SM2/SM3 certificate parser exposes applications to remote denial of service when processing malformed certificates. During Subject Key Identifier computation in SM3wSM2 certificate verification, the library unconditionally reads 65 bytes from the public key field without first validating that the key is at least that long - a crafted certificate with a sub-65-byte public key triggers a heap over-read, crashing the process. This vulnerability is scoped exclusively to wolfSSL builds compiled with SM2 support (--enable-sm2 or --enable-all), and no public exploit or CISA KEV listing exists at time of analysis.

Technical ContextAI

wolfSSL is a lightweight embedded SSL/TLS library (CPE: cpe:2.3:a:wolfssl:wolfssl:*:*:*:*:*:*:*:*) widely used in resource-constrained and IoT environments as an OpenSSL alternative. The flaw (CWE-125: Out-of-bounds Read) resides in ParseCertRelative within wolfcrypt/src/asn.c. When computing the Subject Key Identifier (SKID) for a certificate bearing an SM3wSM2 signature algorithm (OID 1.2.156.10197.1.501), the code reads the trailing 65 bytes of the SubjectPublicKeyInfo public key body unconditionally, assuming a full uncompressed SM2 point (0x04 || 32-byte X || 32-byte Y = 65 bytes). No length check precedes this read. The fix confirmed in PR #10641 inserts if (cert->pubKeySize < 65) { return BUFFER_E; } before the read. The vulnerable path is gated at compile time by WOLFSSL_SM2 and WOLFSSL_SM3 defines, meaning only intentionally SM2-enabled builds are reachable.

RemediationAI

The upstream fix is available via GitHub PR #10641 (https://github.com/wolfSSL/wolfssl/pull/10641), which adds a pubKeySize bounds check before the 65-byte SKID heap read in wolfcrypt/src/asn.c. A specific tagged release containing this fix has not been independently confirmed from available data - monitor the wolfSSL security page at https://www.wolfssl.com/docs/security-vulnerabilities/ for a patched release version. As an immediate workaround with no cryptographic functionality loss (for deployments not requiring Chinese national cryptographic standards), recompile wolfSSL without --enable-sm2 and without --enable-all to exclude the SM2/SM3 code paths entirely; this eliminates the vulnerable code at build time with no side effects for non-SM2 use cases.

CVE-2017-13099 HIGH POC
7.5 Dec 13

wolfSSL prior to version 3.12.2 provides a weak Bleichenbacher oracle when any TLS cipher suite using RSA key exchange i

CVE-2017-2800 CRITICAL POC
9.8 May 24

A specially crafted x509 certificate can cause a single out of bounds byte overwrite in wolfSSL through 3.10.2 resulting

CVE-2015-6925 HIGH POC
7.5 Jan 22

wolfSSL (formerly CyaSSL) before 3.6.8 allows remote attackers to cause a denial of service (resource consumption or tra

CVE-2022-39173 HIGH POC
7.5 Sep 29

In wolfSSL before 5.5.1, malicious clients can cause a buffer overflow during a TLS 1.3 handshake. Rated high severity (

CVE-2022-38152 HIGH POC
7.5 Aug 31

An issue was discovered in wolfSSL before 5.5.0. Rated high severity (CVSS 7.5), this vulnerability is remotely exploita

CVE-2020-11713 HIGH POC
7.5 Apr 12

wolfSSL 4.3.0 has mulmod code in wc_ecc_mulmod_ex in ecc.c that does not properly resist timing side-channel attacks. Ra

CVE-2019-18840 HIGH POC
7.5 Nov 09

In wolfSSL 4.1.0 through 4.2.0c, there are missing sanity checks of memory accesses in parsing ASN.1 certificate data wh

CVE-2020-15309 HIGH POC
7.0 Aug 21

An issue was discovered in wolfSSL before 4.5.0, when single precision is not employed. Rated high severity (CVSS 7.0).

CVE-2020-24613 MEDIUM POC
6.8 Aug 24

wolfSSL before 4.5.0 mishandles TLS 1.3 server data in the WAIT_CERT_CR state, within SanityCheckTls13MsgReceived() in t

CVE-2015-7744 MEDIUM POC
5.9 Jan 22

wolfSSL (formerly CyaSSL) before 3.6.8 does not properly handle faults associated with the Chinese Remainder Theorem (CR

CVE-2022-38153 MEDIUM POC
5.9 Aug 31

An issue was discovered in wolfSSL before 5.5.0 (when --enable-session-ticket is used); however, only version 5.3.0 is e

CVE-2021-37155 CRITICAL
9.8 Jul 21

wolfSSL 4.6.x through 4.7.x before 4.8.0 does not produce a failure outcome when the serial number in an OCSP request di

Share

CVE-2026-12340 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy