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-2026-22735

CVE-2026-22735: Spring Framework SSE DOS Vulnerability

CVE-2026-22735 is a denial of service vulnerability in Spring Framework affecting MVC and WebFlux applications using Server-Sent Events. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-22735 Overview

CVE-2026-22735 is a stream corruption vulnerability affecting Spring MVC and WebFlux applications when using Server-Sent Events (SSE). The vulnerability is classified under CWE-667 (Improper Locking), indicating an issue with improper resource synchronization that can lead to stream data corruption during SSE communication. This vulnerability affects multiple versions of the Spring Foundation framework, potentially impacting applications that rely on real-time event streaming functionality.

Critical Impact

Applications utilizing Server-Sent Events (SSE) for real-time data streaming may experience stream corruption, potentially leading to data integrity issues and unexpected application behavior.

Affected Products

  • Spring Foundation 7.0.0 through 7.0.5
  • Spring Foundation 6.2.0 through 6.2.16
  • Spring Foundation 6.1.0 through 6.1.25
  • Spring Foundation 5.3.0 through 5.3.46

Discovery Timeline

  • 2026-03-20 - CVE-2026-22735 published to NVD
  • 2026-03-20 - Last updated in NVD database

Technical Details for CVE-2026-22735

Vulnerability Analysis

This vulnerability stems from improper locking mechanisms (CWE-667) within the Spring Framework's Server-Sent Events handling code. When multiple threads attempt to write to an SSE stream concurrently, the lack of proper synchronization can result in stream corruption. This affects both Spring MVC and Spring WebFlux applications that implement SSE endpoints for pushing real-time updates to clients.

The vulnerability requires network access and authenticated user interaction to exploit, making it relatively difficult to leverage in practical attack scenarios. The primary impact is on data integrity rather than confidentiality or availability, as corrupted stream data could lead to incorrect information being displayed to users or processed by client applications.

Root Cause

The root cause is improper locking (CWE-667) in the SSE stream handling mechanism. When concurrent requests attempt to write events to the same SSE connection, the framework fails to properly synchronize access to the output stream. This race condition can result in interleaved or malformed event data being sent to connected clients.

Attack Vector

The vulnerability is exploitable over the network by authenticated users who can trigger concurrent SSE writes. An attacker would need to:

  1. Identify an application endpoint using SSE for real-time communication
  2. Trigger multiple simultaneous events that cause concurrent writes to the SSE stream
  3. Exploit the race condition to corrupt the stream data

The complexity of exploitation is high due to the timing-dependent nature of the race condition and the requirement for specific application configurations that expose the vulnerable code path.

Detection Methods for CVE-2026-22735

Indicators of Compromise

  • Malformed or truncated Server-Sent Events data in client-side application logs
  • Unexpected parsing errors in client applications consuming SSE streams
  • Intermittent data corruption in real-time streaming features
  • Application exceptions related to SSE output stream handling

Detection Strategies

  • Monitor application logs for exceptions or errors in SSE-related Spring Framework components
  • Implement client-side validation to detect malformed SSE event data
  • Use application performance monitoring (APM) tools to track SSE connection anomalies
  • Review Spring Framework version inventory across all deployed applications

Monitoring Recommendations

  • Enable detailed logging for Spring MVC and WebFlux SSE handlers
  • Set up alerts for sudden increases in SSE parsing errors on client applications
  • Monitor for unusual patterns in concurrent SSE connections to application endpoints
  • Track Spring Framework versions in use and flag any within the affected ranges

How to Mitigate CVE-2026-22735

Immediate Actions Required

  • Inventory all applications using Spring Foundation versions 5.3.0 through 5.3.46, 6.1.0 through 6.1.25, 6.2.0 through 6.2.16, or 7.0.0 through 7.0.5
  • Prioritize applications that utilize Server-Sent Events (SSE) for real-time communication
  • Review the Spring Security Advisory for CVE-2026-22735 for official guidance
  • Plan and schedule upgrades to patched Spring Foundation versions

Patch Information

Consult the official Spring Security Advisory for detailed patch information and recommended upgrade paths. Update to the latest patched version of Spring Foundation that addresses this vulnerability:

  • For Spring Foundation 7.x: Upgrade to version 7.0.6 or later
  • For Spring Foundation 6.2.x: Upgrade to version 6.2.17 or later
  • For Spring Foundation 6.1.x: Upgrade to version 6.1.26 or later
  • For Spring Foundation 5.3.x: Upgrade to version 5.3.47 or later

Workarounds

  • Implement application-level synchronization for SSE event emission in custom code
  • Consider temporarily disabling SSE endpoints if not critical to business operations
  • Use alternative real-time communication mechanisms such as WebSockets until patching is complete
  • Implement client-side validation and error handling to gracefully manage corrupted SSE data
bash
# Verify current Spring Framework version in Maven project
mvn dependency:tree -Dincludes=org.springframework:spring-*

# Verify current Spring Framework version in Gradle project
./gradlew dependencies --configuration runtimeClasspath | grep spring

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSpring

  • SeverityLOW

  • CVSS Score2.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-667
  • Technical References
  • Spring Security CVE-2026-22735
  • Related CVEs
  • CVE-2024-38828: Spring MVC DoS Vulnerability

  • CVE-2024-38816: Spring Framework Path Traversal Flaw

  • CVE-2024-22262: UriComponentsBuilder SSRF Vulnerability

  • CVE-2024-38821: Spring WebFlux Auth Bypass 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