A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2024-3884

CVE-2024-3884: Undertow Denial of Service Vulnerability

CVE-2024-3884 is a denial of service flaw in Undertow that allows attackers to trigger OutOfMemory errors through malicious form data. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 26, 2026

CVE-2024-3884 Overview

A flaw in Undertow allows unauthenticated remote attackers to trigger denial of service conditions through malformed form data parsing. When the server processes large application/x-www-form-urlencoded payloads using the FormEncodedDataDefinition.doParse(StreamSourceChannel) method, the parser consumes excessive heap memory and triggers an OutOfMemoryError. The condition exhausts JVM heap resources and forces affected web servers offline. Undertow is the embedded web server used in Red Hat JBoss Enterprise Application Platform and WildFly, making this issue relevant to enterprise Java application stacks. The vulnerability is tracked under [CWE-20] (Improper Input Validation).

Critical Impact

Unauthenticated attackers can crash Undertow-based application servers remotely by submitting oversized URL-encoded form payloads, disrupting availability of business-critical Java workloads.

Affected Products

  • Red Hat JBoss Enterprise Application Platform (multiple versions, per Red Hat advisories)
  • Red Hat build of Apache Camel and Quarkus distributions bundling Undertow
  • Undertow web server (upstream component shipped within affected Red Hat products)

Discovery Timeline

  • 2025-12-03 - CVE-2024-3884 published to the National Vulnerability Database
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2024-3884

Vulnerability Analysis

The defect resides in Undertow's form parsing subsystem. The FormEncodedDataDefinition.doParse(StreamSourceChannel) method reads inbound form data from the channel and accumulates parsed name/value pairs in memory. The parser does not enforce a hard upper bound on the cumulative size of buffered form content before allocation. An attacker who submits a single request with an extremely large URL-encoded body forces the JVM to allocate buffers proportional to the payload size. Once heap capacity is exceeded, the JVM throws OutOfMemoryError, which terminates request threads and can destabilize the entire application server process. Because the attack requires only a network-reachable HTTP endpoint that accepts form submissions, it scales trivially against exposed Undertow deployments.

Root Cause

The root cause is improper input validation [CWE-20] in the form data parser. The doParse method trusts the size of the inbound stream and lacks a configurable cap on parsed form content length. Memory allocation grows linearly with attacker-controlled input.

Attack Vector

Exploitation is network-based, requires no authentication, and needs no user interaction. An attacker sends an HTTP POST request with Content-Type: application/x-www-form-urlencoded containing a very large body to any endpoint backed by Undertow's form parser. Repeated requests amplify resource exhaustion and accelerate process termination. Refer to the Red Hat CVE-2024-3884 Details and Red Hat Bug Report #2275287 for vendor analysis.

Detection Methods for CVE-2024-3884

Indicators of Compromise

  • Repeated java.lang.OutOfMemoryError: Java heap space entries in Undertow, WildFly, or JBoss EAP server logs correlated with inbound HTTP traffic.
  • Abnormally large Content-Length values on POST requests with Content-Type: application/x-www-form-urlencoded to application endpoints.
  • Sudden JVM process termination or container restarts on Undertow-based workloads without preceding application errors.

Detection Strategies

  • Inspect web access logs for POST requests with oversized bodies targeting form-handling routes, particularly from a single source address.
  • Correlate JVM heap usage spikes with HTTP request volume to identify resource exhaustion patterns tied to form submissions.
  • Apply Web Application Firewall (WAF) rules that flag URL-encoded request bodies exceeding a defined size threshold appropriate for the application.

Monitoring Recommendations

  • Enable JVM garbage collection and heap monitoring on Undertow workloads and alert on sustained heap pressure above 85 percent.
  • Track HTTP 5xx error rates and process restart counts on application servers to detect availability impact early.
  • Forward application server and reverse proxy logs to a centralized analytics platform for cross-tier correlation of DoS patterns.

How to Mitigate CVE-2024-3884

Immediate Actions Required

  • Apply the Red Hat security updates published for affected JBoss EAP, WildFly, and downstream products. Begin with the latest applicable RHSA, such as RHSA-2026:6011 and RHSA-2026:6012.
  • Inventory all internal and external applications running on Undertow and prioritize internet-facing endpoints that accept form submissions.
  • Configure upstream reverse proxies or load balancers to enforce a maximum request body size for application/x-www-form-urlencoded traffic.

Patch Information

Red Hat has issued multiple errata addressing CVE-2024-3884 across product lines, including RHSA-2026:0383, RHSA-2026:0384, RHSA-2026:0386, RHSA-2026:3889, RHSA-2026:3891, RHSA-2026:3892, RHSA-2026:4915, RHSA-2026:4916, RHSA-2026:4917, and RHSA-2026:4924. Administrators should consult the Red Hat CVE-2024-3884 Details page to map their specific product version to the correct erratum.

Workarounds

  • Place a reverse proxy such as NGINX or HAProxy in front of Undertow and enforce a strict client_max_body_size or equivalent limit on POST requests.
  • Restrict access to form-handling endpoints through network segmentation, authentication requirements, or rate limiting where the application design allows.
  • Configure JVM heap limits and container memory cgroups so that an OutOfMemoryError triggers a controlled restart rather than prolonged service degradation.
bash
# Example NGINX reverse proxy mitigation: cap form body size in front of Undertow
http {
    client_max_body_size 1m;

    server {
        listen 443 ssl;
        server_name app.example.com;

        location / {
            proxy_pass http://undertow_backend;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    }
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechUndertow

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.13%

  • 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-20
  • Technical References
  • Red Hat Security Advisory RHSA-2026:0383

  • Red Hat Security Advisory RHSA-2026:0384

  • Red Hat Security Advisory RHSA-2026:0386

  • Red Hat Security Advisory RHSA-2026:3889

  • Red Hat Security Advisory RHSA-2026:3891

  • Red Hat Security Advisory RHSA-2026:3892

  • Red Hat Security Advisory RHSA-2026:4915

  • Red Hat Security Advisory RHSA-2026:4916

  • Red Hat Security Advisory RHSA-2026:4917

  • Red Hat Security Advisory RHSA-2026:4924

  • Red Hat Security Advisory RHSA-2026:6011

  • Red Hat Security Advisory RHSA-2026:6012

  • Red Hat CVE-2024-3884 Details

  • Red Hat Bug Report #2275287
  • Related CVEs
  • CVE-2026-3260: Undertow DoS Vulnerability

  • CVE-2024-4027: Undertow DoS Vulnerability via Parameters

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

  • CVE-2024-5971: Undertow Denial of Service Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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