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-2025-59830

CVE-2025-59830: Rack QueryParser DoS Vulnerability

CVE-2025-59830 is a denial-of-service flaw in Rack's QueryParser that allows attackers to bypass parameter limits using semicolon separators. This article covers technical details, affected versions, and mitigation steps.

Published: April 15, 2026

CVE-2025-59830 Overview

CVE-2025-59830 is a Denial of Service vulnerability in Rack, the modular Ruby web server interface. Prior to version 2.2.18, Rack::QueryParser enforces its params_limit only for parameters separated by &, while still splitting on both & and ;. As a result, attackers can use ; separators to bypass the parameter count limit and submit more parameters than intended, leading to increased CPU and memory consumption.

Critical Impact

Applications or middleware that directly invoke Rack::QueryParser with its default configuration (no explicit delimiter) could be exposed to resource exhaustion attacks, enabling denial-of-service conditions against affected Ruby web applications.

Affected Products

  • Rack versions prior to 2.2.18
  • Ruby web applications using Rack::QueryParser with default configuration
  • Middleware components that invoke query parsing without explicit delimiter configuration

Discovery Timeline

  • 2025-09-25 - CVE-2025-59830 published to NVD
  • 2025-10-10 - Last updated in NVD database

Technical Details for CVE-2025-59830

Vulnerability Analysis

This vulnerability is classified as CWE-400 (Uncontrolled Resource Consumption). The flaw exists in how Rack::QueryParser handles parameter delimiters when enforcing its parameter count limit. The parser is designed to protect against resource exhaustion by limiting the number of parameters it will process, but this protection mechanism can be circumvented.

When processing query strings, Rack::QueryParser splits parameters using both & and ; as delimiters, which is compliant with HTML specifications that allow both characters as parameter separators. However, the params_limit enforcement mechanism only counts parameters separated by &, creating an inconsistency that attackers can exploit.

By crafting malicious query strings that use ; as the delimiter instead of &, an attacker can submit significantly more parameters than the configured limit allows. This bypass enables resource exhaustion attacks that can consume excessive CPU and memory on the target server.

Root Cause

The root cause is an inconsistency between the delimiter recognition logic (which accepts both & and ;) and the parameter counting logic (which only counts & separators). This design flaw allows the security control to be bypassed when ; is used as the parameter separator.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending HTTP requests with query strings containing a large number of parameters separated by ; characters instead of &. Since the parameter limit only applies to &-separated values, the parser will accept and process an arbitrarily large number of ;-separated parameters.

The attack is relatively straightforward: craft a URL or POST body with numerous parameters using ; delimiters. For example, a query string like a=1;b=2;c=3;...;z=26 with thousands of parameters would bypass the limit check, forcing the server to allocate memory and CPU cycles for each parameter.

For detailed technical information about this vulnerability, see the GitHub Security Advisory.

Detection Methods for CVE-2025-59830

Indicators of Compromise

  • Unusually large query strings in HTTP requests containing numerous ; separators
  • Elevated memory consumption on Ruby web application servers
  • Increased CPU utilization during request processing without corresponding traffic increases
  • Slow response times or timeouts on Rack-based applications

Detection Strategies

  • Monitor web server logs for HTTP requests with abnormally long query strings containing multiple ; characters
  • Implement request size limits at the load balancer or reverse proxy layer
  • Configure application performance monitoring (APM) tools to alert on unusual memory allocation patterns
  • Use SentinelOne's Singularity platform to detect anomalous resource consumption patterns indicative of DoS attacks

Monitoring Recommendations

  • Set up alerts for sustained high CPU or memory usage on Ruby application servers
  • Monitor request latency metrics for degradation patterns consistent with resource exhaustion
  • Track query string lengths and parameter counts at the web application firewall (WAF) level
  • Implement rate limiting to reduce the impact of sustained attack attempts

How to Mitigate CVE-2025-59830

Immediate Actions Required

  • Upgrade Rack to version 2.2.18 or later immediately
  • Review application code for direct invocations of Rack::QueryParser and ensure explicit delimiter configuration
  • Implement request size limits at the reverse proxy or load balancer level as a defense-in-depth measure
  • Consider rate limiting for endpoints that accept user-supplied query parameters

Patch Information

This vulnerability has been patched in Rack version 2.2.18. The fix ensures that the parameter limit is enforced consistently regardless of which delimiter character is used. Organizations should update their Gemfile to require the patched version and run bundle update rack to apply the fix.

The security patch is available in commit 54e4ffdd5affebcb0c015cc6ae74635c0831ed71.

Workarounds

  • Configure Rack::QueryParser with an explicit & delimiter to disable ; splitting
  • Implement request filtering at the WAF or reverse proxy to reject requests with excessive ; characters in query strings
  • Apply resource limits (memory, CPU) to Ruby application processes using containerization or cgroups
  • Deploy request size limits to prevent oversized query strings from reaching the application
bash
# Gemfile update example
# Ensure Rack is updated to the patched version
gem 'rack', '>= 2.2.18'

# Then run:
# bundle update rack

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

  • 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 Commit Update

  • GitHub Security Advisory GHSA-625h-95r8-8xpm
  • 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 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