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-66473

CVE-2025-66473: XWiki REST API DoS Vulnerability

CVE-2025-66473 is a denial of service flaw in XWiki's REST API that allows unlimited item requests, causing slowness and unavailability. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 22, 2026

CVE-2025-66473 Overview

CVE-2025-66473 is a Resource Exhaustion vulnerability affecting XWiki, an open-source wiki software platform. The vulnerability exists in the REST API which fails to enforce any limits for the number of items that can be requested in a single request. Depending on the number of pages in the wiki and the memory configuration, this can lead to slowness and complete unavailability of the wiki service.

As a concrete example, the /rest/wikis/xwiki/spaces resource returns all spaces on the wiki by default, which essentially corresponds to all pages. An attacker can exploit this lack of pagination limits to exhaust server resources and cause a denial of service condition.

Critical Impact

Unauthenticated attackers can cause denial of service by sending crafted REST API requests that exhaust server memory and CPU resources, leading to wiki unavailability.

Affected Products

  • XWiki versions 16.10.10 and below
  • XWiki versions 17.0.0-rc-1 through 17.4.3
  • XWiki versions 17.5.0-rc-1 through 17.6.0

Discovery Timeline

  • 2025-12-10 - CVE-2025-66473 published to NVD
  • 2025-12-19 - Last updated in NVD database

Technical Details for CVE-2025-66473

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The XWiki REST API endpoints accept user-controlled parameters for retrieving wiki content but fail to implement proper input validation or resource limits on the number of items returned in API responses.

The attack can be executed remotely over the network without requiring any authentication or user interaction. The vulnerability specifically impacts availability while confidentiality and integrity remain unaffected. When exploited, the server attempts to load and serialize an unbounded number of wiki pages into the response, consuming excessive memory and processing time.

Root Cause

The root cause is improper handling of the limit parameter in REST API requests. Prior to the patch, the application would accept any user-supplied limit value without validation against a maximum threshold. The vulnerable code directly converted the request parameter to a number and used it as the query limit, allowing attackers to request an unlimited number of items.

Attack Vector

The vulnerability is exploitable via network-accessible REST API endpoints. An unauthenticated attacker can send HTTP requests to endpoints such as /rest/wikis/xwiki/spaces without specifying a reasonable limit, causing the server to attempt to return all wiki spaces (pages) in a single response. This can exhaust available memory and CPU resources, particularly on wikis with a large number of pages.

The attack is straightforward and requires low complexity—no special conditions or authentication are needed. Multiple concurrent requests can amplify the impact, potentially causing complete service unavailability.

text
// Before patch - vulnerable code (attachmentsjson.vm)
  #set ($limit = $numbertool.toNumber($request.limit).intValue())
  #if (!$limit)
    #set ($limit = 15)
  #end

// After patch - fixed code with validation
  #getAndValidateQueryLimitFromRequest('limit', 15, $limit)

Source: GitHub Commit Update

text
// Before patch - vulnerable DocumentTreeMacros.xml
  #set ($limit = $mathtool.max($numbertool.toNumber($request.limit).intValue(), 1))
  #if ("$!limit" == '')
    #set ($limit = 15)
  #end

// After patch - added limit validation
  #set ($limit = $mathtool.max($numbertool.toNumber($request.limit).intValue(), 1))
  #if ("$!limit" == '')
    #set ($limit = 15)
  #else
    #validateQueryLimit($limit)
  #end

Source: GitHub Commit Update

Detection Methods for CVE-2025-66473

Indicators of Compromise

  • Unusual spikes in memory consumption on XWiki server instances
  • Abnormally slow response times or timeouts for REST API endpoints
  • High volume of requests to /rest/wikis/xwiki/spaces or similar endpoints with missing or extremely high limit parameters
  • Server out-of-memory errors or crashes coinciding with REST API activity

Detection Strategies

  • Monitor web application firewall (WAF) logs for REST API requests without limit parameters or with unusually large values
  • Implement rate limiting on REST API endpoints to detect and block excessive request patterns
  • Configure application performance monitoring (APM) to alert on abnormal resource consumption patterns
  • Review access logs for repeated requests to space enumeration endpoints from single IP addresses

Monitoring Recommendations

  • Set up alerts for memory utilization thresholds on XWiki application servers
  • Monitor REST API response times and flag requests exceeding normal duration
  • Track concurrent connections to REST API endpoints and alert on unusual spikes
  • Implement log aggregation to correlate denial of service patterns across multiple server instances

How to Mitigate CVE-2025-66473

Immediate Actions Required

  • Upgrade XWiki to version 17.4.4 or 16.10.11 immediately
  • If immediate patching is not possible, implement WAF rules to enforce maximum limits on REST API requests
  • Review and restrict network access to REST API endpoints where possible
  • Monitor server resources closely for signs of exploitation until patching is complete

Patch Information

XWiki has addressed this vulnerability in versions 17.4.4 and 16.10.11. The fix introduces the #getAndValidateQueryLimitFromRequest and #validateQueryLimit macros to enforce proper limits on query parameters. Organizations should prioritize upgrading to these patched versions.

For detailed patch information, refer to:

  • GitHub Commit Update
  • GitHub Security Advisory
  • XWiki Issue Tracker Entry

Workarounds

  • Deploy a reverse proxy or WAF rule to enforce maximum limit parameter values on REST API requests
  • Restrict access to REST API endpoints to authenticated users only if business requirements permit
  • Implement request rate limiting at the network or application level to mitigate abuse
  • Consider temporarily disabling non-essential REST API endpoints until patching is complete
bash
# Example nginx rate limiting configuration for XWiki REST API
# Add to nginx server block

# Define rate limiting zone
limit_req_zone $binary_remote_addr zone=xwiki_rest:10m rate=10r/s;

# Apply to REST API location
location /rest/ {
    limit_req zone=xwiki_rest burst=20 nodelay;
    
    # Enforce maximum limit parameter
    if ($arg_limit ~ "^[0-9]+$") {
        set $limit_check $arg_limit;
    }
    if ($limit_check > 100) {
        return 400;
    }
    
    proxy_pass http://xwiki_backend;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechXwiki

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory

  • XWiki Issue Tracker Entry
  • Related CVEs
  • CVE-2026-40104: XWiki Platform DoS Vulnerability

  • CVE-2026-40105: XWiki Platform XSS Vulnerability

  • CVE-2026-33229: XWiki Platform RCE Vulnerability

  • CVE-2025-66024: XWiki Blog Application XSS 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