Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-61919

CVE-2025-61919: Rack Ruby Web Interface DoS Vulnerability

CVE-2025-61919 is a denial of service vulnerability in Rack, a modular Ruby web server interface, caused by unbounded memory consumption when processing form data. This article covers technical details, affected versions, and mitigation.

Published: April 15, 2026

CVE-2025-61919 Overview

CVE-2025-61919 is a memory exhaustion denial of service (DoS) vulnerability in Rack, a modular Ruby web server interface. The vulnerability exists in Rack::Request#POST which reads the entire request body into memory for requests with Content-Type: application/x-www-form-urlencoded. The function calls rack.input.read(nil) without enforcing a length or cap, allowing attackers to buffer arbitrarily large request bodies into process memory before parsing. This can lead to complete memory exhaustion and service unavailability.

Critical Impact

Unauthenticated attackers can remotely cause denial of service by sending large HTTP POST requests, exhausting server memory and crashing Ruby web applications that rely on Rack.

Affected Products

  • Rack versions prior to 2.2.20
  • Rack versions 3.0.0 to 3.1.17
  • Rack versions 3.2.0 to 3.2.2

Discovery Timeline

  • October 10, 2025 - CVE-2025-61919 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-61919

Vulnerability Analysis

This vulnerability represents a classic resource exhaustion flaw (CWE-400: Uncontrolled Resource Consumption) in HTTP request body handling. When a Ruby web application built on Rack receives a POST request with the application/x-www-form-urlencoded content type, the Rack::Request#POST method processes the request body by calling rack.input.read(nil). The nil parameter instructs the method to read the entire input stream without any size limitation.

The absence of a byte size limit means that an attacker can craft a malicious HTTP POST request with an extremely large body. The server will attempt to load this entire body into memory before any parsing or validation occurs. In environments with limited memory resources or where multiple such requests are made concurrently, this behavior can rapidly exhaust available system memory, causing the application to crash or become unresponsive.

Root Cause

The root cause of this vulnerability is the lack of input validation on request body size within the Rack::Request#POST method. The method unconditionally reads the entire input stream by passing nil to rack.input.read(), trusting that incoming data will be reasonably sized. This violates the security principle of validating all external input before processing. The fix introduces enforcement of form parameter limits using query_parser.bytesize_limit, which caps the amount of data that can be read from application/x-www-form-urlencoded bodies.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Sending HTTP POST requests to any endpoint of a vulnerable Rack-based application
  2. Setting the Content-Type header to application/x-www-form-urlencoded
  3. Including an extremely large request body (potentially gigabytes of data)
  4. Repeating requests to accelerate memory exhaustion

The vulnerability is particularly dangerous because the application/x-www-form-urlencoded content type is commonly used in web forms, meaning most Rack applications accept this content type by default. No special characters or encoding tricks are required—simple repetition of any character in the body is sufficient to trigger the memory exhaustion condition.

Detection Methods for CVE-2025-61919

Indicators of Compromise

  • Unusual spikes in memory consumption on Ruby/Rack application servers
  • High number of incoming POST requests with Content-Type: application/x-www-form-urlencoded headers
  • HTTP requests with abnormally large Content-Length values targeting application endpoints
  • Application crashes or out-of-memory (OOM) errors in server logs

Detection Strategies

  • Implement network monitoring to detect HTTP POST requests with excessively large Content-Length headers
  • Configure web application firewalls (WAF) to alert on requests exceeding normal body size thresholds
  • Monitor application performance metrics for sudden memory usage spikes correlated with incoming requests
  • Review web server access logs for patterns of repeated large POST requests from single IP addresses or ranges

Monitoring Recommendations

  • Set up alerts for memory utilization exceeding baseline thresholds on application servers
  • Enable detailed logging of request sizes at the reverse proxy or load balancer level
  • Implement rate limiting for POST requests to prevent rapid-fire exploitation attempts
  • Deploy application performance monitoring (APM) tools to correlate memory events with specific request patterns

How to Mitigate CVE-2025-61919

Immediate Actions Required

  • Upgrade Rack to version 2.2.20, 3.1.18, or 3.2.3 immediately
  • Review and audit all Ruby web applications using Rack as a dependency
  • Implement request body size limits at the web server or reverse proxy layer as defense-in-depth
  • Monitor application servers for signs of exploitation attempts during the remediation window

Patch Information

The Rack maintainers have released patched versions that enforce form parameter limits using query_parser.bytesize_limit, preventing unbounded reads of application/x-www-form-urlencoded bodies. Users should upgrade to:

  • Version 2.2.20 for the 2.x release line
  • Version 3.1.18 for the 3.1.x release line
  • Version 3.2.3 for the 3.2.x release line

For detailed information about the fix, refer to the GitHub Security Advisory GHSA-6xw4-3v39-52mm and the associated fix commits:

  • Commit 4e2c903
  • Commit cbd541e
  • Commit e179614

Workarounds

  • Configure Nginx with client_max_body_size directive to limit incoming request body sizes
  • Configure Apache with LimitRequestBody directive to enforce maximum request body limits
  • Deploy a reverse proxy or load balancer with request size filtering capabilities
  • Implement application-level middleware to reject oversized requests before they reach Rack processing
bash
# Nginx configuration example - limit request body to 1MB
# Add to server or location block in nginx.conf
client_max_body_size 1m;

# Apache configuration example - limit request body to 1MB (1048576 bytes)
# Add to httpd.conf or virtual host configuration
LimitRequestBody 1048576

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRack

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.22%

  • 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-400
  • Vendor Resources
  • GitHub Rack Commit 4e2c903

  • GitHub Rack Commit cbd541e

  • GitHub Rack Commit e179614

  • GitHub Security Advisory GHSA-6xw4
  • Related CVEs
  • CVE-2026-34827: Rack Multipart Parser DoS Vulnerability

  • CVE-2026-34829: Rack Multipart Parser DoS Vulnerability

  • CVE-2026-34826: Rack Web Server Interface DoS Vulnerability

  • CVE-2026-34230: Rack Web Server Interface 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