Skip to main content

Threats Tagged 'cve-2026-59251'

View all threats tagged with 'cve-2026-59251'. Filter and sort to focus on specific types of threats.

Pro Console Lifetime

Stop chasing alerts. Route them.

Start free, then upgrade once to turn Radar into an automated delivery engine for your security stack.

Custom feeds / Automations: email, Slack, webhooks, SIEM/MISP / API access (baseline limits)

View Plans & Pricing

API access activates after upgrading in Console -> Billing.

Breach by OffSeqOFFSEQFRIENDS — 25% OFF

Check if your credentials are on the dark web

Instant breach scanning across billions of leaked records. Free tier available.

Scan now

Filter Threats

Narrow down the results by type, severity, or affected countries

Search threats by title, CVE ID, or description. Maximum 100 characters.
Active filters (1):Tag: cve-2026-59251

Threats Tagged 'cve-2026-59251'

Click on any threat for detailed analysis and mitigation recommendations

This update includes the following RPMs: erlang27: * erlang27-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-asn1-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-common_test-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-compiler-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-crypto-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-debugger-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-dialyzer-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-diameter-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-edoc-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-eldap-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-erl_interface-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-erts-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-et-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-eunit-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-examples-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-ftp-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-gdb-tools-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-inets-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-jinterface-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-kernel-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-megaco-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-mnesia-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-observer-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-odbc-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-os_mon-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-parsetools-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-public_key-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-reltool-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-runtime_tools-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-sasl-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-snmp-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-ssh-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-ssl-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-stdlib-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-syntax_tools-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-tftp-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-tools-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-wx-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-xmerl-27.3.4.15-0.1.hum1 (aarch64, x86_64) * erlang27-27.3.4.15-0.1.hum1.src (src)

Join the discussion

A resource allocation vulnerability in Erlang/OTP public_key certificate path validation allows a remote unauthenticated attacker to cause a denial of service by sending a specially crafted X.509 certificate chain during the TLS handshake. The certificate policy tree grows exponentially with the number of policies and certificates, exhausting memory and CPU resources, potentially taking down the entire Erlang VM. This affects OTP versions from 26.2 before 29.0.4, 28.5.0.4, and 27.3.4.15, corresponding to certain public_key versions.

Join the discussion

Allocation of resources without limits in Erlang/OTP public_key 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 public_key:pkix_path_validation/3, the certificate policy tree maintained by pubkey_policy_tree 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 pubkey_policy_tree:add_leaves/2 and pubkey_policy_tree:add_leaf_siblings/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 X509_verify_cert policy tree DoS. This vulnerability is associated with program files lib/public_key/src/pubkey_policy_tree.erl and program routines pubkey_policy_tree:add_leaves/2 and pubkey_policy_tree:add_leaf_siblings/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 public_key from 1.15 before 1.21.4, 1.20.3.4 and 1.17.1.5.

Join the discussion

Showing 1 to 3 of 3 results

Filters:Tag: cve-2026-59251
Page 1 of 1
OffSeq TrainingCredly Certified

Lead Pen Test Professional

Technical5-day eLearningPECB Accredited
View courses