SEPTEMBER 15, 2026
Live Feed
Back to database
Case File

CVE-2026-82435

CRITICAL · CVSS 9.8

Source: NVD + CISA KEV + EPSS · Published 2026-09-14 · Last synced 2026-09-15

CyberRota Analysis

AI-Generated

Apache's worker's Netty message decoder is vulnerable due to its placement before SASL authentication handlers, allowing unauthenticated peers to exploit this by sending large frames, potentially leading to significant resource allocation and denial of service. This critical vulnerability, with a CVSS score of 9.8, necessitates immediate attention from organizations using Apache Storm, particularly those with exposed worker slot ports. Users are advised to upgrade to version 3.1.0 or restrict access to worker ports and enable authentication to mitigate risks.

CVE
CVE-2026-82435
Severity
CRITICAL
CVSS
9.8
EPSS
N/A
Apache

Original NVD Description

Description The worker's Netty message decoder is installed ahead of the SASL authentication handlers in the pipeline and acts on frames before any authentication has taken place. It allocated buffers sized from a length field carried in the frame, so a single frame from an unauthenticated peer able to reach a worker slot port could drive a large allocation. `storm.messaging.netty.authentication` defaults to false, and the decoder runs before the handler that enforces it in any case, so no credentials are required. The attacker needs only TCP reachability to a worker port. The effect of a single frame at the default 768 MB worker heap has not been measured to distinguish sustained worker loss from transient garbage-collection pressure. The severity assigned to this advisory reflects the more conservative reading; consumers who require a precise figure should test against their own worker heap configuration. Mitigation Upgrade to 3.1.0, where frames are decoded only after the handshake completes. Users who cannot upgrade immediately should ensure that worker slot ports are reachable only from within the cluster, as the security model already recommends, and should enable `storm.messaging.netty.authentication` where the deployment permits it. Credit The ASF -- found using Claude agents to study the security of open-source projects, validated and reported by Apache Storm.