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
    • 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-10990

CVE-2025-10990: REXML ReDoS Denial of Service Vulnerability

CVE-2025-10990 is a Regular Expression Denial of Service flaw in REXML that exploits inefficient regex parsing of hex numeric character references. This post covers technical details, affected versions, and mitigation.

Updated: April 30, 2026

CVE-2025-10990 Overview

A flaw was found in REXML, the Ruby standard library for XML processing. A remote attacker could exploit inefficient regular expression (regex) parsing when processing hex numeric character references (&#x...;) in XML documents. This could lead to a Regular Expression Denial of Service (ReDoS), impacting the availability of the affected component. This issue is the result of an incomplete fix for CVE-2024-49761.

Critical Impact

Remote attackers can cause denial of service conditions by sending specially crafted XML documents containing malicious hex numeric character references, causing excessive CPU consumption through regex backtracking.

Affected Products

  • REXML Ruby XML parsing library
  • Ruby applications utilizing REXML for XML processing
  • Red Hat Enterprise Linux systems with affected REXML packages

Discovery Timeline

  • 2026-02-27 - CVE-2025-10990 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-10990

Vulnerability Analysis

This vulnerability is classified under CWE-1333 (Inefficient Regular Expression Complexity), commonly known as Regular Expression Denial of Service (ReDoS). The flaw exists in how REXML processes hex numeric character references in XML documents. When parsing XML content containing specially crafted &#x...; sequences, the regex engine can enter a state of catastrophic backtracking, consuming excessive CPU resources and causing the application to become unresponsive.

The vulnerability represents an incomplete remediation of the previously identified CVE-2024-49761, indicating that the original fix did not fully address all attack vectors related to hex numeric character reference processing. This makes any Ruby application that parses untrusted XML input using REXML potentially vulnerable to denial of service attacks.

Root Cause

The root cause lies in inefficient regular expression patterns used within REXML's XML parsing logic for handling hex numeric character references. When the regex engine encounters input strings that create ambiguous matching scenarios, it exhaustively explores all possible matching paths through exponential backtracking. This algorithmic complexity allows relatively small malicious inputs to consume disproportionate computational resources.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending XML documents containing malformed or excessively complex hex numeric character references to any endpoint that processes XML using the vulnerable REXML library. The malicious XML payload triggers the inefficient regex evaluation, causing the parsing operation to hang or consume excessive CPU time, effectively denying service to legitimate users.

The attack requires minimal complexity as the attacker simply needs to craft XML input with specific patterns that trigger worst-case regex performance. No special privileges are needed since the vulnerability is triggered through normal XML parsing operations.

Detection Methods for CVE-2025-10990

Indicators of Compromise

  • Unusual CPU spikes on systems processing XML data with REXML
  • Application timeouts or hangs during XML parsing operations
  • Incoming XML documents containing suspicious patterns of hex numeric character references (&#x...;)
  • Log entries showing extended processing times for XML parsing functions

Detection Strategies

  • Monitor application performance metrics for abnormal CPU utilization during XML processing
  • Implement input validation to detect and reject XML documents with excessive or malformed hex character references
  • Deploy web application firewalls (WAF) with rules to detect ReDoS attack patterns in XML payloads
  • Enable detailed logging for XML parsing operations to identify slow or hanging requests

Monitoring Recommendations

  • Set up alerts for CPU utilization thresholds on services that handle XML input
  • Monitor request latency patterns for endpoints accepting XML data
  • Track REXML parsing duration metrics to establish baselines and detect anomalies
  • Implement timeout mechanisms for XML parsing operations to limit impact

How to Mitigate CVE-2025-10990

Immediate Actions Required

  • Update REXML to the latest patched version as provided by your distribution
  • Apply Red Hat security updates referenced in RHSA-2025:17606, RHSA-2025:17613, and RHSA-2025:17693
  • Review applications that process untrusted XML input and implement input validation
  • Consider implementing request timeouts for XML parsing operations as a temporary measure

Patch Information

Red Hat has released security advisories addressing this vulnerability. Organizations using Red Hat Enterprise Linux or related distributions should apply the following updates:

  • Red Hat Security Advisory RHSA-2025:17606
  • Red Hat Security Advisory RHSA-2025:17613
  • Red Hat Security Advisory RHSA-2025:17693

Additional technical details are available in Red Hat Bug Report #2398216 and the Red Hat CVE Analysis for CVE-2025-10990.

Workarounds

  • Implement strict input validation on XML documents before parsing, rejecting inputs with suspicious character reference patterns
  • Set aggressive timeouts on XML parsing operations to limit the impact of ReDoS attempts
  • Consider using alternative XML parsing libraries that are not affected by this vulnerability for processing untrusted input
  • Deploy rate limiting on endpoints that accept XML input to reduce the effectiveness of DoS attacks
bash
# Example: Update REXML on Red Hat-based systems
sudo yum update ruby-rexml

# Or for DNF-based systems
sudo dnf update ruby-rexml

# Verify the installed version
rpm -q ruby-rexml

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRexml

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.16%

  • 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-1333
  • Technical References
  • Red Hat Security Advisory RHSA-2025:17606

  • Red Hat Security Advisory RHSA-2025:17613

  • Red Hat Security Advisory RHSA-2025:17693

  • Red Hat CVE Analysis CVE-2025-10990

  • Red Hat Bug Report #2398216
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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