The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-42582

CVE-2026-42582: Netty Buffer Overflow Vulnerability

CVE-2026-42582 is a buffer overflow flaw in Netty's QPACK decoder that allows unverified memory allocation during header decoding. This post covers the technical details, affected versions, and mitigation steps.

Published: May 14, 2026

CVE-2026-42582 Overview

CVE-2026-42582 affects Netty, an asynchronous event-driven network application framework widely deployed in Java-based servers and clients. The vulnerability resides in the HTTP/3 QPACK decoder and allows a remote attacker to trigger uncontrolled memory allocation by sending a crafted compressed header block. The flaw, classified as [CWE-770] Allocation of Resources Without Limits or Throttling, can exhaust JVM heap memory and cause denial of service. All versions prior to 4.2.13.Final are affected, and the issue is fixed in 4.2.13.Final.

Critical Impact

Remote unauthenticated attackers can trigger heap exhaustion in any Netty-based HTTP/3 endpoint, causing service-wide denial of service without any prerequisites.

Affected Products

  • Netty framework versions prior to 4.2.13.Final
  • Applications using io.netty.handler.codec.http3.QpackDecoder
  • Java services exposing HTTP/3 endpoints built on Netty

Discovery Timeline

  • 2026-05-13 - CVE-2026-42582 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42582

Vulnerability Analysis

The vulnerability exists in the non-Huffman branch of io.netty.handler.codec.http3.QpackDecoder#decodeHuffmanEncodedLiteral. When decoding a string literal in a QPACK header block, the decoder reads a length prefix from the wire and immediately allocates a byte array of that size using new byte[length]. The allocation occurs before the decoder verifies that length bytes are actually present in the compressed field section.

QPACK is the header compression format used by HTTP/3, equivalent to HPACK in HTTP/2. The wire format uses prefixed integers, which allow very large numeric values to be expressed in only a few bytes. An attacker exploits this asymmetry to request a multi-gigabyte buffer using a small payload.

Root Cause

The decoder fails to enforce the invariant length <= in.readableBytes() before allocating the destination buffer. This missing bounds check turns an attacker-controlled wire value into a direct heap allocation request, satisfying the conditions for [CWE-770].

Attack Vector

An unauthenticated remote attacker sends a malformed HTTP/3 request containing a QPACK header block. The block declares a literal string with an inflated length prefix while supplying only a few bytes of actual data. The decoder calls new byte[length], and the JVM attempts to allocate the requested region. Repeated requests, or a single request with a sufficiently large length, exhaust the heap and produce OutOfMemoryError, halting request processing across the affected process.

No verified public proof-of-concept code is available. See the GitHub Security Advisory GHSA-2c5c-chwr-9hqw for upstream details.

Detection Methods for CVE-2026-42582

Indicators of Compromise

  • Repeated java.lang.OutOfMemoryError: Java heap space events originating from Netty HTTP/3 codec threads
  • Spikes in JVM old-generation heap usage correlated with inbound HTTP/3 traffic
  • Abnormally large QPACK literal length fields observed in HTTP/3 packet captures

Detection Strategies

  • Inspect HTTP/3 traffic for QPACK literal length prefixes that exceed the size of the enclosing QUIC stream frame
  • Monitor stack traces containing io.netty.handler.codec.http3.QpackDecoder.decodeHuffmanEncodedLiteral in heap dumps or crash logs
  • Correlate sudden process restarts of Netty-based services with inbound connections from a single source

Monitoring Recommendations

  • Enable JVM heap and GC telemetry on all services exposing HTTP/3 listeners
  • Alert on OutOfMemoryError exceptions and Netty channel exception events in application logs
  • Track Netty dependency versions across build manifests to identify hosts running versions earlier than 4.2.13.Final

How to Mitigate CVE-2026-42582

Immediate Actions Required

  • Upgrade Netty to 4.2.13.Final or later in all production and pre-production environments
  • Inventory all Java services and transitive dependencies that pull in netty-codec-http3
  • Restart affected JVM processes after upgrading to ensure the patched classes are loaded

Patch Information

The issue is fixed in Netty 4.2.13.Final. The patched decoder validates that the declared literal length does not exceed the number of readable bytes in the input buffer before allocating the destination array. Upgrade guidance is available in the GitHub Security Advisory GHSA-2c5c-chwr-9hqw.

Workarounds

  • Disable HTTP/3 listeners on Netty-based services until the upgrade is applied
  • Place an HTTP/3-aware reverse proxy in front of Netty endpoints to enforce maximum header block sizes
  • Restrict exposure of HTTP/3 ports to trusted networks while patching is in progress

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechNetty

  • SeverityHIGH

  • CVSS Score7.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42580: Netty Buffer Overflow Vulnerability

  • CVE-2026-44248: Netty MQTT Decoder DoS Vulnerability

  • CVE-2026-42587: Netty Decompression DoS Vulnerability

  • CVE-2026-42586: Netty Redis Codec RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English