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-2023-26049

CVE-2023-26049: Eclipse Jetty Cookie Smuggling Vulnerability

CVE-2023-26049 is a cookie smuggling vulnerability in Eclipse Jetty that enables attackers to exfiltrate HttpOnly cookies through nonstandard parsing. This article covers technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-26049 Overview

CVE-2023-26049 is a cookie smuggling vulnerability in Eclipse Jetty, a popular Java-based web server and servlet engine. The vulnerability stems from nonstandard cookie parsing behavior that allows attackers to smuggle cookies within other cookies or perform unintended actions by tampering with the cookie parsing mechanism. This can lead to information disclosure, including the potential exfiltration of HttpOnly session cookies.

Critical Impact

Attackers can bypass cookie-based security policies and potentially exfiltrate HttpOnly session identifiers (like JSESSIONID) by exploiting the nonstandard cookie parsing behavior.

Affected Products

  • Eclipse Jetty (versions prior to 9.4.51, 10.0.14, 11.0.14, and 12.0.0.beta0)
  • Debian Linux 10.0, 11.0, 12.0
  • NetApp Active IQ Unified Manager (Linux and Windows)
  • NetApp E-Series SANtricity OS Controller
  • NetApp E-Series SANtricity Unified Manager
  • NetApp E-Series SANtricity Web Services

Discovery Timeline

  • 2023-04-18 - CVE-2023-26049 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-26049

Vulnerability Analysis

This vulnerability exploits a parsing inconsistency in how Eclipse Jetty handles cookie values that begin with double quotes. According to RFC 6265, cookie parsing should follow specific delimiters, but Jetty's implementation deviates from standard behavior when encountering quoted values.

When Jetty encounters a cookie VALUE that starts with a double quote ("), it continues reading the cookie string until it finds a closing quote—even if semicolons (which normally delimit separate cookies) are encountered within the quoted section. This parsing behavior creates an opportunity for cookie smuggling attacks.

For example, a malicious cookie header like DISPLAY_LANGUAGE="b; JSESSIONID=1337; c=d" would be parsed as a single cookie named DISPLAY_LANGUAGE with the value b; JSESSIONID=1337; c=d, rather than being correctly interpreted as three separate cookies.

Root Cause

The root cause lies in Jetty's cookie parsing implementation, which follows an older interpretation based on RFC 2965 that allowed quoted cookie values. This creates a mismatch with modern cookie handling expectations and enables attackers to embed arbitrary cookie data within quoted strings, bypassing security controls that rely on proper cookie separation.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft a malicious HTTP request containing specially formatted cookie headers to exploit the parsing vulnerability.

The exploitation scenario works as follows:

  1. The attacker identifies an application using a vulnerable version of Jetty
  2. The attacker crafts a cookie header with a quoted value containing smuggled cookies
  3. If the application renders any part of the smuggled cookie value (e.g., DISPLAY_LANGUAGE), HttpOnly cookies like JSESSIONID embedded within the quoted string may be exposed
  4. This bypasses the HttpOnly protection mechanism designed to prevent client-side script access to sensitive session cookies

This attack is particularly dangerous when an intermediary (such as a reverse proxy or WAF) enforces cookie-based security policies, as the smuggled cookie can bypass those policies while still being processed by the Jetty server.

Detection Methods for CVE-2023-26049

Indicators of Compromise

  • HTTP requests containing cookie headers with unusual quoted values spanning multiple apparent cookie definitions
  • Cookie values containing embedded semicolons within double quotes
  • Log entries showing unexpected cookie parsing results or malformed cookie warnings
  • Session hijacking attempts following cookie exfiltration patterns

Detection Strategies

  • Implement web application firewall (WAF) rules to detect cookie headers containing quoted values with embedded semicolons
  • Monitor HTTP request logs for anomalous cookie header patterns, particularly values like "value; JSESSIONID=
  • Deploy network intrusion detection signatures to identify potential cookie smuggling attempts
  • Analyze application logs for unexpected cookie value rendering or exposure

Monitoring Recommendations

  • Enable verbose cookie parsing logging in Jetty to identify potential exploitation attempts
  • Monitor for session anomalies that could indicate successful cookie exfiltration
  • Implement alerting for HTTP requests with unusually long or complex cookie headers
  • Review access logs for patterns consistent with session hijacking following cookie smuggling

How to Mitigate CVE-2023-26049

Immediate Actions Required

  • Upgrade Eclipse Jetty to version 9.4.51, 10.0.14, 11.0.14, or 12.0.0.beta0 or later immediately
  • Review application code for any instances where cookie values are rendered in responses
  • Audit session management practices and ensure sensitive cookies use proper security attributes
  • Apply available operating system and third-party vendor patches for affected distributions

Patch Information

Eclipse has addressed this vulnerability in the following patched versions:

  • Jetty 9.4.x: Upgrade to version 9.4.51 or later
  • Jetty 10.x: Upgrade to version 10.0.14 or later
  • Jetty 11.x: Upgrade to version 11.0.14 or later
  • Jetty 12.x: Upgrade to version 12.0.0.beta0 or later

The fixes are available through the official Eclipse Jetty repository. Technical details of the patches can be found in Pull Request #9339 and Pull Request #9352. The official security advisory is available at GHSA-p26g-97m4-6q7c.

Additional vendor advisories:

  • Debian Security Advisory DSA-5507
  • Debian LTS Announcement
  • NetApp Security Advisory NTAP-20230526-0001

Workarounds

  • There are no known workarounds for this vulnerability; upgrading to a patched version is the only remediation
  • As a defense-in-depth measure, avoid rendering cookie values in HTTP responses where possible
  • Implement strict input validation on any cookie values that must be processed or displayed
  • Consider deploying a WAF with rules to reject malformed cookie headers as a temporary mitigation layer
bash
# Verify Jetty version and upgrade
# Check current Jetty version in Maven pom.xml or build.gradle
# For Maven, update dependency version:
# <dependency>
#     <groupId>org.eclipse.jetty</groupId>
#     <artifactId>jetty-server</artifactId>
#     <version>11.0.14</version>
# </dependency>

# For Gradle:
# implementation 'org.eclipse.jetty:jetty-server:11.0.14'

# After updating, rebuild and redeploy the application
mvn clean install
# or
gradle clean build

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechEclipse Jetty

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.33%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200

  • NVD-CWE-noinfo
  • Technical References
  • Debian LTS Announcement

  • NetApp Security Advisory NTAP-20230526-0001

  • Debian Security Advisory DSA-5507

  • RFC 2965 Specification

  • RFC 6265 Specification
  • Vendor Resources
  • GitHub Jetty Pull Request #9339

  • GitHub Jetty Pull Request #9352

  • GitHub Security Advisory GHSA-p26g-97m4-6q7c
  • Related CVEs
  • CVE-2021-28169: Eclipse Jetty Information Disclosure Flaw

  • CVE-2021-28164: Eclipse Jetty Information Disclosure Bug

  • CVE-2021-28163: Eclipse Jetty Information Disclosure Flaw

  • CVE-2026-1605: Eclipse Jetty GzipHandler DOS Vulnerability
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