banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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-4027

CVE-2024-4027: Undertow DoS Vulnerability via Parameters

CVE-2024-4027 is a denial-of-service flaw in Undertow that allows attackers to cause OutOfMemoryError via large parameter names. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2024-4027 Overview

A vulnerability has been identified in Undertow, a lightweight Java web server. The flaw exists in servlets that utilize methods calling HttpServletRequestImpl.getParameterNames(). When a client sends a request with excessively large parameter names, the server can experience an OutOfMemoryError, leading to service disruption. This vulnerability can be exploited remotely by unauthorized users to conduct denial-of-service (DoS) attacks against affected Undertow deployments.

Critical Impact

Remote unauthenticated attackers can exhaust server memory by sending crafted HTTP requests with oversized parameter names, causing service outages and denial of service conditions.

Affected Products

  • Undertow (affected versions not specified in advisory)
  • Java web applications using Undertow as the underlying web server
  • Applications utilizing HttpServletRequestImpl.getParameterNames() method

Discovery Timeline

  • 2026-01-30 - CVE-2024-4027 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2024-4027

Vulnerability Analysis

This vulnerability is classified as an Improper Input Validation issue (CWE-20). The core problem lies in how Undertow handles HTTP request parameters. When a servlet processes incoming requests and invokes the getParameterNames() method on the HttpServletRequestImpl object, Undertow parses and stores parameter names in memory. The vulnerability arises because Undertow does not implement adequate size restrictions on parameter names, allowing malicious actors to craft requests containing parameter names of arbitrary length.

When such malformed requests are processed, the parameter name data accumulates in the JVM heap memory. With sufficiently large or numerous oversized parameter names, the Java Virtual Machine's available heap space becomes exhausted, triggering an OutOfMemoryError. This exception typically causes the servlet thread to terminate abnormally and can destabilize the entire application server, potentially affecting all hosted applications.

Root Cause

The root cause of CVE-2024-4027 is the lack of proper bounds checking and memory management when parsing HTTP request parameter names in Undertow's HttpServletRequestImpl class. The implementation does not enforce maximum length limits on individual parameter names or impose aggregate limits on the total memory consumed by all parameter names in a single request. This design oversight allows attackers to control memory allocation on the server by simply manipulating the size of request parameters.

Attack Vector

The attack can be executed over the network without authentication or user interaction. An attacker crafts an HTTP request containing one or more parameter names of extreme length and sends it to a vulnerable Undertow server. When the servlet attempts to enumerate or access parameter names using getParameterNames(), the server allocates memory to store these oversized strings. By sending multiple requests or using sufficiently large parameter names, the attacker can rapidly deplete available heap memory, resulting in an OutOfMemoryError that crashes the application or makes it unresponsive.

The attack is particularly effective because:

  • No authentication is required to send malicious requests
  • Standard HTTP requests are used, making the attack difficult to distinguish from legitimate traffic initially
  • The memory exhaustion can affect the entire JVM, impacting all applications running on the same server

Detection Methods for CVE-2024-4027

Indicators of Compromise

  • Unexpected OutOfMemoryError exceptions in Undertow or application server logs
  • Abnormal JVM heap usage spikes coinciding with incoming HTTP requests
  • HTTP requests with unusually long query string parameters or POST body parameters
  • Repeated application crashes or restarts without apparent cause

Detection Strategies

  • Monitor JVM heap memory utilization and alert on rapid consumption patterns
  • Implement application-level logging to capture request parameter sizes before processing
  • Deploy web application firewalls (WAF) configured to block requests with oversized parameters
  • Review Undertow access logs for requests with abnormally long URLs or POST bodies

Monitoring Recommendations

  • Configure JVM memory monitoring with thresholds for heap utilization alerts
  • Implement request size logging at the reverse proxy or load balancer level
  • Set up automated alerts for OutOfMemoryError occurrences in application logs
  • Monitor application availability and response times for degradation patterns

How to Mitigate CVE-2024-4027

Immediate Actions Required

  • Review and apply available patches from Red Hat or the Undertow project
  • Implement request size limits at the web application firewall or reverse proxy layer
  • Configure maximum parameter name length restrictions where supported
  • Consider implementing rate limiting to reduce the impact of potential DoS attempts

Patch Information

Refer to the Red Hat CVE-2024-4027 Advisory for official patch information and affected product versions. Additional technical details are available in the Red Hat Bugzilla Entry #2276410.

Organizations using Undertow should monitor vendor channels for security updates and apply patches as they become available.

Workarounds

  • Deploy a reverse proxy (such as nginx or Apache) in front of Undertow to enforce maximum URL and parameter length limits
  • Configure web application firewall rules to reject requests with parameter names exceeding reasonable thresholds
  • Increase JVM heap size as a temporary measure to raise the attack complexity (note: this does not fix the vulnerability)
  • Implement application-level validation to reject requests with oversized parameters before invoking getParameterNames()
bash
# Example nginx configuration to limit request URI and body size
# Add to server or location block

# Limit client request body size
client_max_body_size 1m;

# Limit URI length
large_client_header_buffers 4 8k;

# Limit query string length
if ($query_string ~* ".{8192,}") {
    return 414;
}

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.31%

  • 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 CVE-2024-4027 Advisory

  • Red Hat Bugzilla Entry #2276410
  • Related CVEs
  • CVE-2024-6162: Undertow AJP Listener DoS Vulnerability

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

  • CVE-2025-12543: Redhat Apache Camel SSRF Vulnerability

  • CVE-2023-4639: Undertow Cookie Parsing 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
  • English
  • 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