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

CVE-2025-32969: XWiki Platform SQL Injection Vulnerability

CVE-2025-32969 is a blind SQL injection vulnerability in XWiki Platform that allows unauthenticated attackers to execute arbitrary SQL statements. This article covers technical details, affected versions, impact, and mitigation.

Published: March 11, 2026

CVE-2025-32969 Overview

CVE-2025-32969 is a critical SQL Injection vulnerability affecting XWiki, a popular open-source wiki platform. This vulnerability allows remote unauthenticated attackers to escape from the HQL (Hibernate Query Language) execution context and perform blind SQL injection attacks against the database backend. The flaw is particularly severe as it bypasses security configurations, including restrictions that prevent unregistered users from viewing or editing pages.

Critical Impact

Remote unauthenticated attackers can execute arbitrary SQL statements on the database backend, potentially extracting sensitive data including password hashes or performing destructive UPDATE/INSERT/DELETE operations.

Affected Products

  • XWiki versions 1.8 through 15.10.15
  • XWiki versions 16.0 through 16.4.5
  • XWiki versions 16.5 through 16.10.0

Discovery Timeline

  • 2025-04-23 - CVE-2025-32969 published to NVD
  • 2025-04-30 - Last updated in NVD database

Technical Details for CVE-2025-32969

Vulnerability Analysis

This vulnerability represents a severe HQL injection flaw that allows attackers to break out of the intended query context and inject arbitrary SQL statements. The core issue lies in insufficient validation of query statements before execution. The vulnerability is exploitable without authentication, even when XWiki is configured to restrict access for unregistered users, making it particularly dangerous for internet-facing deployments.

The impact varies based on the database backend in use. Attackers may be able to extract confidential information such as password hashes, user credentials, and other sensitive data stored in the database. More critically, depending on database permissions, attackers could execute data modification queries (UPDATE, INSERT, DELETE), potentially leading to data integrity compromise or complete system takeover.

Root Cause

The root cause of CVE-2025-32969 stems from improper query validation in the HqlQueryExecutor class. The original implementation relied on HqlQueryUtils.isShortFormStatement() as an alternative path for validation, which could be bypassed. The vulnerable code path did not properly convert short-form HQL statements to complete statements before security validation, allowing malicious input to escape the intended query context.

Attack Vector

This vulnerability is exploitable over the network without any authentication requirements. Attackers can craft malicious requests that inject SQL commands through the HQL query execution pathway. The attack does not require user interaction and can be executed against any vulnerable XWiki instance exposed to the network. The blind nature of the injection means attackers may need to use time-based or boolean-based techniques to extract data, but the vulnerability provides a reliable path to full database compromise.

java
// Security patch showing improved query validation
// Source: https://github.com/xwiki/xwiki-platform/commit/5c11a874bd24a581f534d283186e209bbccd8113

protected static boolean isSafeSelect(String statementString)
{
    // An empty statement is safe
    if (statementString.isEmpty()) {
        return true;
    }

    // HqlQueryUtils#isSafe only works with complete statements
    String completeStatement = toCompleteShortForm(statementString);

    // Parse and validate the statement
    return HqlQueryUtils.isSafe(completeStatement);
}

The patch ensures that all statements, including short-form HQL queries, are converted to complete statements before security validation is performed, eliminating the bypass vector.

Detection Methods for CVE-2025-32969

Indicators of Compromise

  • Unusual or malformed HQL/SQL queries in XWiki application logs
  • Database query logs showing unexpected SELECT, UPDATE, INSERT, or DELETE operations
  • Time-based anomalies in web server response times indicating blind SQL injection attempts
  • Unexpected access patterns to the XWiki REST API search endpoints

Detection Strategies

  • Monitor web application firewall (WAF) logs for SQL injection attack patterns targeting XWiki endpoints
  • Implement database activity monitoring to detect anomalous query patterns or privilege escalation attempts
  • Review XWiki application logs for query execution errors or exceptions related to HQL parsing
  • Deploy intrusion detection rules targeting common blind SQL injection techniques (time-based delays, boolean conditions)

Monitoring Recommendations

  • Enable verbose logging for the XWiki query execution subsystem during the remediation period
  • Configure alerts for database operations originating from the XWiki application user that access sensitive tables
  • Monitor for increased error rates in the database search and query endpoints
  • Implement network-level monitoring for unusual data exfiltration patterns

How to Mitigate CVE-2025-32969

Immediate Actions Required

  • Upgrade XWiki to version 15.10.16, 16.4.6, or 16.10.1 immediately
  • If immediate upgrade is not possible, consider temporarily restricting network access to the XWiki instance
  • Review database access logs for any evidence of exploitation prior to patching
  • Audit database contents for signs of unauthorized data access or modification

Patch Information

XWiki has released security patches addressing this vulnerability in versions 15.10.16, 16.4.6, and 16.10.1. The fix implements improved query validation that ensures all HQL statements, including short-form queries, are properly converted to complete statements before security validation. Additionally, the REST API search functionality now uses a secure query manager by default. Organizations should apply the relevant patch based on their current XWiki version branch.

For detailed patch information, see the GitHub Security Advisory and the XWiki Issue Tracker.

Workarounds

  • No workarounds are available for this vulnerability; upgrading to a patched version is the only mitigation
  • Consider placing XWiki behind a web application firewall with SQL injection protection as a temporary defense-in-depth measure
  • Restrict network access to the XWiki instance to trusted networks until patching is complete
bash
# Upgrade XWiki to patched version (example for 16.10.1)
# Download the latest patched version from XWiki's official repository
wget https://nexus.xwiki.org/nexus/content/groups/public/org/xwiki/platform/xwiki-platform-distribution-war/16.10.1/xwiki-platform-distribution-war-16.10.1.war

# Backup existing deployment before upgrade
cp -r /path/to/xwiki /path/to/xwiki-backup-$(date +%Y%m%d)

# Follow XWiki upgrade documentation for your specific deployment

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechXwiki

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability26.18%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/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-89
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Security Advisory

  • XWiki Issue Tracker
  • Related CVEs
  • CVE-2025-65091: XWiki Full Calendar Macro SQLi Vulnerability

  • CVE-2024-56158: XWiki Platform SQL Injection Vulnerability

  • CVE-2025-52472: XWiki Platform HQL Injection Vulnerability

  • CVE-2025-32429: XWiki Platform SQL Injection 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