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-2024-13009

CVE-2024-13009: Eclipse Jetty Buffer Overflow Vulnerability

CVE-2024-13009 is a buffer overflow vulnerability in Eclipse Jetty versions 9.4.0 to 9.4.56 that causes incorrect buffer release during gzip decompression, leading to data corruption or inadvertent data sharing between requests.

Published: March 11, 2026

CVE-2024-13009 Overview

CVE-2024-13009 is a resource management vulnerability affecting Eclipse Jetty versions 9.4.0 through 9.4.56. The flaw occurs when a buffer is incorrectly released during the handling of a gzip error while inflating a request body. This improper resource shutdown or release (CWE-404) can result in corrupted data or inadvertent sharing of data between concurrent requests, potentially exposing sensitive information across user sessions.

Critical Impact

This vulnerability enables data corruption and cross-request data leakage in affected Jetty instances, potentially exposing sensitive user data to unauthorized parties through improper buffer management.

Affected Products

  • Eclipse Jetty versions 9.4.0 through 9.4.56
  • Applications and services built on vulnerable Jetty versions
  • Web servers and application containers using affected Jetty releases

Discovery Timeline

  • 2025-05-08 - CVE-2024-13009 published to NVD
  • 2025-07-31 - Last updated in NVD database

Technical Details for CVE-2024-13009

Vulnerability Analysis

This vulnerability stems from improper resource management in Eclipse Jetty's gzip decompression handling. When a gzip error occurs during request body inflation, the associated buffer is prematurely or incorrectly released back to the buffer pool. Because Jetty reuses buffers across requests for performance optimization, this improper release can cause the buffer—potentially still containing data from one request—to be assigned to another concurrent request.

The cross-request data contamination can manifest in two primary ways: corrupted request data where partial content from a previous request interferes with processing, or inadvertent information disclosure where sensitive data from one user's request becomes visible to another user's session. This is particularly concerning in multi-tenant environments or applications handling sensitive information.

Root Cause

The root cause is an improper resource shutdown or release condition (CWE-404) in Jetty's gzip inflation error handling path. When the GzipHandler encounters an error during decompression of request body data, the cleanup logic fails to properly manage the buffer state before returning it to the pool. The buffer may still contain partial or complete data from the previous request context, and this data can then be inadvertently exposed when the buffer is reassigned to handle a subsequent request.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can potentially trigger this vulnerability by sending malformed gzip-compressed request bodies designed to cause inflation errors. When the error handling code incorrectly releases the buffer, subsequent legitimate requests may receive data fragments from previous requests.

In practical exploitation scenarios, an attacker could repeatedly send malformed gzip requests to an affected server while monitoring responses to their own legitimate requests, potentially harvesting leaked data from other users' sessions. The scope is changed, meaning the vulnerability can affect resources beyond the vulnerable component itself.

The vulnerability manifests in the buffer release logic during gzip error handling. When a decompression error occurs, the buffer containing request data is returned to the pool without being properly cleared. A subsequent request may then receive this buffer, allowing access to data from the previous request context. For technical implementation details, see the GitHub Security Advisory.

Detection Methods for CVE-2024-13009

Indicators of Compromise

  • Unexpected data appearing in HTTP responses that does not correspond to the current request
  • Application logs showing gzip inflation errors followed by data integrity issues
  • User reports of seeing other users' data or receiving corrupted responses
  • Increased occurrence of HTTP 500 errors related to request body processing

Detection Strategies

  • Monitor application logs for gzip decompression errors paired with data corruption warnings
  • Implement request/response integrity checks to detect cross-request data contamination
  • Deploy network monitoring to identify malformed gzip request patterns targeting your Jetty instances
  • Use SentinelOne Singularity to detect anomalous application behavior patterns indicative of buffer manipulation

Monitoring Recommendations

  • Enable verbose logging for Jetty's GzipHandler to capture decompression failures
  • Implement application-level data integrity validation for sensitive request/response payloads
  • Monitor for unusual patterns of gzip errors that could indicate exploitation attempts
  • Set up alerts for data leakage indicators such as cross-session data contamination reports

How to Mitigate CVE-2024-13009

Immediate Actions Required

  • Upgrade Eclipse Jetty to version 9.4.57 or later, or migrate to Jetty 10.x/11.x/12.x branches
  • Review application logs for any evidence of prior exploitation or data leakage
  • Assess whether sensitive data may have been exposed and follow incident response procedures if warranted
  • Consider temporarily disabling gzip request body inflation as a workaround until patching is complete

Patch Information

Eclipse has addressed this vulnerability in Jetty versions subsequent to 9.4.56. Organizations should upgrade to Jetty 9.4.57 or later to remediate this issue. For applications that can migrate to newer major versions, Jetty 10.x, 11.x, and 12.x are not affected by this specific vulnerability.

Detailed patch information and remediation guidance is available in the GitHub Security Advisory. Additional context can be found in the Eclipse GitLab CVE Issue.

Workarounds

  • Disable gzip content encoding for request bodies by removing the GzipHandler from the handler chain
  • Implement a reverse proxy that handles gzip decompression before requests reach Jetty
  • Add request validation at the application layer to detect and reject corrupted request data
  • Deploy network-level filtering to block malformed gzip content from reaching vulnerable servers
bash
# Example: Disable gzip request handling in Jetty configuration
# In jetty.xml, comment out or remove the GzipHandler configuration
# Or configure to only handle response compression, not request inflation

# Alternative: Configure upstream proxy to handle decompression
# nginx example:
# gunzip on;
# proxy_set_header Accept-Encoding "";

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechEclipse Jetty

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.55%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-404
  • Technical References
  • Eclipse GitLab CVE Issue
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • 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

  • CVE-2024-9823: Eclipse Jetty DoS Filter 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