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-2025-58056

CVE-2025-58056: Netty Request Smuggling Vulnerability

CVE-2025-58056 is a request smuggling flaw in Netty that allows attackers to exploit HTTP parsing discrepancies with reverse proxies. This article covers technical details, affected versions, impact, and mitigation.

Published: March 11, 2026

CVE-2025-58056 Overview

CVE-2025-58056 is an HTTP Request Smuggling vulnerability affecting Netty, the popular asynchronous event-driven network application framework used for developing high-performance protocol servers and clients. The vulnerability exists in how Netty processes chunked transfer encoding, where it incorrectly accepts standalone line feed (LF) characters as chunk-size line terminators instead of requiring the proper carriage return line feed (CRLF) sequence as mandated by HTTP/1.1 standards defined in RFC 9112.

When deployed behind reverse proxies that interpret LF characters differently—treating them as part of the chunk extension rather than as terminators—attackers can craft malicious HTTP requests that are parsed as a single request by the proxy but processed as two separate requests by Netty. This parsing discrepancy enables HTTP request smuggling attacks, potentially allowing attackers to bypass security controls, access unauthorized resources, or poison web caches.

Critical Impact

Attackers can exploit parsing inconsistencies between reverse proxies and Netty to smuggle malicious HTTP requests, potentially bypassing security controls, hijacking user sessions, or performing cache poisoning attacks.

Affected Products

  • Netty version 4.1.124.Final
  • Netty versions 4.2.0.Alpha3 through 4.2.4.Final

Discovery Timeline

  • September 3, 2025 - CVE-2025-58056 published to NVD
  • September 8, 2025 - Last updated in NVD database

Technical Details for CVE-2025-58056

Vulnerability Analysis

This vulnerability is classified as CWE-444 (Inconsistent Interpretation of HTTP Requests), commonly known as HTTP Request Smuggling. The flaw arises from Netty's non-compliant parsing of chunked transfer encoding in HTTP/1.1 requests.

According to RFC 9112, chunk-size lines in chunked transfer encoding must be terminated with CRLF (\r\n). However, vulnerable versions of Netty accept a standalone LF (\n) as a valid terminator, regardless of whether it is preceded by a CR (\r). This lenient parsing behavior creates an exploitable inconsistency when Netty operates behind reverse proxies that strictly follow HTTP standards or interpret these characters differently.

The attack surface exists in network-accessible deployments where Netty-based applications receive HTTP traffic through intermediate proxies, load balancers, or web application firewalls that handle chunked encoding parsing differently.

Root Cause

The root cause is improper input validation in Netty's HTTP codec when parsing chunk-size lines in chunked transfer encoding. The code fails to enforce the HTTP/1.1 specification requirement that chunk-size lines must terminate with the CRLF sequence (\r\n). By accepting a bare LF character as a valid line terminator, Netty deviates from the standard behavior expected by other HTTP implementations, creating the parsing discrepancy that enables request smuggling.

Attack Vector

The attack is network-based and requires the attacker to send specially crafted HTTP requests to a target system where Netty operates behind a reverse proxy with different chunk parsing behavior. The attacker constructs a request where:

  1. The reverse proxy interprets the LF as part of the chunk extension, seeing one complete request
  2. Netty interprets the LF as a line terminator, parsing the payload as two separate requests
  3. The "smuggled" second request is processed by Netty with the security context of the legitimate first request

This parsing differential allows attackers to inject arbitrary HTTP requests that bypass proxy-level security controls. The attack does not require authentication or user interaction, though it does require specific proxy-backend configurations to be exploitable.

Detailed technical analysis of this chunked encoding parsing vulnerability class is available in the W4KE Blog on Funky Chunks and the GitHub Security Advisory.

Detection Methods for CVE-2025-58056

Indicators of Compromise

  • HTTP requests containing unusual chunk-size line formats with standalone LF terminators without preceding CR characters
  • Anomalous HTTP request patterns where backend servers log different requests than what appeared in proxy logs
  • Evidence of cache poisoning or session hijacking attempts
  • Discrepancies between proxy access logs and application-level request logs indicating potential request smuggling

Detection Strategies

  • Implement deep packet inspection rules to flag HTTP requests with non-standard chunked encoding line terminators
  • Deploy web application firewalls configured to detect request smuggling patterns and chunk encoding anomalies
  • Monitor for discrepancies between frontend proxy and backend server request counts that may indicate smuggled requests
  • Use application-level logging to correlate HTTP requests across proxy and backend layers

Monitoring Recommendations

  • Enable detailed access logging on both reverse proxies and Netty-based applications to facilitate correlation analysis
  • Implement alerting on unusual HTTP request patterns, particularly those involving chunked transfer encoding
  • Monitor for signs of cache poisoning such as unexpected cache entries or user complaints about incorrect content
  • Review security logs for evidence of unauthorized access or privilege escalation that could result from successful smuggling attacks

How to Mitigate CVE-2025-58056

Immediate Actions Required

  • Upgrade Netty to version 4.1.125.Final or 4.2.5.Final immediately to address the vulnerability
  • Audit your infrastructure to identify all applications using affected Netty versions
  • Review proxy and load balancer configurations to understand potential exposure
  • Implement additional request validation at the application layer as defense in depth

Patch Information

Netty has released patched versions that enforce strict CRLF terminator requirements in chunked transfer encoding parsing:

  • Version 4.1.125.Final - For users on the 4.1.x branch
  • Version 4.2.5.Final - For users on the 4.2.x branch

The fix is available in commit edb55fd8e0a3bcbd85881e423464f585183d1284, implemented via Pull Request #15611.

Organizations should prioritize this update for any Netty deployments accessible from untrusted networks or operating behind reverse proxies.

Workarounds

  • Configure reverse proxies to normalize chunked encoding before forwarding requests to Netty backends
  • Implement strict HTTP request validation at the proxy layer to reject requests with non-standard line terminators
  • Deploy web application firewall rules to detect and block HTTP request smuggling attempts
  • Consider temporarily disabling chunked transfer encoding support if operationally feasible until patches can be applied
bash
# Example: Check Netty version in Maven projects
grep -r "netty" pom.xml | grep -E "version|artifactId"

# Update Netty dependency to patched version in pom.xml
# Change version from 4.1.124.Final to 4.1.125.Final
# Or change version from 4.2.x to 4.2.5.Final

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechNetty

  • SeverityLOW

  • CVSS Score2.9

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityNone
  • CWE References
  • CWE-444
  • Technical References
  • IETF RFC 9112 Section

  • GitHub unCVEed Issue

  • GitHub Netty Issue

  • W4KE Blog on Funky Chunks
  • Vendor Resources
  • GitHub Netty Commit

  • GitHub Netty Pull Request

  • GitHub Security Advisory GHSA-fghv-69vj-qj49
  • Related CVEs
  • CVE-2026-33870: Netty HTTP Request Smuggling Vulnerability

  • CVE-2022-41915: Netty HTTP Response Splitting Vulnerability

  • CVE-2021-21409: Netty HTTP/2 Request Smuggling Vulnerability

  • CVE-2021-21295: Netty HTTP/2 Request Smuggling 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