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

CVE-2026-3260: Undertow DoS Vulnerability

CVE-2026-3260 is a denial of service flaw in Undertow caused by improper handling of multipart/form-data requests. Attackers can trigger resource exhaustion leading to DoS. This article covers technical details, impact, and mitigation.

Published: March 27, 2026

CVE-2026-3260 Overview

A resource exhaustion vulnerability has been discovered in Undertow, a flexible, performant web server written in Java. A remote attacker could exploit this vulnerability by sending an HTTP GET request containing multipart/form-data content. If the underlying application processes parameters using methods like getParameterMap(), the server prematurely parses and stores this content to disk. This could lead to resource exhaustion, potentially resulting in a Denial of Service (DoS).

Critical Impact

Remote attackers can cause Denial of Service by exhausting server disk resources through crafted multipart/form-data requests, potentially rendering web applications unavailable.

Affected Products

  • Undertow (affected versions not specified in advisory)
  • Applications using Undertow that process request parameters via getParameterMap() or similar methods
  • Red Hat products utilizing Undertow as the underlying web server

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-3260 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-3260

Vulnerability Analysis

This vulnerability falls under CWE-770 (Allocation of Resources Without Limits or Throttling). The flaw exists in how Undertow handles HTTP GET requests that contain multipart/form-data content in an unexpected context.

Under normal circumstances, multipart/form-data is typically used with POST requests for file uploads. However, when an attacker sends this content type with a GET request and the application invokes parameter parsing methods such as getParameterMap(), Undertow's request processing logic prematurely parses the multipart content and writes temporary files to disk.

The vulnerability is exploitable over the network without requiring authentication or user interaction. However, exploitation requires specific conditions to be met in the target application's request handling logic, which introduces complexity in successful attacks.

Root Cause

The root cause lies in Undertow's insufficient validation of content types relative to HTTP methods. When multipart/form-data content is received on a GET request, the server fails to properly validate whether parsing is appropriate before invoking the multipart parser. Combined with a lack of resource limits on temporary file storage, this allows attackers to exhaust disk space by sending numerous malicious requests.

Attack Vector

The attack is conducted over the network and targets applications running on Undertow that invoke parameter parsing methods regardless of the HTTP method used. An attacker can craft HTTP GET requests with multipart/form-data bodies containing large amounts of data. When the target application calls methods like getParameterMap(), the server parses the multipart content and stores temporary files to disk.

By sending a high volume of these requests, an attacker can fill the server's disk space, leading to resource exhaustion and denial of service. The attack does not require authentication and can be launched remotely against any exposed endpoint that processes request parameters.

The vulnerability manifests in Undertow's multipart request handling when certain parameter parsing methods are invoked. Detailed technical information is available in the Red Hat CVE-2026-3260 Advisory and the associated Red Hat Bugzilla Report #2443010.

Detection Methods for CVE-2026-3260

Indicators of Compromise

  • Unusual volume of HTTP GET requests with Content-Type: multipart/form-data headers
  • Rapid disk space consumption on application servers running Undertow
  • Accumulation of temporary files in Undertow's temp directory
  • Application performance degradation or service unavailability without corresponding legitimate traffic increase

Detection Strategies

  • Monitor HTTP request logs for GET requests containing multipart/form-data content type, which is an unusual combination
  • Implement Web Application Firewall (WAF) rules to flag or block GET requests with multipart/form-data content
  • Configure disk space monitoring alerts on servers running Undertow-based applications
  • Review application logs for excessive parameter parsing operations

Monitoring Recommendations

  • Set up disk utilization thresholds with automated alerting when temporary storage exceeds normal baselines
  • Monitor request patterns for anomalous combinations of HTTP methods and content types
  • Implement rate limiting on endpoints that process request parameters
  • Track temporary file creation rates in Undertow's working directories

How to Mitigate CVE-2026-3260

Immediate Actions Required

  • Apply vendor patches as they become available from Red Hat or the Undertow project
  • Implement WAF rules to reject HTTP GET requests containing multipart/form-data content
  • Configure disk quotas for the user account running the application server
  • Review application code to ensure parameter parsing methods are only called when necessary

Patch Information

Refer to the Red Hat CVE-2026-3260 Advisory for official patch information and updates. Additional details can be found in Red Hat Bugzilla Report #2443010. Organizations should monitor these resources for security updates addressing this vulnerability.

Workarounds

  • Deploy a reverse proxy or WAF to filter incoming requests and block GET requests with multipart/form-data content type
  • Implement application-level validation to check HTTP method before invoking parameter parsing methods
  • Configure temporary file storage limits on the Undertow server
  • Consider moving temporary file storage to a separate partition to prevent system-wide disk exhaustion
bash
# Example WAF rule concept for Apache ModSecurity
# Block GET requests with multipart/form-data content type
SecRule REQUEST_METHOD "GET" "chain,id:1001,deny,status:400,msg:'Suspicious GET with multipart'"
SecRule REQUEST_HEADERS:Content-Type "multipart/form-data"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechUndertow

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.50%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • Red Hat CVE-2026-3260 Advisory

  • Red Hat Bugzilla Report #2443010
  • Related CVEs
  • CVE-2024-4027: Undertow DoS Vulnerability via Parameters

  • CVE-2024-6162: Undertow AJP Listener DoS Vulnerability

  • CVE-2024-5971: Undertow Denial of Service Vulnerability

  • CVE-2026-28368: Redhat Apache Camel Auth Bypass Flaw
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