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

CVE-2026-28462: OpenClaw Path Traversal Vulnerability

CVE-2026-28462 is a path traversal vulnerability in OpenClaw browser control API that allows attackers to write files outside intended directories. This article covers the technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28462 Overview

OpenClaw versions prior to 2026.2.13 contain a path traversal vulnerability (CWE-22) in the browser control API that accepts user-supplied output paths for trace and download files without consistently constraining writes to temporary directories. Attackers with API access can exploit path traversal sequences in POST /trace/stop, POST /wait/download, and POST /download endpoints to write files outside intended temp roots, potentially leading to arbitrary file write conditions.

Critical Impact

Unauthenticated remote attackers can leverage this path traversal vulnerability to write arbitrary files to locations outside the intended temporary directories, potentially enabling configuration overwrite, code injection, or system compromise.

Affected Products

  • OpenClaw versions prior to 2026.2.13

Discovery Timeline

  • 2026-03-05 - CVE-2026-28462 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-28462

Vulnerability Analysis

This vulnerability stems from insufficient input validation in OpenClaw's browser control API endpoints that handle file output operations. The affected endpoints (POST /trace/stop, POST /wait/download, and POST /download) accept user-controlled file paths without proper sanitization, allowing attackers to use directory traversal sequences (e.g., ../) to escape the intended temporary directory boundaries.

The browser control API is designed to write trace and download files to a designated temporary directory. However, the lack of consistent path validation allows malicious actors with network access to the API to specify arbitrary output paths. This enables writing files to any location accessible by the OpenClaw process, which could include web roots, configuration directories, or system locations depending on the process privileges.

Root Cause

The root cause is the absence of path canonicalization and containment checks in the route handlers for trace and download operations. The original implementation in src/browser/routes/agent.act.ts and src/browser/routes/agent.debug.ts directly used user-supplied paths without verifying that the resolved path remains within the OpenClaw temporary root directory. This violates the principle of least privilege and secure path handling best practices.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker with network access to the OpenClaw browser control API can craft malicious POST requests to the vulnerable endpoints with path traversal payloads in the output path parameters. The attack complexity is low as it requires only basic knowledge of path traversal techniques.

typescript
// Security patch in src/browser/routes/agent.act.ts
// Source: https://github.com/openclaw/openclaw/commit/7f0489e4731c8d965d78d6eac4a60312e46a9426

   resolveProfileContext,
   SELECTOR_UNSUPPORTED_MESSAGE,
 } from "./agent.shared.js";
+import { DEFAULT_DOWNLOAD_DIR, resolvePathWithinRoot } from "./path-output.js";
 import { jsonError, toBoolean, toNumber, toStringArray, toStringOrEmpty } from "./utils.js";
 
 export function registerBrowserAgentActRoutes(

The patch introduces the resolvePathWithinRoot utility function that enforces path containment, ensuring all output paths are constrained to the OpenClaw temporary root directory.

Detection Methods for CVE-2026-28462

Indicators of Compromise

  • Unexpected file creation or modification outside OpenClaw's designated temporary directories
  • HTTP POST requests to /trace/stop, /wait/download, or /download endpoints containing ../ sequences or absolute paths
  • Unusual API activity patterns targeting browser control endpoints from external or untrusted sources
  • File system audit logs showing writes to sensitive directories originating from the OpenClaw process

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal sequences (../, ..%2f, ..%5c) in API request parameters
  • Monitor OpenClaw API access logs for anomalous requests to the affected endpoints
  • Deploy file integrity monitoring (FIM) on critical system directories to detect unauthorized file writes
  • Use network intrusion detection systems (NIDS) with signatures for path traversal attack patterns

Monitoring Recommendations

  • Enable verbose logging for all OpenClaw browser control API endpoints
  • Configure SIEM alerts for path traversal patterns in HTTP request payloads
  • Implement real-time file system monitoring on directories outside the designated temp root
  • Review API access controls and ensure the browser control API is not exposed to untrusted networks

How to Mitigate CVE-2026-28462

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.13 or later immediately
  • Restrict network access to the browser control API using firewall rules or network segmentation
  • Audit file system permissions to ensure the OpenClaw process runs with minimal required privileges
  • Review recent API logs for evidence of exploitation attempts

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.2.13. The fix introduces the resolvePathWithinRoot utility function in a new module (path-output.js) that canonicalizes user-supplied paths and validates they remain within the designated temporary root directory before any file operations occur. The security patch is available in commit 7f0489e4731c8d965d78d6eac4a60312e46a9426. For additional details, see the GitHub Security Advisory.

Workarounds

  • Place the OpenClaw browser control API behind an authenticated reverse proxy
  • Use network-level access controls to restrict API access to trusted hosts only
  • Run OpenClaw in a containerized environment with restricted file system mounts
  • Implement application-level request filtering to block requests containing path traversal sequences
bash
# Example: Restrict API access using iptables
# Allow access only from trusted internal network
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
  • TypePath Traversal

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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 Commit Update

  • GitHub Security Advisory

  • VulnCheck Path Traversal Advisory
  • 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