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

CVE-2026-33574: Openclaw Path Traversal Vulnerability

CVE-2026-33574 is a path traversal vulnerability in Openclaw that allows local attackers to redirect installer writes outside the intended directory. This article covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-33574 Overview

CVE-2026-33574 is a Time-of-Check Time-of-Use (TOCTOU) race condition vulnerability affecting OpenClaw before version 2026.3.8. The vulnerability exists in the skills download installer component, which validates the tools root lexically but reuses the mutable path during archive download and copy operations. A local attacker can exploit this race condition by rebinding the tools-root path between validation and final write operations, redirecting the installer outside the intended tools directory.

Critical Impact

Local attackers can exploit this path traversal vulnerability to write arbitrary files outside the intended tools directory, potentially leading to code execution or system compromise through file overwrite attacks.

Affected Products

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

Discovery Timeline

  • 2026-03-29 - CVE-2026-33574 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-33574

Vulnerability Analysis

This vulnerability is classified as CWE-367 (Time-of-Check Time-of-Use Race Condition). The skills download installer in OpenClaw performs path validation to ensure files are written within the designated tools directory. However, the implementation contains a fundamental flaw: after validating the tools-root path lexically, the installer reuses this mutable path object during subsequent archive download and copy operations without re-verification.

The window between the initial path validation and the final file write operation creates an exploitable race condition. During this window, a local attacker with appropriate privileges can rebind the tools-root path to point to an arbitrary location on the filesystem. When the installer proceeds to write files using the rebinded path, the files are written outside the intended tools directory.

Root Cause

The root cause is improper handling of mutable path references in the skills download installer. The code validates the destination path at check-time but does not lock or re-validate the path at use-time. This classic TOCTOU vulnerability pattern allows path rebinding between validation and file operations, circumventing the intended security boundary that should confine writes to the tools directory.

Attack Vector

The attack requires local access to the system where OpenClaw is running. An attacker must be able to monitor and predict when the skills download installer is executing its validation phase, then quickly rebind the tools-root path (via symlink manipulation, mount point changes, or other filesystem-level techniques) before the write operation completes. While the local access requirement and timing constraints provide some protection, successful exploitation enables arbitrary file writes which can lead to privilege escalation or code execution.

The vulnerability manifests during the archive extraction phase of the skills download process. The installer first checks that the target path is within the tools directory boundary, but the path object remains mutable. An attacker can replace the validated directory with a symlink pointing elsewhere before the actual file write occurs. For detailed technical analysis, refer to the VulnCheck Advisory.

Detection Methods for CVE-2026-33574

Indicators of Compromise

  • Unexpected symlinks created within the OpenClaw tools directory pointing to system-critical paths
  • Suspicious file creation or modification events in directories outside the expected tools root
  • Evidence of rapid filesystem operations (symlink creation/deletion) timed with OpenClaw skills download activity
  • Unexpected files appearing in system directories that correlate with OpenClaw installation activity

Detection Strategies

  • Monitor for symlink creation and modification events in the OpenClaw tools directory using file integrity monitoring tools
  • Implement real-time filesystem auditing to detect path rebinding attempts during OpenClaw operations
  • Deploy endpoint detection rules that alert on skills download operations followed by writes outside the tools directory
  • Review OpenClaw process activity for anomalous file system calls that suggest race condition exploitation

Monitoring Recommendations

  • Enable detailed audit logging for all OpenClaw installation and update operations
  • Configure SentinelOne or equivalent EDR solutions to monitor Node.js process file operations with path traversal detection
  • Establish baseline behavior for OpenClaw skills downloads and alert on deviations
  • Monitor for privilege escalation attempts that may follow successful exploitation

How to Mitigate CVE-2026-33574

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.8 or later immediately
  • Review recent OpenClaw skills download activity for signs of exploitation
  • Audit file integrity across the system to identify any unauthorized file modifications
  • Restrict local access to systems running vulnerable OpenClaw versions until patching is complete

Patch Information

The OpenClaw maintainers have addressed this vulnerability in version 2026.3.8. The fix is available in commit 9abf014. Additional details can be found in the GitHub Security Advisory GHSA-vhwf-4x96-vqx2. Organizations should apply this update through their standard Node.js package management workflow.

Workarounds

  • Disable skills download functionality if not required until the patch can be applied
  • Run OpenClaw with minimal filesystem permissions to limit the impact of potential exploitation
  • Implement additional access controls on the tools directory to prevent symlink creation by non-privileged users
  • Consider containerizing OpenClaw installations to limit filesystem access scope
bash
# Upgrade OpenClaw to the patched version
npm update openclaw@2026.3.8

# Verify installed version
npm list openclaw

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOpenclaw

  • SeverityMEDIUM

  • CVSS Score5.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:H/AT:N/PR:L/UI:N/VC:N/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-367
  • Technical References
  • VulnCheck Advisory on Path Traversal
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33581: Openclaw Path Traversal Vulnerability

  • CVE-2026-34510: OpenClaw Path Traversal Vulnerability

  • CVE-2026-32846: OpenClaw Path Traversal Vulnerability

  • CVE-2026-32054: OpenClaw Path Traversal Vulnerability
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