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-2026-33229

CVE-2026-33229: XWiki Platform RCE Vulnerability

CVE-2026-33229 is a remote code execution flaw in XWiki Platform allowing script right users to bypass Velocity sandboxing and execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-33229 Overview

CVE-2026-33229 is a critical Sandbox Bypass vulnerability in XWiki Platform, a generic wiki platform offering runtime services for applications built on top of it. Prior to versions 17.4.8 and 17.10.1, an improperly protected scripting API allows any user with script right to bypass the sandboxing of the Velocity scripting API and execute arbitrary Python scripts. This vulnerability enables full access to the XWiki instance, compromising the confidentiality, integrity, and availability of the entire deployment.

Critical Impact

Attackers with script rights can escape Velocity sandbox restrictions to execute arbitrary Python code, gaining complete control over the XWiki instance including all wiki content, user data, and server-side execution capabilities.

Affected Products

  • XWiki Platform versions prior to 17.4.8
  • XWiki Platform versions prior to 17.10.1

Discovery Timeline

  • April 8, 2026 - CVE-2026-33229 published to NVD
  • April 8, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33229

Vulnerability Analysis

This vulnerability falls under CWE-862 (Missing Authorization), where the XWiki Platform fails to properly enforce access controls on its scripting API. The core issue resides in the ScriptXWikiServletRequest class, which exposes the underlying getRequest() method without adequate authorization checks. This design flaw allows users with script privileges to access low-level servlet request objects that should be restricted to trusted contexts only.

When exploited, an attacker can leverage this unprotected API to break out of the Velocity scripting sandbox. The Velocity template engine is designed to provide a controlled execution environment, but the exposed servlet request object provides a pathway to invoke more powerful scripting engines, including Python. This escalation from Velocity to Python execution represents a complete security boundary violation.

The impact extends to full instance compromise—attackers can read and modify any wiki content, access sensitive configuration data, execute system commands, and potentially pivot to attack other systems accessible from the XWiki server.

Root Cause

The root cause is an insufficiently protected API endpoint in the ScriptXWikiServletRequest class located at xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/render/ScriptXWikiServletRequest.java. The getRequest() method was accessible to script-privileged users without proper authorization validation, allowing direct access to the underlying ServletRequest object. This object provides capabilities that extend beyond what the Velocity sandbox permits, creating an escape vector.

Attack Vector

The attack is network-accessible and requires the attacker to have authenticated access with script rights on the XWiki instance. While script right is considered a privileged permission, it is commonly granted to wiki editors and content creators in many deployments. The attacker exploits the unprotected getRequest() method to obtain a reference to the raw servlet request object, then uses this access to invoke Python or other scripting engines that operate outside the Velocity sandbox constraints.

The security patch addresses this by restricting the getRequest() method to only return controlled objects, as shown in the commit:

java
 import java.util.Set;
 
 import javax.servlet.ServletContext;
+import javax.servlet.ServletRequest;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpSession;

Source: GitHub Commit Update

The patch modifies the import statements and implements proper access controls to ensure the getRequest() method only returns properly sandboxed objects to script contexts.

Detection Methods for CVE-2026-33229

Indicators of Compromise

  • Unexpected Python script execution in XWiki server logs
  • Wiki pages containing Velocity templates that reference getRequest() or servlet objects
  • Unusual system command executions originating from the XWiki application process
  • Modifications to sensitive wiki content or user permissions by script-privileged accounts

Detection Strategies

  • Monitor XWiki application logs for scripting errors or unusual execution patterns involving Python or servlet APIs
  • Review wiki page content and templates for suspicious Velocity code attempting to access ScriptXWikiServletRequest.getRequest()
  • Implement file integrity monitoring on XWiki configuration and system directories
  • Audit user permissions to identify accounts with script rights that may have been compromised

Monitoring Recommendations

  • Enable verbose logging for the XWiki scripting subsystem to capture API access patterns
  • Configure alerting for any Python execution attempts within the XWiki application context
  • Monitor network traffic from the XWiki server for unexpected outbound connections
  • Implement regular audits of wiki content for malicious scripts or unusual template modifications

How to Mitigate CVE-2026-33229

Immediate Actions Required

  • Upgrade XWiki Platform to version 17.4.8 or 17.10.1 immediately
  • Review and restrict script rights to only trusted administrators
  • Audit existing wiki pages for potentially malicious Velocity templates
  • Monitor for indicators of compromise on XWiki instances that may have been exposed

Patch Information

XWiki has released security patches in versions 17.4.8 and 17.10.1 that properly restrict access to the servlet request object. The fix is tracked in the GitHub Security Advisory and related XWiki issue trackers XWIKI-23698 and XWIKI-23702. Organizations should prioritize upgrading to these patched versions.

Workarounds

  • Remove script rights from all untrusted users until patching is complete
  • Implement web application firewall rules to detect and block suspicious Velocity template submissions
  • Restrict network access to XWiki instances to trusted internal networks only
  • Consider temporarily disabling custom scripting functionality if not business-critical
bash
# Review users with script rights in XWiki
# Access Administration > Users & Groups > Rights
# Revoke 'Script' permission from non-administrative users

# Restrict XWiki to internal access only (example nginx configuration)
location /xwiki {
    allow 10.0.0.0/8;
    allow 192.168.0.0/16;
    deny all;
    proxy_pass http://localhost:8080/xwiki;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechXwiki

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/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-862
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • XWiki Issue Tracker #23698

  • XWiki Issue Tracker #23702
  • Related CVEs
  • CVE-2025-24893: XWiki Platform RCE Vulnerability

  • CVE-2024-31982: XWiki Platform RCE Vulnerability

  • CVE-2025-55730: XWiki Remote Macros RCE Vulnerability

  • CVE-2025-55729: XWiki Remote Macros RCE 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