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-2022-2191

CVE-2022-2191: Eclipse Jetty DOS Vulnerability

CVE-2022-2191 is a denial of service vulnerability in Eclipse Jetty caused by SslConnection failing to release ByteBuffers in error paths. This article covers technical details, affected versions, impact, and mitigation.

Published: February 17, 2026

CVE-2022-2191 Overview

In Eclipse Jetty versions 10.0.0 through 10.0.9 and 11.0.0 through 11.0.9, the SslConnection component fails to properly release ByteBuffers back to the configured ByteBufferPool when error code paths are triggered. This memory leak vulnerability can be exploited remotely to cause a Denial of Service (DoS) condition by exhausting server memory resources.

Critical Impact

Remote attackers can exploit this memory leak vulnerability to exhaust server memory, causing application crashes and service unavailability without requiring authentication.

Affected Products

  • Eclipse Jetty versions 10.0.0 through 10.0.9
  • Eclipse Jetty versions 11.0.0 through 11.0.9

Discovery Timeline

  • 2022-07-07 - CVE-2022-2191 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-2191

Vulnerability Analysis

This vulnerability is classified under CWE-404 (Improper Resource Shutdown or Release). The flaw resides in the SslConnection class within Eclipse Jetty's SSL/TLS handling implementation. When SSL connections encounter error conditions during processing, the allocated ByteBuffer objects are not properly returned to the ByteBufferPool.

The ByteBufferPool in Jetty is designed to efficiently manage memory by reusing buffer objects rather than constantly allocating and deallocating memory. When error paths in SslConnection fail to release these buffers, the pool's available capacity diminishes with each failed connection attempt.

An attacker can exploit this vulnerability by initiating numerous SSL/TLS connections that deliberately trigger error conditions. Over time, this causes progressive memory exhaustion as buffers accumulate without being reclaimed.

Root Cause

The root cause lies in improper resource management within the SslConnection error handling logic. When SSL handshake failures or other connection errors occur, the code paths responsible for handling these exceptions do not include proper cleanup logic to return allocated ByteBuffer instances to the pool. This violates the resource acquisition and release pattern expected by Jetty's memory management system.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can remotely target the SSL/TLS endpoint of a Jetty server by:

  1. Establishing multiple SSL/TLS connections to the target server
  2. Intentionally triggering error conditions during the SSL handshake or connection phase
  3. Repeating this process to progressively exhaust the server's ByteBufferPool and available memory
  4. Eventually causing the server to become unresponsive or crash due to memory exhaustion

The vulnerability is particularly dangerous because it can be exploited from any network location with access to the Jetty server's HTTPS port.

Detection Methods for CVE-2022-2191

Indicators of Compromise

  • Unusual increase in memory consumption on servers running Jetty 10.0.0-10.0.9 or 11.0.0-11.0.9
  • High volume of failed SSL/TLS handshake attempts in server logs
  • OutOfMemoryError exceptions in Jetty application logs
  • Gradual performance degradation followed by service unavailability

Detection Strategies

  • Monitor JVM heap memory usage for Jetty instances and alert on sustained upward trends without corresponding traffic increases
  • Implement log analysis to detect anomalous patterns of SSL/TLS connection failures from single or distributed sources
  • Configure application performance monitoring (APM) to track ByteBufferPool utilization metrics
  • Deploy intrusion detection rules to identify rapid SSL connection cycling behavior

Monitoring Recommendations

  • Enable JMX monitoring for Jetty's ByteBufferPool to track buffer allocation and release patterns
  • Set up alerting thresholds for memory utilization exceeding normal operational baselines
  • Review SSL connection logs regularly for patterns indicating exploitation attempts
  • Implement rate limiting on SSL/TLS connection attempts per source IP

How to Mitigate CVE-2022-2191

Immediate Actions Required

  • Upgrade Eclipse Jetty to version 10.0.10 or later for the 10.x branch
  • Upgrade Eclipse Jetty to version 11.0.10 or later for the 11.x branch
  • If immediate patching is not possible, implement connection rate limiting at the network level
  • Monitor memory consumption closely until patches can be applied

Patch Information

Eclipse has addressed this vulnerability in Jetty versions 10.0.10 and 11.0.10. The fix ensures that ByteBuffer objects are properly released back to the ByteBufferPool even when error conditions are encountered in SslConnection.

For detailed patch information and upgrade guidance, refer to the GitHub Security Advisory GHSA-8mpp-f3f7-xc28. Additional vendor advisories are available from the NetApp Security Advisory.

Workarounds

  • Implement network-level rate limiting for SSL/TLS connection attempts to reduce the impact of exploitation
  • Configure firewall rules to restrict access to Jetty HTTPS endpoints to trusted IP ranges where possible
  • Increase JVM heap size as a temporary measure to extend time before memory exhaustion (not a fix)
  • Consider deploying a reverse proxy or load balancer in front of Jetty to provide additional connection management
bash
# Example: Rate limit SSL connections using iptables (Linux)
# Limit new SSL connections to 10 per second per source IP
iptables -A INPUT -p tcp --dport 8443 -m state --state NEW -m recent --set
iptables -A INPUT -p tcp --dport 8443 -m state --state NEW -m recent --update --seconds 1 --hitcount 10 -j DROP

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.5

  • EPSS Probability0.66%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-404
  • Technical References
  • NetApp Security Advisory
  • Vendor Resources
  • GitHub Security Advisory
  • 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