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

CVE-2026-27523: Openclaw Path Traversal Vulnerability

CVE-2026-27523 is a path traversal vulnerability in Openclaw allowing attackers to bypass sandbox isolation via symlinked directories. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: March 20, 2026

CVE-2026-27523 Overview

OpenClaw versions prior to 2026.2.24 contain a sandbox bind validation vulnerability that allows attackers to bypass allowed-root and blocked-path checks via symlinked parent directories with non-existent leaf paths. This Path Traversal vulnerability (CWE-22) enables attackers to craft bind source paths that appear within allowed roots during validation but ultimately resolve outside sandbox boundaries once missing leaf components are created, effectively weakening bind-source isolation enforcement.

Critical Impact

Attackers can escape sandbox isolation by exploiting symlink resolution behavior, potentially gaining unauthorized access to files and directories outside the intended sandbox boundaries.

Affected Products

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

Discovery Timeline

  • 2026-03-18 - CVE-2026-27523 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-27523

Vulnerability Analysis

This vulnerability exists in OpenClaw's sandbox bind validation logic, specifically in how the system resolves file paths containing symlinked parent directories when the final leaf path component does not yet exist. The flaw allows an attacker to construct a path where the parent directories contain symlinks pointing outside the sandbox, but the non-existent leaf component causes the validation check to pass because the full path cannot be resolved at validation time.

The core issue lies in the original tryRealpathAbsolute() function, which would simply return the input path unchanged if the path did not exist. This behavior meant that symlinks in parent directories were not resolved when validating paths with missing leaf components, creating a time-of-check-to-time-of-use (TOCTOU) vulnerability.

Root Cause

The root cause is insufficient path resolution during bind source validation. When validating a bind source path like /sandbox/allowed/symlink-parent/nonexistent-leaf, the original implementation would check if the full path exists. If the leaf (nonexistent-leaf) doesn't exist, the path validation would skip symlink resolution entirely, using the literal path string for the allowed-root and blocked-path checks.

An attacker could exploit this by:

  1. Creating a symlink within an allowed directory that points outside the sandbox
  2. Specifying a bind source path using this symlink as a parent directory with a non-existent leaf
  3. The validation passes because the literal path appears to be within allowed boundaries
  4. Once the application creates the leaf component, the actual resolved path escapes the sandbox

Attack Vector

The attack requires local access to the system and the ability to create symlinks within allowed sandbox directories. The attacker crafts a malicious bind configuration that leverages symlinked parent directories combined with non-existent leaf paths to bypass sandbox isolation enforcement.

typescript
   return null;
 }
 
-function tryRealpathAbsolute(path: string): string {
-  if (!path.startsWith("/")) {
-    return path;
+function resolvePathViaExistingAncestor(sourcePath: string): string {
+  if (!sourcePath.startsWith("/")) {
+    return sourcePath;
   }
-  if (!existsSync(path)) {
-    return path;
+
+  const normalized = normalizeHostPath(sourcePath);
+  let current = normalized;
+  const missingSegments: string[] = [];
+
+  // Resolve through the deepest existing ancestor so symlink parents are honored
+  // even when the final source leaf does not exist yet.
+  while (current !== "/" && !existsSync(current)) {
+    missingSegments.unshift(posix.basename(current));
+    const parent = posix.dirname(current);
+    if (parent === current) {
+      break;
+    }
+    current = parent;
+  }
+
+  if (!existsSync(current)) {
+    return normalized;

Source: GitHub Commit Update

Detection Methods for CVE-2026-27523

Indicators of Compromise

  • Unexpected symlinks within sandbox allowed directories pointing to sensitive system paths
  • Bind mount configurations with paths containing symlinked parent components
  • File access or modifications occurring outside expected sandbox boundaries
  • Log entries showing sandbox bind operations with paths that resolve differently than expected

Detection Strategies

  • Monitor filesystem operations for symlink creation within sandbox-controlled directories
  • Implement integrity checking on sandbox configuration files and bind mount specifications
  • Use file access monitoring to detect reads/writes outside sandbox boundaries
  • Audit bind mount configurations for paths containing symbolic links

Monitoring Recommendations

  • Enable detailed logging of all sandbox bind validation operations
  • Monitor for unusual file system traversal patterns that cross sandbox boundaries
  • Implement alerting on symlink creation events within sensitive directories
  • Review sandbox configurations periodically for suspicious path specifications

How to Mitigate CVE-2026-27523

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.24 or later immediately
  • Review existing sandbox configurations for potentially malicious bind source paths
  • Audit symlinks within allowed sandbox directories for unauthorized targets
  • Implement additional monitoring for sandbox escape attempts

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.2.24. The fix replaces the tryRealpathAbsolute() function with a new resolvePathViaExistingAncestor() function that properly resolves symlinks in parent directories even when the final leaf path does not exist. This ensures that all symlinks in the path chain are resolved before validation checks are performed.

The security patch is available at GitHub Commit Update. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Restrict symlink creation permissions within sandbox allowed directories
  • Implement additional filesystem-level controls to prevent symlinks pointing outside sandbox boundaries
  • Use mandatory access control systems (SELinux, AppArmor) to enforce sandbox boundaries at the kernel level
  • Manually audit and remove any suspicious symlinks within sandbox directories
bash
# Configuration example - Remove suspicious symlinks from sandbox directories
# List all symlinks in sandbox allowed directories
find /sandbox/allowed -type l -exec ls -la {} \;

# Check symlink targets to identify any pointing outside sandbox
find /sandbox/allowed -type l -exec readlink -f {} \; | grep -v "^/sandbox/allowed"

# Remove unauthorized symlinks (review before executing)
# find /sandbox/allowed -type l -lname '/path/outside/sandbox/*' -delete

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 Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:H/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Commit Update

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

  • CVE-2026-35658: Openclaw Path Traversal Vulnerability

  • CVE-2026-3689: OpenClaw Canvas Path Traversal Vulnerability

  • CVE-2026-33581: Openclaw Path Traversal 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