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-2022-41915

CVE-2022-41915: Netty HTTP Response Splitting Vulnerability

CVE-2022-41915 is an HTTP Response Splitting vulnerability in Netty framework affecting versions 4.1.83.Final to 4.1.85.Final. This flaw allows malicious header values to split HTTP responses. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 18, 2026

CVE-2022-41915 Overview

CVE-2022-41915 is an HTTP Response Splitting vulnerability in the Netty project, an event-driven asynchronous network application framework. The flaw exists in versions 4.1.83.Final through 4.1.85.Final, where calling DefaultHttpHeaders.set with an iterator of values bypasses header value validation. This allows attackers to inject malicious header values that can manipulate HTTP responses, potentially leading to cache poisoning, session hijacking, or cross-site scripting attacks.

Critical Impact

Attackers can exploit this vulnerability to perform HTTP Response Splitting attacks, enabling injection of arbitrary HTTP headers and potentially compromising application security through cache poisoning or XSS attacks.

Affected Products

  • Netty versions 4.1.83.Final to 4.1.85.Final
  • Debian Linux 10.0
  • Debian Linux 11.0

Discovery Timeline

  • 2022-12-13 - CVE-2022-41915 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-41915

Vulnerability Analysis

The vulnerability resides in Netty's DefaultHttpHeaders class, specifically within the set(CharSequence, Iterator<?>) method. When header values are provided via an iterator, the framework fails to validate each value before adding it to the headers collection. This validation gap allows malicious input containing carriage return (CR) and line feed (LF) characters to pass through unchecked.

HTTP Response Splitting exploits occur when an attacker can inject CRLF sequences into HTTP headers. These sequences act as header delimiters, allowing the attacker to terminate the current header prematurely and inject additional headers or even an entirely new HTTP response body. The vulnerability is classified under CWE-113 (Improper Neutralization of CRLF Sequences in HTTP Headers) and CWE-436 (Interpretation Conflict).

Root Cause

The root cause lies in the inconsistent application of input validation within the DefaultHeaders.java class. While other methods properly validate header values through the validateValue() function, the iterator-based set() method directly called add0() without first validating the converted value. This oversight created a bypass where malicious values could circumvent the framework's security controls.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication. An attacker who can control HTTP header values passed through an iterator to DefaultHttpHeaders.set() can inject CRLF sequences to split HTTP responses. This attack vector enables various secondary attacks including:

  • Cache Poisoning: Injecting malicious content into web caches
  • Session Hijacking: Setting arbitrary cookies or session tokens
  • Cross-Site Scripting: Injecting script content through response manipulation
  • Redirect Attacks: Forcing redirects to malicious sites

The security patch adds proper validation by calling validateValue() before adding header values:

java
             if (v == null) {
                 break;
             }
-            add0(h, i, name, fromObject(name, v));
+            V converted = fromObject(name, v);
+            validateValue(valueValidator, name, converted);
+            add0(h, i, name, converted);
         }
 
         return thisT();

Source: GitHub Commit Details

Detection Methods for CVE-2022-41915

Indicators of Compromise

  • HTTP requests or responses containing unexpected CRLF sequences (%0d%0a or \r\n) in header values
  • Abnormal HTTP response structures with injected headers or duplicate response bodies
  • Log entries showing malformed HTTP headers being processed by Netty-based applications
  • Cache entries with unexpected content that differs from origin server responses

Detection Strategies

  • Monitor application logs for HTTP parsing errors or malformed header exceptions
  • Implement Web Application Firewall (WAF) rules to detect CRLF injection attempts in HTTP headers
  • Review code for usage patterns of DefaultHttpHeaders.set() with iterator parameters
  • Scan dependencies using software composition analysis tools to identify vulnerable Netty versions

Monitoring Recommendations

  • Enable detailed HTTP logging on reverse proxies and load balancers to capture header anomalies
  • Configure intrusion detection systems to alert on CRLF patterns in HTTP traffic
  • Monitor cache hit ratios for unexpected variations that could indicate poisoning attempts
  • Review application behavior for signs of session manipulation or unauthorized redirects

How to Mitigate CVE-2022-41915

Immediate Actions Required

  • Upgrade Netty to version 4.1.86.Final or later immediately
  • Audit application code for usage of DefaultHttpHeaders.set(CharSequence, Iterator<?>) method
  • Implement input validation at the application layer for any user-controlled data that becomes HTTP headers
  • Review downstream systems and caches for potential poisoning from prior exploitation

Patch Information

The vulnerability has been patched in Netty version 4.1.86.Final. The fix ensures that all header values, including those provided via iterators, are validated through the validateValue() function before being added to the headers collection. Detailed patch information is available in the GitHub Security Advisory and the GitHub Pull Request.

For Debian Linux users, security updates are available through DSA-5316 and the Debian LTS announcement.

Workarounds

  • Replace DefaultHttpHeaders.set(CharSequence, Iterator<?>) calls with a combination of remove() followed by add() in a loop
  • Implement custom validation to strip or reject header values containing CR/LF characters before passing to Netty
  • Deploy a reverse proxy or WAF in front of affected applications to filter malicious header values
bash
# Verify Netty version in Maven projects
mvn dependency:tree | grep netty

# Update Netty dependency in pom.xml to patched version
# Change: <version>4.1.83.Final</version>
# To: <version>4.1.86.Final</version>

# For Gradle projects, check dependencies
./gradlew dependencies | grep 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.52%

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

  • CWE-436
  • Technical References
  • GitHub Issue Discussion

  • Debian LTS Announcement

  • NetApp Security Advisory

  • Debian Security Advisory
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Pull Request Review

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33870: Netty HTTP Request Smuggling Vulnerability

  • CVE-2025-58056: Netty Request Smuggling 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