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-2025-5115

CVE-2025-5115: Eclipse Jetty HTTP/2 DoS Vulnerability

CVE-2025-5115 is a denial of service flaw in Eclipse Jetty HTTP/2 that allows attackers to exhaust server resources through malformed frames. This post covers technical details, affected versions, impact, and mitigation.

Published: March 11, 2026

CVE-2025-5115 Overview

CVE-2025-5115 is a resource exhaustion vulnerability in Eclipse Jetty's HTTP/2 implementation that allows remote attackers to consume excessive server resources (CPU and memory) by forcing the server to generate RST_STREAM frames. An HTTP/2 client can exploit this by sending malformed frames or frames that violate protocol state rules, causing the server to continuously process and respond to invalid requests without exceeding concurrent stream limits.

Critical Impact

Remote attackers can degrade or deny service availability by exhausting server resources through crafted HTTP/2 frame sequences, affecting downstream system availability.

Affected Products

  • Eclipse Jetty versions <=9.4.57
  • Eclipse Jetty versions <=10.0.25
  • Eclipse Jetty versions <=11.0.25
  • Eclipse Jetty versions <=12.0.21
  • Eclipse Jetty versions <=12.1.0.alpha2

Discovery Timeline

  • August 20, 2025 - CVE-2025-5115 published to NVD
  • January 27, 2026 - Last updated in NVD database

Technical Details for CVE-2025-5115

Vulnerability Analysis

This vulnerability affects Eclipse Jetty's HTTP/2 server implementation across multiple major version branches. The core issue lies in how Jetty handles malformed or protocol-violating HTTP/2 frames from clients.

According to RFC 9113, when a server receives an illegal WINDOW_UPDATE frame (such as one with a window size increment of 0), it must respond with a RST_STREAM frame. The vulnerability arises because an attacker can exploit this required behavior to force the server to allocate resources for processing each malformed request.

The attack bypasses typical concurrent stream limitations because the attacker opens streams, sends invalid frames, receives RST_STREAM responses, and then repeats the process. This allows the creation of an enormous number of streams in rapid succession while technically staying within concurrent stream limits at any given moment.

Root Cause

The root cause is classified as CWE-400: Uncontrolled Resource Consumption. Jetty's HTTP/2 implementation did not implement adequate rate limiting or resource controls for handling streams that result in RST_STREAM responses. The server dutifully follows the HTTP/2 specification by sending RST_STREAM frames for protocol violations, but this compliance becomes a vector for resource exhaustion when exploited at scale.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability through multiple methods:

  1. Illegal WINDOW_UPDATE Frames: Opening streams and sending WINDOW_UPDATE frames with a window size increment of 0, which violates RFC 9113 and forces RST_STREAM responses.

  2. DATA Frames for Closed Streams: Sending DATA frames targeting streams that have already been closed, triggering error handling and RST_STREAM generation.

  3. Other Protocol Violations: Any frame sequence that violates HTTP/2 state machine rules and requires RST_STREAM responses can be weaponized for this attack.

The attack exploits a gap between per-stream limits and the aggregate resource cost of stream creation/termination cycles.

Detection Methods for CVE-2025-5115

Indicators of Compromise

  • Unusual spikes in RST_STREAM frame generation from Jetty servers
  • Elevated CPU utilization on servers handling HTTP/2 traffic without corresponding legitimate traffic increases
  • Abnormally high stream creation rates from individual client connections
  • Memory pressure on Jetty instances correlating with HTTP/2 connection activity

Detection Strategies

  • Monitor HTTP/2 connection metrics for streams created per second per connection, alerting on anomalous patterns
  • Implement network-level detection for connections sending repeated malformed HTTP/2 frames
  • Configure application performance monitoring to track Jetty thread pool exhaustion and memory allocation rates
  • Deploy intrusion detection rules to identify WINDOW_UPDATE frames with zero increment values

Monitoring Recommendations

  • Enable Jetty's HTTP/2 debug logging during investigation to capture frame-level details
  • Track server-side RST_STREAM frame counts as a potential attack indicator
  • Monitor connection duration versus stream count ratios for individual clients
  • Set up alerting for resource exhaustion patterns in Jetty server metrics

How to Mitigate CVE-2025-5115

Immediate Actions Required

  • Upgrade Eclipse Jetty to a patched version immediately: 9.4.58, 10.0.26, 11.0.26, 12.0.25, or 12.1.0
  • Review and restrict access to HTTP/2 endpoints from untrusted networks if patching is delayed
  • Implement rate limiting at the load balancer or reverse proxy level to throttle connection attempts
  • Monitor Jetty server resource utilization closely until patches are applied

Patch Information

Eclipse has released patched versions across all affected version branches. Organizations should upgrade to the following versions:

  • Jetty 9.x: Upgrade to version 9.4.58
  • Jetty 10.x: Upgrade to version 10.0.26
  • Jetty 11.x: Upgrade to version 11.0.26
  • Jetty 12.0.x: Upgrade to version 12.0.25
  • Jetty 12.1.x: Upgrade to version 12.1.0

Technical details of the fix can be found in the GitHub Pull Request #13449. Additional information is available in the GitHub Security Advisory GHSA-mmxm-8w33-wc4h.

Workarounds

  • Disable HTTP/2 support and fall back to HTTP/1.1 if not required for business operations
  • Deploy a Web Application Firewall (WAF) or reverse proxy capable of inspecting and filtering HTTP/2 traffic
  • Implement connection rate limiting at the network perimeter to reduce attack surface
  • Configure resource limits (memory, threads) for Jetty instances to prevent complete exhaustion
bash
# Example: Disable HTTP/2 in Jetty by removing HTTP/2 module
cd $JETTY_BASE
java -jar $JETTY_HOME/start.jar --remove-module=http2

# Or configure connection limits in start.ini
# Add rate limiting properties
jetty.http2.maxConcurrentStreams=100
jetty.http2.maxRequestHeadersSize=8192

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

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Pull Request

  • GitHub Release Jetty 10.0.26

  • GitHub Release Jetty 11.0.26

  • GitHub Release Jetty 12.0.25

  • GitHub Release Jetty 12.1.0

  • GitHub Release Jetty 9.4.58

  • GitHub Security Advisory GHSA-mmxm-8w33-wc4h

  • OpenWall OSS Security Discussion

  • OpenWall OSS Security Discussion

  • Debian LTS Announcement

  • CERT Vulnerability Report #767506
  • Related CVEs
  • CVE-2026-1605: Eclipse Jetty GzipHandler DOS Vulnerability

  • CVE-2024-9823: Eclipse Jetty DoS Filter DoS Vulnerability

  • CVE-2024-8184: Eclipse Jetty DOS Vulnerability

  • CVE-2021-28165: Eclipse Jetty 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