CVE-2026-5447
Published: 09 April 2026
Summary
CVE-2026-5447 is a medium-severity Heap-based Buffer Overflow (CWE-122) vulnerability. Its CVSS base score is 6.3 (Medium).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 12.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-5447 is a heap buffer overflow vulnerability in the wolfSSL library, specifically within the CertFromX509 function. The issue arises from incorrect size handling of the AuthorityKeyIdentifier extension during internal conversion of X.509 certificates, classified under CWE-122.
An attacker capable of supplying a malicious X.509 certificate to an application using the affected wolfSSL component can trigger the heap buffer overflow during certificate processing.
The wolfSSL project has released a fix for this vulnerability via pull request #10112 on GitHub, which corrects the size handling of the AuthorityKeyIdentifier extension. Security practitioners should apply this patch to mitigate the issue.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-21183
Vulnerability details
Heap buffer overflow in CertFromX509 via AuthorityKeyIdentifier size confusion. A heap buffer overflow occurs when converting an X.509 certificate internally due to incorrect size handling of the AuthorityKeyIdentifier extension.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Heap buffer overflow in X.509 cert parsing enables remote code execution via malicious certificate supply, directly facilitating exploitation against public-facing apps (T1190), client-side execution (T1203), or privilege escalation (T1068).
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly requires applying the vendor patch that corrects AuthorityKeyIdentifier size handling in CertFromX509.
Enforces validation of certificate extension lengths before internal X.509 conversion, blocking the malformed input that triggers the heap overflow.
Requires memory-protection mechanisms that can prevent or contain exploitation of the resulting heap buffer overflow.