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

CVE-2026-43567: OpenClaw Path Traversal Vulnerability

CVE-2026-43567 is a path traversal flaw in OpenClaw's screen_record tool that allows attackers to write files outside the workspace boundary. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 7, 2026

CVE-2026-43567 Overview

CVE-2026-43567 is a path traversal vulnerability in OpenClaw versions before 2026.4.10. The flaw resides in the screen_record tool's outPath parameter, which fails to enforce workspace-only filesystem boundaries. Attackers with low-level privileges can supply an outPath value pointing outside the workspace directory to write files to arbitrary filesystem locations. The issue maps to CWE-862: Missing Authorization and affects the Node.js distribution of OpenClaw. Exploitation can lead to integrity loss across the host, including overwriting configuration files, scripts, or binaries reachable by the OpenClaw process.

Critical Impact

Authenticated attackers can write attacker-controlled files outside the OpenClaw workspace, enabling tampering with system files and potential follow-on code execution through overwritten executables or startup scripts.

Affected Products

  • OpenClaw (Node.js distribution) — all versions before 2026.4.10
  • openclaw-tools agent module (src/agents/openclaw-tools.ts)
  • pi-tools.read workspace guard module (src/agents/pi-tools.read.ts)

Discovery Timeline

  • 2026-05-05 - CVE-2026-43567 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-43567

Vulnerability Analysis

OpenClaw exposes an agent tool named screen_record that captures screen output and writes the resulting file to a path specified in the outPath parameter. The workspace guard wrapper, implemented in pi-tools.read.ts, was designed to validate user-supplied paths against the workspace root before any filesystem write occurs. However, the wrapper only validated a single hardcoded parameter key named path. Tools such as screen_record use a different parameter name (outPath) for their output destination, so the guard never inspected that value.

Because the guard skipped validation, the underlying tool resolved outPath directly against the host filesystem. Attackers can supply traversal sequences such as ../../etc/cron.d/payload or absolute paths to direct file writes anywhere the OpenClaw process can reach. The vulnerability requires authenticated access to the agent tool surface but no user interaction.

Root Cause

The root cause is missing authorization on a path parameter. The wrapToolWorkspaceRootGuardWithOptions helper iterated only over the parameter key path, leaving any tool that named its destination differently unprotected. The patched function accepts a configurable pathParamKeys list and validates each declared key with assertSandboxPath against the workspace root before execution.

Attack Vector

An attacker authenticated to OpenClaw invokes the screen_record tool and supplies an outPath value that escapes the workspace. The agent runtime forwards the value to the unguarded execute path, and the recording is written to the attacker-chosen location. No client-side interaction or social engineering is required.

typescript
// Patch from src/agents/pi-tools.read.ts — workspace guard now iterates configured path keys
   root: string,
   options?: {
     containerWorkdir?: string;
+    pathParamKeys?: readonly string[];
+    normalizeGuardedPathParams?: boolean;
   },
 ): AnyAgentTool {
+  const pathParamKeys =
+    options?.pathParamKeys && options.pathParamKeys.length > 0 ? options.pathParamKeys : ["path"];
   return {
     ...tool,
     execute: async (toolCallId, args, signal, onUpdate) => {
       const record = getToolParamsRecord(args);
-      const filePath = record?.path;
-      if (typeof filePath === "string" && filePath.trim()) {
+      let normalizedRecord: Record<string, unknown> | undefined;
+      for (const key of pathParamKeys) {
+        const filePath = record?.[key];
+        if (typeof filePath !== "string" || !filePath.trim()) {
+          continue;
+        }
         const sandboxPath = mapContainerPathToWorkspaceRoot({
           filePath,
           root,
           containerWorkdir: options?.containerWorkdir,
         });
-        await assertSandboxPath({ filePath: sandboxPath, cwd: root, root });
+        const sandboxResult = await assertSandboxPath({ filePath: sandboxPath, cwd: root, root });
+        if (options?.normalizeGuardedPathParams && record) {
+          normalizedRecord ??= { ...record };

Source: GitHub commit 635bb35

Detection Methods for CVE-2026-43567

Indicators of Compromise

  • File creation events from the OpenClaw process writing outside the configured workspace root, particularly to /etc/, /var/, user home directories, or scheduled task paths.
  • Agent tool invocations of screen_record with outPath values containing .., absolute paths, or symlinks resolving outside the workspace.
  • Unexpected .webm, .mp4, or other recording artifacts appearing in system or service directories.

Detection Strategies

  • Audit OpenClaw agent logs for screen_record calls and parse the outPath argument for traversal sequences or absolute prefixes.
  • Monitor filesystem telemetry for write operations originating from the OpenClaw Node.js process and correlate the target path against the declared workspace root.
  • Apply behavioral rules that flag short-lived processes spawning from files written by the OpenClaw process outside its workspace.

Monitoring Recommendations

  • Forward OpenClaw application logs and host process-file telemetry to a central analytics platform for retroactive hunting against the published indicators.
  • Alert on modifications to high-value paths (cron directories, systemd unit files, shell profile scripts) by any non-administrative service account.
  • Track invocation frequency and parameter values for all OpenClaw tools, not just screen_record, to surface abuse of other parameter keys.

How to Mitigate CVE-2026-43567

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.10 or later, which adds the pathParamKeys enforcement to the workspace guard.
  • Restrict access to the OpenClaw agent interface to trusted operators and rotate any credentials shared during the exposure window.
  • Review filesystem changes made by the OpenClaw service account since deployment and validate the integrity of files outside the workspace root.

Patch Information

The vendor fix is published in commit 635bb35b68d8faa5bfa2fda35feadd315122748a and detailed in GitHub Security Advisory GHSA-jf25-7968-h2h5. Additional analysis is available in the VulnCheck advisory. The patch extends wrapToolWorkspaceRootGuardWithOptions to validate every configured path parameter, including outPath, through assertSandboxPath.

Workarounds

  • If immediate upgrade is not possible, disable the screen_record tool in the agent registration to remove the vulnerable parameter surface.
  • Run the OpenClaw service under a dedicated low-privilege user with filesystem ACLs limited to the workspace directory.
  • Apply mandatory access controls (AppArmor, SELinux) to confine the OpenClaw process write scope to the workspace path.
bash
# Verify the installed OpenClaw version meets the patched release
npm ls openclaw

# Confirm the running process cannot write outside the workspace (Linux example)
sudo -u openclaw test -w /etc && echo "FAIL: writable" || echo "OK: not writable"

# Optional: restrict the service unit to the workspace directory
# /etc/systemd/system/openclaw.service.d/override.conf
# [Service]
# ReadWritePaths=/var/lib/openclaw/workspace
# ProtectSystem=strict
# NoNewPrivileges=true

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

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

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

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

  • CVE-2026-43533: OpenClaw Path Traversal Vulnerability

  • CVE-2026-44111: OpenClaw Path Traversal Vulnerability

  • CVE-2026-42424: 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