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

CVE-2026-28457: OpenClaw Path Traversal Vulnerability

CVE-2026-28457 is a path traversal vulnerability in OpenClaw that allows attackers to write files outside the sandbox workspace. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-28457 Overview

OpenClaw versions prior to 2026.2.14 contain a path traversal vulnerability (CWE-22) in the sandbox skill mirroring feature. When skill mirroring is enabled, the application uses the skill frontmatter name parameter without proper sanitization when copying skills into the sandbox workspace. This allows attackers who provide a crafted skill package containing traversal sequences like ../ or absolute paths in the name field to write files outside the intended sandbox workspace root directory.

Critical Impact

Attackers can escape the sandbox workspace and write arbitrary files to the filesystem, potentially overwriting critical application files or system configurations.

Affected Products

  • OpenClaw versions prior to 2026.2.14
  • Installations with sandbox skill mirroring enabled

Discovery Timeline

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

Technical Details for CVE-2026-28457

Vulnerability Analysis

This path traversal vulnerability exists in the sandbox skill mirroring functionality of OpenClaw. The vulnerability stems from improper handling of user-controlled input in the skill frontmatter name parameter during the skill synchronization process. When a skill package is mirrored into the sandbox workspace, the application constructs the destination file path by directly concatenating the workspace root with the skill name without validating that the resulting path remains within the sandbox boundaries.

The vulnerability requires user interaction as it necessitates the victim to import or mirror a maliciously crafted skill package. The attack is local in nature and requires the sandbox skill mirroring feature to be explicitly enabled.

Root Cause

The root cause is insufficient input validation in the skill workspace handling code (src/agents/skills/workspace.ts). The application fails to sanitize or validate the skill name parameter from the skill frontmatter before using it to construct filesystem paths. This allows directory traversal sequences to escape the intended sandbox workspace directory.

Attack Vector

The attack vector requires local access and user interaction. An attacker must:

  1. Create a malicious skill package with a crafted name field containing path traversal sequences (e.g., ../../etc/config)
  2. Distribute the malicious skill package to a target user
  3. The victim must have sandbox skill mirroring enabled and import/sync the malicious skill
  4. Upon mirroring, files are written outside the sandbox workspace to attacker-controlled locations

The following patch addresses the vulnerability by implementing proper path confinement:

typescript
 } from "./types.js";
 import { createSubsystemLogger } from "../../logging/subsystem.js";
 import { CONFIG_DIR, resolveUserPath } from "../../utils.js";
+import { resolveSandboxPath } from "../sandbox-paths.js";
 import { resolveBundledSkillsDir } from "./bundled-dir.js";
 import { shouldIncludeSkill } from "./config.js";
 import {

Source: GitHub Commit Changes

Detection Methods for CVE-2026-28457

Indicators of Compromise

  • Unexpected files appearing outside the OpenClaw sandbox workspace directory
  • Skill packages with suspicious name fields containing ../ sequences or absolute paths
  • File system modifications in directories adjacent to or outside the workspace root
  • Application logs showing skill sync operations with unusual path patterns

Detection Strategies

  • Monitor file system operations for write attempts outside the designated sandbox workspace directories
  • Implement file integrity monitoring (FIM) on critical system directories and application configuration files
  • Review imported skill packages for path traversal sequences in frontmatter fields
  • Audit OpenClaw application logs for skill mirroring activities with anomalous path patterns

Monitoring Recommendations

  • Enable detailed logging for the sandbox skill mirroring feature to capture all file operations
  • Configure alerts for file creation events in parent directories of the sandbox workspace
  • Implement real-time monitoring of skill import operations and validate path structures
  • Use SentinelOne's behavioral AI to detect anomalous file write patterns indicative of path traversal exploitation

How to Mitigate CVE-2026-28457

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.14 or later immediately
  • If unable to upgrade, disable the sandbox skill mirroring feature until the patch can be applied
  • Audit recently imported skill packages for malicious path traversal sequences in the name field
  • Review file system for unexpected files that may have been written outside the sandbox workspace

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.2.14. The fix introduces the resolveSandboxPath function from the sandbox-paths.js module to properly confine all skill sync destination paths within the sandbox workspace boundaries.

For detailed patch information, refer to the GitHub Commit Changes and the GitHub Security Advisory.

Workarounds

  • Disable sandbox skill mirroring in OpenClaw configuration until the patch is applied
  • Only import skill packages from trusted, verified sources
  • Implement network-level controls to prevent downloading skill packages from untrusted repositories
  • Use application sandboxing or containerization to limit the impact of potential path traversal exploitation
bash
# Disable sandbox skill mirroring in OpenClaw configuration
# Edit your OpenClaw configuration file (e.g., config.yaml)
sandbox:
  skill_mirroring:
    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

  • SeverityMEDIUM

  • CVSS Score5.6

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:A/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
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Commit Changes

  • GitHub Security Advisory

  • VulnCheck Advisory on Path Traversal
  • Related CVEs
  • CVE-2026-33581: Openclaw Path Traversal Vulnerability

  • CVE-2026-34510: OpenClaw Path Traversal Vulnerability

  • CVE-2026-33574: Openclaw Path Traversal Vulnerability

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