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-42581

CVE-2026-42581: Netty HTTP Request Smuggling Vulnerability

CVE-2026-42581 is an HTTP request smuggling vulnerability in Netty that exploits HTTP/1.0 message handling with conflicting headers. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 14, 2026

CVE-2026-42581 Overview

CVE-2026-42581 is an HTTP Request Smuggling vulnerability [CWE-444] in Netty, an asynchronous, event-driven network application framework widely used in Java-based services. The flaw affects Netty versions prior to 4.2.13.Final and 4.1.133.Final. The HttpObjectDecoder strips a conflicting Content-Length header when an HTTP/1.1 request includes both Transfer-Encoding: chunked and Content-Length, but this guard is absent for HTTP/1.0 requests. Attackers exploit this inconsistency to desynchronize message boundaries between Netty and downstream proxies or handlers.

Critical Impact

An unauthenticated remote attacker can smuggle HTTP requests through HTTP/1.0 messages carrying both Transfer-Encoding: chunked and Content-Length headers, bypassing security controls at intermediary proxies.

Affected Products

  • Netty versions prior to 4.2.13.Final
  • Netty versions prior to 4.1.133.Final
  • Applications and proxies built on vulnerable Netty releases

Discovery Timeline

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

Technical Details for CVE-2026-42581

Vulnerability Analysis

Netty's HttpObjectDecoder parses incoming HTTP messages and normalizes ambiguous framing headers. For HTTP/1.1 traffic, the decoder removes a Content-Length header when Transfer-Encoding: chunked is also present, aligning with RFC 7230 guidance. This sanitization step is missing for HTTP/1.0 messages. The decoder still processes the body as chunked while passing the original Content-Length header forward in the HttpMessage object.

Downstream components that prefer Content-Length over Transfer-Encoding interpret the message body differently than Netty. The disagreement on message boundaries enables HTTP Request Smuggling, allowing an attacker to inject a second request that the downstream parser treats as independent traffic.

Root Cause

The root cause is an incomplete input validation routine in HttpObjectDecoder. The conflict-resolution logic that strips Content-Length when both framing headers are present is gated on the HTTP/1.1 version check. HTTP/1.0 messages bypass this branch, leaving the conflicting header pair intact in the parsed message forwarded to handlers and proxies.

Attack Vector

An attacker sends an HTTP/1.0 request to a Netty-backed endpoint or proxy with both Transfer-Encoding: chunked and Content-Length headers set to incompatible values. Netty decodes the body using chunked semantics, while a downstream proxy or backend trusting Content-Length reads a different byte range as the body. The remaining bytes are interpreted as a new, smuggled request. Attackers leverage this primitive to bypass access controls, poison web caches, or hijack adjacent sessions.

No verified public exploit code is available. See the Netty GitHub Security Advisory for technical details.

Detection Methods for CVE-2026-42581

Indicators of Compromise

  • HTTP/1.0 requests containing both Transfer-Encoding: chunked and Content-Length headers in the same message
  • Unexpected secondary requests appearing in backend logs without corresponding front-end proxy log entries
  • Mismatched byte counts between proxy access logs and Netty application logs for the same connection

Detection Strategies

  • Inspect HTTP traffic at WAF or reverse proxy layers for HTTP/1.0 messages that include both framing headers and reject or normalize them before they reach Netty.
  • Correlate request counts and body sizes across front-end load balancers and Netty backends to surface desynchronization events.
  • Run dependency scans across Java codebases and container images to identify Netty versions below 4.2.13.Final and 4.1.133.Final.

Monitoring Recommendations

  • Enable verbose HTTP framing logs on Netty pipelines and forward them to a centralized analytics platform for anomaly review.
  • Alert on any HTTP/1.0 traffic in production environments where only HTTP/1.1 or HTTP/2 is expected.
  • Track outbound responses that do not map to a logged inbound request as a smuggling indicator.

How to Mitigate CVE-2026-42581

Immediate Actions Required

  • Upgrade Netty to 4.2.13.Final or 4.1.133.Final across all services, libraries, and container images.
  • Audit the dependency tree for transitive Netty inclusions in frameworks such as Spring WebFlux, Vert.x, gRPC-Java, and Apache Cassandra clients.
  • Configure upstream proxies to reject HTTP/1.0 requests that carry both Transfer-Encoding and Content-Length headers.

Patch Information

The Netty maintainers fixed this vulnerability in versions 4.2.13.Final and 4.1.133.Final. The patch extends the conflicting-header sanitization logic in HttpObjectDecoder to cover HTTP/1.0 messages, ensuring that Content-Length is stripped whenever Transfer-Encoding: chunked is also present. Patch details are published in the Netty GitHub Security Advisory GHSA-xxqh-mfjm-7mv9.

Workarounds

  • Disable HTTP/1.0 support at front-end load balancers or API gateways when application requirements allow.
  • Deploy a WAF rule that drops requests containing both Transfer-Encoding: chunked and Content-Length headers regardless of HTTP version.
  • Terminate HTTP at a hardened reverse proxy that normalizes framing headers before forwarding traffic to Netty backends.
bash
# Example WAF rule snippet to block conflicting framing headers
SecRule REQUEST_HEADERS:Transfer-Encoding "@contains chunked" \
  "id:1042581,phase:1,deny,status:400,\
   chain,msg:'Block HTTP smuggling: conflicting framing headers'"
  SecRule REQUEST_HEADERS:Content-Length "@rx ^[0-9]+$"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechNetty

  • SeverityMEDIUM

  • CVSS Score5.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-444
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42585: Netty Request Smuggling Vulnerability

  • CVE-2026-42579: Netty DNS Codec Vulnerability

  • CVE-2026-42578: Netty HTTP Header Injection Vulnerability

  • CVE-2026-41417: Netty HTTP Request Smuggling Vulnerability
Default Legacy - Prefooter | 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