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

CVE-2026-33573: Openclaw Auth Bypass Vulnerability

CVE-2026-33573 is an authorization bypass flaw in Openclaw that lets authenticated operators escape workspace boundaries and execute arbitrary operations. This article covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-33573 Overview

CVE-2026-33573 is an authorization bypass vulnerability discovered in OpenClaw, a Node.js-based development platform. The vulnerability exists in the gateway agent RPC component, which fails to properly validate workspace boundary restrictions when processing user-supplied spawnedBy and workspaceDir parameters. Authenticated operators with operator.write permission can exploit this flaw to escape configured workspace boundaries and execute arbitrary file and exec operations from any process-accessible directory on the target system.

Critical Impact

Remote authenticated attackers can bypass workspace isolation controls, potentially leading to unauthorized file access, arbitrary command execution, and complete compromise of systems accessible to the OpenClaw process.

Affected Products

  • OpenClaw versions prior to 2026.3.11
  • OpenClaw for Node.js (all affected platforms)

Discovery Timeline

  • 2026-03-29 - CVE-2026-33573 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-33573

Vulnerability Analysis

This authorization bypass vulnerability (CWE-668: Exposure of Resource to Wrong Sphere) stems from inadequate access control validation in the OpenClaw gateway agent RPC interface. The vulnerability allows authenticated operators to manipulate critical path parameters that control workspace boundaries, effectively nullifying the isolation security model that OpenClaw relies upon for multi-tenant or sandboxed operations.

When an authenticated operator submits an RPC request, the gateway agent accepts user-controlled values for the spawnedBy and workspaceDir parameters without sufficient validation against the operator's authorized boundaries. This architectural oversight enables a legitimate user with operator.write privileges to specify arbitrary directory paths, breaking out of their designated workspace and gaining access to sensitive system resources.

Root Cause

The root cause of CVE-2026-33573 lies in the improper validation of user-supplied workspace parameters within the gateway agent RPC handler. The vulnerable code path trusts the spawnedBy and workspaceDir values provided by authenticated operators without verifying they fall within the operator's authorized workspace boundaries. This represents a classic confused deputy problem where the RPC service performs privileged operations based on untrusted input, allowing attackers to abuse the service's elevated privileges to access resources outside their permitted scope.

Attack Vector

The attack is network-accessible and requires low-privilege authentication (operator.write permission). An attacker who has obtained valid operator credentials can craft malicious RPC requests with manipulated workspace parameters. By supplying attacker-controlled spawnedBy and workspaceDir values pointing to directories outside their workspace, the attacker can:

  1. Read arbitrary files accessible to the OpenClaw process
  2. Write to arbitrary locations within the process's permission scope
  3. Execute commands in the context of arbitrary directories
  4. Potentially escalate access to sensitive configuration files, credentials, or other workspaces

The vulnerability requires no user interaction and has low attack complexity, making it particularly dangerous in environments where OpenClaw handles multiple tenants or sensitive data.

Detection Methods for CVE-2026-33573

Indicators of Compromise

  • Unusual RPC requests containing workspaceDir values pointing outside expected workspace paths
  • File access or execution operations originating from unexpected directories
  • Operators accessing files or directories outside their assigned workspace boundaries
  • Anomalous patterns in gateway agent logs showing cross-workspace operations

Detection Strategies

  • Monitor gateway agent RPC logs for requests with workspaceDir or spawnedBy parameters containing path traversal sequences or absolute paths to sensitive directories
  • Implement file integrity monitoring on critical system directories that should not be accessed by OpenClaw operators
  • Deploy runtime application security monitoring to detect workspace boundary violations
  • Configure alerting for any file operations outside of designated workspace directories

Monitoring Recommendations

  • Enable verbose logging for the OpenClaw gateway agent to capture all RPC parameter values
  • Establish baseline workspace access patterns and alert on deviations
  • Monitor for operators accessing multiple distinct workspace directories in rapid succession
  • Review audit logs for unexpected exec operations or file modifications outside workspace boundaries

How to Mitigate CVE-2026-33573

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.11 or later immediately
  • Audit recent gateway agent RPC logs for potential exploitation attempts
  • Review operator permissions and revoke operator.write access from accounts that do not require it
  • Implement network segmentation to limit exposure of the gateway agent RPC interface

Patch Information

OpenClaw has released version 2026.3.11 which addresses this authorization bypass vulnerability. The patch implements proper validation of spawnedBy and workspaceDir parameters against the authenticated operator's authorized workspace boundaries before processing RPC requests. Organizations should upgrade immediately by updating their Node.js package dependencies.

For detailed patch information, refer to the GitHub Security Advisory and the VulnCheck Security Advisory.

Workarounds

  • Restrict network access to the gateway agent RPC interface using firewall rules or network ACLs
  • Temporarily disable or limit operator.write permissions to trusted accounts only
  • Implement additional proxy-level validation of RPC parameters before they reach the gateway agent
  • Monitor and block RPC requests containing suspicious path values using a web application firewall or API gateway
bash
# Example: Restrict gateway agent RPC access via iptables
# Allow only trusted management network (adjust IP range as needed)
iptables -A INPUT -p tcp --dport 8080 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-668
  • Technical References
  • VulnCheck Security Advisory
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34511: OpenClaw OAuth Auth Bypass Vulnerability

  • CVE-2026-34426: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-32916: Openclaw Auth Bypass Vulnerability

  • CVE-2026-32921: Openclaw Auth Bypass 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