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-2026-2332

CVE-2026-2332: Eclipse Jetty HTTP Smuggling Vulnerability

CVE-2026-2332 is an HTTP request smuggling flaw in Eclipse Jetty's HTTP/1.1 parser using funky chunks techniques. Attackers exploit improper chunk extension parsing to inject smuggled requests. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 17, 2026

CVE-2026-2332 Overview

CVE-2026-2332 is an HTTP Request Smuggling vulnerability in Eclipse Jetty's HTTP/1.1 parser. The vulnerability exists in how Jetty handles chunk extensions in chunked transfer encoding, specifically when parsing quoted strings. Jetty incorrectly terminates chunk extension parsing at \r\n characters inside quoted strings instead of treating this as a parsing error. This behavior allows attackers to exploit "funky chunks" techniques to inject smuggled HTTP requests.

Critical Impact

Attackers can exploit this vulnerability to bypass security controls, hijack user sessions, poison web caches, or perform cross-site scripting attacks by smuggling malicious HTTP requests through Jetty-based applications.

Affected Products

  • Eclipse Jetty (HTTP/1.1 implementations using chunked transfer encoding)

Discovery Timeline

  • April 14, 2026 - CVE-2026-2332 published to NVD
  • April 14, 2026 - Last updated in NVD database

Technical Details for CVE-2026-2332

Vulnerability Analysis

This HTTP Request Smuggling vulnerability (CWE-444) stems from improper handling of chunk extensions in Jetty's HTTP/1.1 parser. When processing chunked transfer encoding, the parser incorrectly interprets newline characters within quoted string values of chunk extensions. According to HTTP specifications, a quoted string should properly escape or reject embedded \r\n sequences. However, Jetty's parser prematurely terminates parsing when it encounters these characters, even when they appear inside double quotes.

This parsing discrepancy creates a desynchronization between Jetty and downstream servers or proxies regarding where one HTTP request ends and another begins. An attacker can craft a malicious request with an unterminated quoted chunk extension, causing Jetty to misinterpret the request boundaries and process injected content as a separate, legitimate HTTP request.

Root Cause

The root cause lies in Jetty's chunk extension parser failing to properly handle quoted strings according to RFC 7230. The parser terminates at \r\n boundaries regardless of the quoting context, allowing attackers to inject arbitrary HTTP request data. When a chunk extension contains an opening double quote without a closing quote, followed by \r\n and additional HTTP request content, Jetty incorrectly treats the injected content as a new request rather than malformed input.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker sends a specially crafted HTTP POST request with chunked transfer encoding. The request includes a chunk extension with an unclosed quoted string containing embedded newline sequences. The vulnerability allows the attacker to inject a smuggled HTTP request that will be processed as a legitimate request by Jetty.

The attack leverages the "funky chunks" technique where malformed chunk extensions confuse the parser about request boundaries. The injected request can target any endpoint accessible through the vulnerable Jetty server, potentially bypassing authentication, accessing restricted resources, or poisoning caches.

Technical details on the "funky chunks" exploitation technique are available in the referenced security research.

Detection Methods for CVE-2026-2332

Indicators of Compromise

  • HTTP requests containing chunk extensions with unclosed quoted strings followed by \r\n sequences
  • Unusual patterns in chunked transfer encoding with embedded HTTP request headers within chunk extension values
  • Log entries showing unexpected request paths like /smuggled appearing without corresponding client connections
  • Cache entries that appear poisoned or contain unexpected content for legitimate URLs

Detection Strategies

  • Implement deep packet inspection for HTTP traffic to detect malformed chunk extensions in chunked transfer encoding
  • Monitor for requests with Transfer-Encoding: chunked headers containing suspicious patterns in chunk data
  • Deploy web application firewalls (WAF) with rules to detect HTTP request smuggling patterns
  • Review application logs for anomalous request patterns indicating successful smuggling attempts

Monitoring Recommendations

  • Enable detailed HTTP access logging to capture full request headers and chunked encoding metadata
  • Set up alerts for requests with unusually long chunk extensions or malformed quoting patterns
  • Monitor for discrepancies between frontend proxy logs and backend Jetty server logs indicating desynchronization
  • Track cache hit rates for anomalies that might indicate cache poisoning attacks

How to Mitigate CVE-2026-2332

Immediate Actions Required

  • Review the GitHub Security Advisory for official patch information
  • Identify all Eclipse Jetty deployments in your environment and assess exposure
  • Prioritize patching internet-facing Jetty instances and those behind reverse proxies
  • Monitor the Eclipse GitLab CVE Issue for updates

Patch Information

Organizations should consult the official GitHub Security Advisory for detailed patch information and affected version ranges. Update to a patched version of Eclipse Jetty as soon as one becomes available from the vendor.

Workarounds

  • Deploy a reverse proxy or web application firewall in front of Jetty that strictly validates chunked transfer encoding and rejects malformed chunk extensions
  • Disable chunked transfer encoding at the proxy layer if feasible for your application architecture
  • Implement request normalization at the load balancer level to ensure consistent parsing between frontend and backend servers
  • Configure strict Content-Length validation to reject requests that may be attempting smuggling attacks
bash
# Example: Configure nginx as a reverse proxy with strict HTTP handling
# Add to nginx.conf server block to normalize requests
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_request_buffering on;

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechEclipse Jetty

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-444
  • Technical References
  • GitHub Security Advisory

  • Eclipse GitLab CVE Issue
  • Related CVEs
  • CVE-2023-40167: Eclipse Jetty HTTP Parsing Vulnerability

  • CVE-2026-5795: Eclipse Jetty Privilege Escalation Flaw

  • CVE-2026-1605: Eclipse Jetty GzipHandler DOS Vulnerability

  • CVE-2025-5115: Eclipse Jetty HTTP/2 DoS 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