banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-26329

CVE-2026-26329: Openclaw Path Traversal Vulnerability

CVE-2026-26329 is a path traversal vulnerability in Openclaw personal AI assistant that lets authenticated attackers read arbitrary files from the Gateway host. This article covers technical details, affected versions, impact, and mitigation.

Published: February 27, 2026

CVE-2026-26329 Overview

CVE-2026-26329 is a path traversal vulnerability in OpenClaw, a personal AI assistant application. Prior to version 2026.2.14, authenticated attackers can read arbitrary files from the Gateway host by supplying absolute paths or path traversal sequences to the browser tool's upload action. The server passed these paths directly to Playwright's setInputFiles() APIs without restricting them to a safe root directory.

Critical Impact

Authenticated attackers can exfiltrate sensitive files from the Gateway host, including configuration files, credentials, and other confidential data by exploiting the unvalidated file path handling in the browser tool.

Affected Products

  • OpenClaw versions prior to 2026.2.14
  • OpenClaw Gateway with browser tool enabled
  • Deployments exposing Gateway beyond loopback (LAN/tailnet/custom bind, reverse proxy, tunnels)

Discovery Timeline

  • 2026-02-20 - CVE-2026-26329 published to NVD
  • 2026-02-20 - Last updated in NVD database

Technical Details for CVE-2026-26329

Vulnerability Analysis

This path traversal vulnerability (CWE-22) exists in OpenClaw's browser tool component, specifically in the upload action functionality. The vulnerability enables authenticated users to bypass intended directory restrictions and access files outside the designated upload directory by crafting malicious file paths containing traversal sequences like ../ or by specifying absolute paths.

The exploitation requires an attacker to have valid Gateway authentication (bearer token or password) and the browser tool permitted by tool policy for the target session. While the default configuration binds the Gateway to loopback, deployments that expose the Gateway beyond loopback significantly increase the attack surface and potential impact of this vulnerability.

Root Cause

The root cause lies in insufficient input validation when processing file paths provided to the browser tool's upload functionality. The application directly passed user-supplied paths to Playwright's setInputFiles() APIs without implementing proper path canonicalization or confinement checks. This allowed attackers to escape the intended upload directory and access arbitrary files on the filesystem accessible to the Gateway process.

Attack Vector

The attack is network-based and requires low privileges (authenticated access). An attacker must:

  1. Reach the Gateway HTTP surface or invoke browser control hook endpoints
  2. Present valid Gateway authentication credentials
  3. Have the browser tool permitted by tool policy for the session
  4. Supply malicious paths containing traversal sequences (e.g., ../../etc/passwd) or absolute paths to the upload action

The security patch introduces the resolvePathWithinRoot() function in src/browser/paths.ts to properly validate and confine paths:

typescript
+import path from "node:path";
+import { resolvePreferredOpenClawTmpDir } from "../infra/tmp-openclaw-dir.js";
+
+export const DEFAULT_BROWSER_TMP_DIR = resolvePreferredOpenClawTmpDir();
+export const DEFAULT_TRACE_DIR = DEFAULT_BROWSER_TMP_DIR;
+export const DEFAULT_DOWNLOAD_DIR = path.join(DEFAULT_BROWSER_TMP_DIR, "downloads");
+export const DEFAULT_UPLOAD_DIR = path.join(DEFAULT_BROWSER_TMP_DIR, "uploads");
+
+export function resolvePathWithinRoot(params: {
+  rootDir: string;
+  requestedPath: string;
+  scopeLabel: string;
+  defaultFileName?: string;
+}): { ok: true; path: string } | { ok: false; error: string } {
+  const root = path.resolve(params.rootDir);
+  const raw = params.requestedPath.trim();
+  if (!raw) {
+    if (!params.defaultFileName) {
+      return { ok: false, error: "path is required" };
+    }
+    return { ok: true, path: path.join(root, params.defaultFileName) };
+  }
+  const resolved = path.resolve(root, raw);
+  const rel = path.relative(root, resolved);
+  if (!rel || rel.startsWith("..") || path.isAbsolute(rel)) {
+    return { ok: false, error: `Invalid path: must stay within ${params.scopeLabel}` };
+  }
+  return { ok: true, path: resolved };
+}

Source: GitHub Commit

Detection Methods for CVE-2026-26329

Indicators of Compromise

  • Unusual file access patterns in Gateway logs showing paths with ../ sequences
  • Access attempts to sensitive system files (e.g., /etc/passwd, /etc/shadow, configuration files) via the browser tool
  • Authentication followed by file upload requests containing absolute paths
  • Abnormal file read operations outside the designated DEFAULT_UPLOAD_DIR directory

Detection Strategies

  • Implement log analysis rules to detect path traversal patterns in upload action requests
  • Monitor for requests to the browser tool endpoints containing ../, ..\\, or absolute path prefixes
  • Deploy web application firewall (WAF) rules to block common path traversal sequences
  • Audit Gateway access logs for authenticated sessions accessing unexpected file paths

Monitoring Recommendations

  • Enable verbose logging on OpenClaw Gateway to capture all file path requests
  • Configure alerts for failed path resolution attempts that may indicate exploitation attempts
  • Monitor filesystem access patterns for the OpenClaw process to detect unauthorized file reads
  • Review authentication logs for suspicious token usage patterns preceding file access anomalies

How to Mitigate CVE-2026-26329

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.14 or later immediately
  • Restrict Gateway binding to loopback only if external access is not required
  • Review and tighten tool policy to limit browser tool access to trusted sessions
  • Audit logs for any historical exploitation attempts before patching
  • Rotate Gateway authentication tokens as a precautionary measure

Patch Information

The vulnerability is fixed in OpenClaw version 2026.2.14. The patch implements the resolvePathWithinRoot() function that properly validates all upload paths, ensuring they are confined to the DEFAULT_UPLOAD_DIR directory. Traversal sequences and absolute paths that would escape this root are now rejected. The security fix can be reviewed in the GitHub Security Advisory GHSA-cv7m-c9jx-vg7q and the associated commit.

Workarounds

  • Disable the browser tool via tool policy configuration until patching is possible
  • Ensure Gateway is bound to loopback only and not exposed beyond localhost
  • Implement network-level access controls to restrict Gateway access to trusted sources
  • Deploy reverse proxy rules to filter requests containing path traversal patterns
bash
# Configuration example - Restrict Gateway to loopback only
# In openclaw configuration file
gateway:
  bind: "127.0.0.1"
  port: 8080
  
# Disable browser tool in tool policy
tools:
  browser:
    enabled: false

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.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/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-22
  • Technical References
  • GitHub Release v2026.2.14
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Security Advisory GHSA-cv7m-c9jx-vg7q
  • Related CVEs
  • CVE-2026-28486: OpenClaw Path Traversal Vulnerability

  • CVE-2026-28457: OpenClaw Path Traversal Vulnerability

  • CVE-2026-29611: OpenClaw Path Traversal Vulnerability

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