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-26048

CVE-2023-26048: Eclipse Jetty DOS Vulnerability

CVE-2023-26048 is a denial of service flaw in Eclipse Jetty that allows attackers to cause OutOfMemoryError through malicious multipart requests. This post covers the technical details, affected versions, and mitigation steps.

Published: February 4, 2026

CVE-2023-26048 Overview

CVE-2023-26048 is a resource exhaustion vulnerability in Eclipse Jetty, a popular Java-based web server and servlet engine. The vulnerability affects servlets with multipart support (e.g., annotated with @MultipartConfig) that call HttpServletRequest.getParameter() or HttpServletRequest.getParts(). When a client sends a malicious multipart request containing a part with a name but no filename and very large content, the server can throw an OutOfMemoryError, leading to a denial of service condition.

This vulnerability is particularly concerning because it occurs even with the default settings of fileSizeThreshold=0, which should stream the entire part content to disk rather than holding it in memory. The improper handling of multipart requests allows an attacker to exhaust server memory resources without proper file-based streaming.

Critical Impact

Remote attackers can cause server-side OutOfMemoryError conditions by sending specially crafted multipart requests, potentially disrupting service availability for legitimate users.

Affected Products

  • Eclipse Jetty versions prior to 9.4.51
  • Eclipse Jetty versions 10.x prior to 10.0.14
  • Eclipse Jetty versions 11.x prior to 11.0.14

Discovery Timeline

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

Technical Details for CVE-2023-26048

Vulnerability Analysis

The vulnerability resides in how Eclipse Jetty handles multipart form data uploads. When servlets are configured to handle multipart content using the @MultipartConfig annotation, they process incoming multipart HTTP requests through the HttpServletRequest.getParameter() or HttpServletRequest.getParts() methods.

Under normal circumstances, when the fileSizeThreshold parameter is set to 0 (the default), the servlet engine should stream large content directly to disk storage. However, a flaw in Jetty's multipart parsing logic causes it to load the entire content of a multipart part into memory when that part has a name but lacks a filename attribute.

This behavior deviates from the expected streaming behavior defined in the Jakarta Servlet Specification Document, allowing attackers to craft requests that bypass the disk-based storage mechanism entirely.

Root Cause

The root cause is classified under CWE-400 (Uncontrolled Resource Consumption) and CWE-770 (Allocation of Resources Without Limits or Throttling). The multipart parsing implementation fails to properly enforce memory limits when processing parts that have names but no filenames, regardless of the configured fileSizeThreshold setting.

When a multipart part contains only a name attribute without a filename, Jetty's parser incorrectly treats the content as form data rather than file data, causing it to buffer the entire content in heap memory. This bypasses the streaming-to-disk mechanism that protects against memory exhaustion.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending a crafted HTTP multipart request with:

  1. A multipart boundary containing a part definition with a name attribute
  2. No filename attribute in the Content-Disposition header
  3. An extremely large body content for that part

The malicious request would look similar to a standard multipart form submission but with an abnormally large data payload in a named part without a filename. When the servlet attempts to process this request using getParameter() or getParts(), Jetty attempts to load the entire content into memory, potentially causing an OutOfMemoryError.

While the server may recover after the error and continue service, repeated attacks can cause sustained service disruption. The vulnerability requires only basic HTTP client capabilities to exploit and can be launched remotely across the network.

Detection Methods for CVE-2023-26048

Indicators of Compromise

  • Unusual OutOfMemoryError exceptions in Jetty server logs, particularly those associated with multipart request processing
  • Abnormally large HTTP POST requests with Content-Type: multipart/form-data headers
  • Repeated requests from single IP addresses containing multipart data with named parts but no filename attributes
  • Sudden spikes in JVM heap memory usage during multipart request processing

Detection Strategies

  • Monitor Jetty access logs for HTTP POST requests with unusually large Content-Length headers targeting endpoints that handle multipart data
  • Implement application-level logging to track multipart request processing times and memory allocation patterns
  • Deploy network-level inspection to identify HTTP requests with multipart boundaries containing extremely large individual parts
  • Configure JVM monitoring to alert on rapid heap memory growth and garbage collection anomalies

Monitoring Recommendations

  • Set up heap memory utilization alerts with thresholds appropriate for your server's configuration
  • Monitor garbage collection frequency and duration for anomalous patterns indicating memory pressure
  • Track request processing times for multipart endpoints to identify potential exploitation attempts
  • Implement rate limiting on endpoints that accept multipart form data to mitigate sustained attacks

How to Mitigate CVE-2023-26048

Immediate Actions Required

  • Upgrade Eclipse Jetty to version 9.4.51, 10.0.14, or 11.0.14 or later immediately
  • Review application code for servlets using @MultipartConfig annotation and assess exposure
  • Implement the maxRequestSize workaround on affected systems if immediate patching is not possible
  • Configure web application firewalls to limit the size of incoming multipart requests

Patch Information

Eclipse has released patched versions addressing this vulnerability. Users should upgrade to the following versions:

  • Jetty 9.4.x: Upgrade to version 9.4.51 or later
  • Jetty 10.0.x: Upgrade to version 10.0.14 or later
  • Jetty 11.0.x: Upgrade to version 11.0.14 or later

Technical details of the fix can be found in GitHub Pull Request #9344 and GitHub Pull Request #9345. The GitHub Security Advisory GHSA-qw69-rqj8-6qw8 provides additional context and mitigation guidance.

Debian users should refer to Debian Security Advisory DSA-5507 and Debian LTS Announcement #00039 for distribution-specific patches. NetApp users can find additional guidance at NetApp Security Advisory NTAP-20230526-0001.

Workarounds

  • Set the maxRequestSize multipart parameter to a non-negative value to limit total multipart content size (note: content is still read into memory with this workaround)
  • Implement reverse proxy request size limits using tools like nginx or Apache HTTP Server upstream of Jetty
  • Deploy web application firewall rules to inspect and limit multipart request sizes before they reach the application
  • Consider temporarily disabling multipart endpoints that are not business-critical until patching can be completed
bash
# Configuration example for Jetty multipart limits
# In web.xml or programmatic configuration, set maxRequestSize

# Example web.xml multipart-config:
# <multipart-config>
#   <max-file-size>10485760</max-file-size>
#   <max-request-size>20971520</max-request-size>
#   <file-size-threshold>0</file-size-threshold>
# </multipart-config>

# For nginx reverse proxy, add request body size limits:
# client_max_body_size 20m;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechEclipse Jetty

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability39.41%

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

  • CWE-770
  • Technical References
  • Jakarta Servlet Specification Document

  • Debian LTS Announcement #00039

  • NetApp Security Advisory NTAP-20230526-0001

  • Debian Security Advisory DSA-5507
  • Vendor Resources
  • GitHub Issue #9076

  • GitHub Pull Request #9344

  • GitHub Pull Request #9345

  • GitHub Security Advisory GHSA-qw69-rqj8-6qw8
  • Related CVEs
  • 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

  • CVE-2024-8184: Eclipse Jetty 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