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
    • 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-33871

CVE-2026-33871: Netty HTTP/2 DoS Vulnerability

CVE-2026-33871 is a Denial of Service flaw in Netty HTTP/2 server allowing attackers to flood CONTINUATION frames and cause excessive CPU consumption. This post covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33871 Overview

Netty, an asynchronous, event-driven network application framework, contains a Denial of Service vulnerability in its HTTP/2 implementation. In versions prior to 4.1.132.Final and 4.2.10.Final, a remote attacker can trigger a Denial of Service (DoS) against a Netty HTTP/2 server by sending a flood of CONTINUATION frames. The server's lack of a limit on the number of CONTINUATION frames, combined with a bypass of existing size-based mitigations using zero-byte frames, allows an attacker to cause excessive CPU consumption with minimal bandwidth, rendering the server unresponsive.

Critical Impact

Remote attackers can render Netty HTTP/2 servers completely unresponsive with minimal bandwidth, causing severe service disruption through CPU exhaustion.

Affected Products

  • Netty versions prior to 4.1.132.Final
  • Netty versions prior to 4.2.10.Final
  • Applications and services built on vulnerable Netty HTTP/2 implementations

Discovery Timeline

  • 2026-03-27 - CVE-2026-33871 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-33871

Vulnerability Analysis

This vulnerability (CWE-770: Allocation of Resources Without Limits or Throttling) exploits a fundamental weakness in how Netty handles HTTP/2 CONTINUATION frames. HTTP/2 uses CONTINUATION frames to allow header blocks that exceed the maximum frame size to be split across multiple frames. The Netty implementation failed to impose adequate limits on the number of CONTINUATION frames that could be sent in sequence.

The attack is particularly effective because it bypasses existing size-based mitigations. By sending zero-byte CONTINUATION frames, attackers can circumvent protections designed to limit the total size of header data. This allows the attack to consume significant CPU resources while requiring minimal bandwidth from the attacker, making it an asymmetric attack vector ideal for resource exhaustion.

Root Cause

The root cause is the absence of proper frame count limits in the Netty HTTP/2 codec. While Netty implemented size-based restrictions to prevent memory exhaustion from large header blocks, the implementation did not account for the computational overhead of processing numerous small or zero-byte CONTINUATION frames. Each frame must still be parsed, validated, and processed, consuming CPU cycles regardless of payload size. This oversight creates a resource exhaustion vulnerability classified as CWE-770.

Attack Vector

The attack is network-based and requires no authentication or user interaction, making it accessible to any remote attacker who can establish an HTTP/2 connection to the target server. The attacker initiates a standard HTTP/2 connection, then sends a header frame followed by a flood of CONTINUATION frames with zero-byte or minimal payloads. The server's HTTP/2 codec attempts to process each frame, accumulating CPU overhead that eventually exhausts processing capacity.

The use of zero-byte frames is key to the attack's efficiency—the attacker consumes minimal upload bandwidth while forcing the server to perform frame processing operations repeatedly. This asymmetric resource consumption ratio makes the attack highly effective even from low-bandwidth connections.

Detection Methods for CVE-2026-33871

Indicators of Compromise

  • Unusual volume of HTTP/2 CONTINUATION frames from single source IPs
  • Elevated CPU utilization on HTTP/2 servers without corresponding increase in legitimate traffic
  • HTTP/2 connections with abnormally high frame counts relative to data transferred
  • Server unresponsiveness or timeout errors coinciding with HTTP/2 traffic spikes

Detection Strategies

  • Monitor HTTP/2 frame statistics at the load balancer or application level for anomalous CONTINUATION frame patterns
  • Implement rate limiting on HTTP/2 connections with excessive frame-to-data ratios
  • Deploy network intrusion detection rules that alert on high volumes of small HTTP/2 frames
  • Enable verbose logging on HTTP/2 endpoints to capture frame-level statistics during suspected attacks

Monitoring Recommendations

  • Configure alerting thresholds for CPU utilization on Netty-based HTTP/2 servers
  • Implement connection-level metrics tracking frame counts per stream
  • Monitor for clients sending disproportionate numbers of CONTINUATION frames relative to actual header data
  • Review HTTP/2 connection patterns for sources establishing connections but not completing normal request/response cycles

How to Mitigate CVE-2026-33871

Immediate Actions Required

  • Upgrade Netty to version 4.1.132.Final or 4.2.10.Final immediately
  • Audit all applications and services using Netty for HTTP/2 functionality
  • Deploy network-level rate limiting on HTTP/2 traffic as a temporary protective measure
  • Consider temporarily disabling HTTP/2 support on critical services until patches can be applied

Patch Information

Netty has addressed this vulnerability in versions 4.1.132.Final and 4.2.10.Final. The fix implements proper limits on the number of CONTINUATION frames that can be processed, preventing the resource exhaustion attack. Organizations should prioritize upgrading to these patched versions.

For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy or load balancer that can filter or rate-limit HTTP/2 CONTINUATION frames before they reach vulnerable Netty servers
  • Implement connection-level rate limiting based on frame count to mitigate attack impact
  • Temporarily downgrade to HTTP/1.1 on critical services if HTTP/2-specific features are not essential
  • Configure firewall rules to limit connection rates from individual source IPs
bash
# Example: Nginx rate limiting configuration for HTTP/2 connections
# Add to nginx.conf or server block to limit connections per IP

limit_conn_zone $binary_remote_addr zone=http2_conn:10m;
limit_req_zone $binary_remote_addr zone=http2_req:10m rate=100r/s;

server {
    listen 443 ssl http2;
    
    # Limit concurrent connections per IP
    limit_conn http2_conn 50;
    
    # Limit request rate per IP
    limit_req zone=http2_req burst=200 nodelay;
    
    # Additional HTTP/2 hardening
    http2_max_concurrent_streams 128;
    http2_recv_timeout 30s;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNetty

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-55163: Netty HTTP/2 MadeYouReset DoS Vulnerability

  • CVE-2024-29025: Netty HttpPostRequestDecoder DoS Flaw

  • CVE-2025-58057: Netty BrotliDecoder DoS Vulnerability

  • CVE-2025-24970: Netty Framework Native Crash DoS Flaw
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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