Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-67735

CVE-2025-67735: Netty CRLF Injection Vulnerability

CVE-2025-67735 is a CRLF injection flaw in Netty's HttpRequestEncoder that enables HTTP request smuggling attacks. This article covers the technical details, affected versions prior to 4.1.129.Final and 4.2.8.Final, and mitigation.

Published: April 15, 2026

CVE-2025-67735 Overview

CVE-2025-67735 is an HTTP Request Smuggling vulnerability in Netty, an asynchronous, event-driven network application framework widely used for building high-performance network applications. The vulnerability exists in the io.netty.handler.codec.http.HttpRequestEncoder component, which fails to properly sanitize request URIs, allowing attackers to inject CRLF (Carriage Return Line Feed) sequences. This injection leads to HTTP request smuggling attacks when applications use HttpRequestEncoder without implementing additional URI sanitization.

Critical Impact

Attackers can exploit this CRLF injection vulnerability to perform HTTP request smuggling attacks, potentially bypassing security controls, poisoning web caches, hijacking user sessions, or accessing unauthorized resources on backend systems.

Affected Products

  • Netty versions prior to 4.1.129.Final
  • Netty versions prior to 4.2.8.Final
  • Any application or framework using HttpRequestEncoder without proper URI sanitization

Discovery Timeline

  • 2025-12-16 - CVE CVE-2025-67735 published to NVD
  • 2026-01-02 - Last updated in NVD database

Technical Details for CVE-2025-67735

Vulnerability Analysis

This vulnerability is classified as CWE-93 (Improper Neutralization of CRLF Sequences). The root issue lies in how Netty's HttpRequestEncoder constructs HTTP requests without adequately validating or encoding the request URI. When a malicious URI containing CRLF characters (\r\n) is passed to the encoder, these characters are not sanitized and are included verbatim in the outgoing HTTP request.

HTTP request smuggling occurs because different HTTP processors (such as frontend proxies and backend servers) may interpret the injected CRLF sequences differently. An attacker can craft a URI that, when processed, causes the HTTP message boundaries to be misinterpreted, effectively "smuggling" a second request within the first. This can be exploited over the network without authentication.

Root Cause

The HttpRequestEncoder class does not perform adequate input validation on the request URI before constructing the HTTP request line. CRLF characters in the URI are not escaped or rejected, allowing attackers to inject arbitrary HTTP headers or even complete HTTP requests into the encoded output.

Attack Vector

The attack is executed over the network by providing a crafted URI containing CRLF sequences to any application using Netty's HttpRequestEncoder. When the encoder constructs the HTTP request, the injected CRLF characters terminate the request line prematurely and begin injecting attacker-controlled content. This can include additional headers, a new request body, or an entirely separate HTTP request.

The vulnerability enables various attack scenarios including cache poisoning, session hijacking, web application firewall bypass, and unauthorized access to backend resources. Since Netty is a foundational library used by many Java applications and frameworks, the attack surface is broad.

Detection Methods for CVE-2025-67735

Indicators of Compromise

  • Unusual HTTP requests containing CRLF sequences (%0d%0a, \r\n) in URI paths or parameters
  • Web server logs showing malformed or duplicate HTTP requests from single connections
  • Unexpected backend responses or cache behavior inconsistencies
  • Application logs indicating request parsing errors or protocol violations

Detection Strategies

  • Deploy web application firewalls (WAF) with rules to detect and block CRLF injection attempts in HTTP requests
  • Implement HTTP request validation at ingress points to identify malformed URIs containing control characters
  • Monitor for anomalies in HTTP traffic patterns that may indicate request smuggling attempts
  • Utilize SentinelOne Singularity Platform to detect suspicious network activity and exploitation attempts targeting Netty-based applications

Monitoring Recommendations

  • Enable detailed HTTP access logging on all web servers and reverse proxies to capture full request URIs
  • Implement alerting for HTTP protocol violations or parsing errors at the infrastructure level
  • Monitor for desynchronization between frontend and backend request counts which may indicate successful smuggling
  • Review application dependencies to identify Netty usage and prioritize patching accordingly

How to Mitigate CVE-2025-67735

Immediate Actions Required

  • Upgrade Netty to version 4.1.129.Final or 4.2.8.Final or later immediately
  • Identify all applications and services using vulnerable Netty versions in your environment
  • Implement URI validation and sanitization at the application level as a defense-in-depth measure
  • Deploy WAF rules to block requests containing CRLF sequences in URIs pending patch deployment

Patch Information

The Netty project has released fixed versions that address this CRLF injection vulnerability. Version 4.1.129.Final fixes the issue for the 4.1.x branch, while version 4.2.8.Final fixes it for the 4.2.x branch. Organizations should update their Netty dependencies to these versions or later. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Implement application-level URI validation to reject or encode CRLF characters before passing URIs to HttpRequestEncoder
  • Deploy reverse proxy configurations that normalize and validate URIs before forwarding to backend Netty applications
  • Use allowlist-based URI validation to restrict URIs to known-safe character sets
  • Consider implementing request smuggling detection at the infrastructure level until patches can be applied
bash
# Example Maven dependency update to patched version
# Update pom.xml Netty dependency to fixed version:
# <dependency>
#   <groupId>io.netty</groupId>
#   <artifactId>netty-all</artifactId>
#   <version>4.1.129.Final</version>
# </dependency>

# Verify current Netty version in your project
mvn dependency:tree | grep netty

# Update to patched version
mvn versions:use-latest-versions -Dincludes=io.netty

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 Score6.5

  • EPSS Probability0.03%

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

  • CVE-2025-58056: Netty Request Smuggling Vulnerability

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

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