CVE-2026-59251: Denial of service via exponential certificate policy tree growth in path validation
Allocation of resources without limits in Erlang/OTP publickey certificate path validation allows a remote unauthenticated attacker to cause denial of service by sending a crafted X.509 certificate chain during the TLS handshake.
During RFC 5280 policy processing in publickey:pkixpathvalidation/3, the certificate policy tree maintained by pubkeypolicytree grows without an upper bound. When a certificate chain contains M policies per certificate and K certificates, the tree grows on the order of M^K nodes because pubkeypolicytree:addleaves/2 and pubkeypolicytree:addleafsiblings/2 extend the tree per policy per certificate. A modest chain with many policies per certificate is enough to pin BEAM schedulers and exhaust the node's memory, taking down the entire VM. The attacker only needs to be able to present a certificate chain to the victim, which is the normal precondition for a TLS handshake, so exploitation succeeds against any incoming or outgoing TLS connection that validates the peer's chain (the default for SSL/TLS clients and mutual-TLS servers).
This is the same vulnerability class as OpenSSL's X509verifycert policy tree DoS.
This vulnerability is associated with program files lib/publickey/src/pubkeypolicytree.erl and program routines pubkeypolicytree:addleaves/2 and pubkeypolicytree:addleafsiblings/2.
This issue affects OTP from OTP 26.2 before OTP 29.0.4, OTP 28.5.0.4 and OTP 27.3.4.15, corresponding to publickey from 1.15 before 1.21.4, 1.20.3.4 and 1.17.1.5.
Other sources
Denial of service via exponential certificate policy tree growth in path validation
— Microsoft
Affected Software
Remediation
Patch Available
Patch Available
Event History
Frequently Asked Questions
What is the severity of CVE-2026-59251?
The severity of CVE-2026-59251 is high with a CVSS score of 8.7.
What type of attack is associated with CVE-2026-59251?
CVE-2026-59251 is associated with denial of service attacks through exponential growth in certificate policy trees.
How can I mitigate CVE-2026-59251?
Mitigation for CVE-2026-59251 involves limiting resource allocation for certificate path validation in Erlang/OTP.
What software is affected by CVE-2026-59251?
CVE-2026-59251 affects the Erlang/OTP public_key module.
What does CVE-2026-59251 exploit during the TLS handshake?
CVE-2026-59251 exploits crafted X.509 certificate chains during the TLS handshake.