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
      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
    • 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-28393

CVE-2026-28393: OpenClaw Path Traversal RCE Vulnerability

CVE-2026-28393 is a path traversal vulnerability in OpenClaw that enables remote code execution through malicious module loading. Attackers with configuration access can execute arbitrary JavaScript code with elevated privileges.

Published: March 6, 2026

CVE-2026-28393 Overview

CVE-2026-28393 is a path traversal vulnerability affecting OpenClaw versions 2.0.0-beta3 prior to 2026.2.14. The vulnerability exists in the hook transform module loading functionality, where the hooks.mappings[].transform.module parameter accepts absolute paths and directory traversal sequences without proper validation. This flaw enables attackers who have configuration write access to load and execute arbitrary JavaScript modules with the privileges of the gateway process.

Critical Impact

Attackers with configuration write access can achieve arbitrary JavaScript code execution with gateway process privileges, potentially leading to full system compromise.

Affected Products

  • OpenClaw versions 2.0.0-beta3 through versions prior to 2026.2.14

Discovery Timeline

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

Technical Details for CVE-2026-28393

Vulnerability Analysis

This vulnerability is classified as CWE-427 (Uncontrolled Search Path Element), manifesting specifically as a path traversal weakness in OpenClaw's hook transform module loading mechanism. The core issue lies in the application's failure to properly sanitize or validate file paths provided through configuration parameters.

When OpenClaw processes hook mappings, it dynamically loads JavaScript modules specified in the transform.module configuration field. The vulnerable code path does not enforce restrictions on the module path, allowing sequences such as ../ or absolute paths like /etc/malicious/payload.js to be specified. This bypasses intended security boundaries and permits loading of arbitrary JavaScript files from any location accessible to the gateway process.

The local attack vector requires the attacker to first obtain configuration write access to the OpenClaw instance. Once achieved, the attacker can modify the hook configuration to point to a malicious module, which will then be loaded and executed during normal gateway operation with full process privileges.

Root Cause

The root cause of CVE-2026-28393 is insufficient path validation in the module loading logic within OpenClaw's hook transform functionality. The application fails to normalize and validate the transform.module path parameter, allowing directory traversal sequences and absolute paths to escape the intended module directory. This represents a failure to implement proper input validation for security-sensitive file system operations.

Attack Vector

Exploitation of this vulnerability requires local access with the ability to modify OpenClaw configuration files. An attacker would follow this general approach:

  1. Gain write access to the OpenClaw configuration (through compromised credentials, misconfigured permissions, or another vulnerability)
  2. Place a malicious JavaScript module on the file system accessible to the gateway process
  3. Modify the hooks.mappings[].transform.module parameter to point to the malicious module using path traversal (e.g., ../../../tmp/malicious.js) or an absolute path
  4. Wait for or trigger the gateway to reload configuration and execute the malicious module

The malicious JavaScript code executes with the same privileges as the OpenClaw gateway process, potentially enabling lateral movement, data exfiltration, or further system compromise.

Detection Methods for CVE-2026-28393

Indicators of Compromise

  • Unusual path patterns in OpenClaw hook configuration files containing ../ sequences or absolute paths outside expected directories
  • Configuration changes to hooks.mappings[].transform.module parameters pointing to non-standard locations
  • Unexpected JavaScript files appearing in temporary directories or world-writable locations
  • Gateway process accessing files outside the normal OpenClaw installation directory

Detection Strategies

  • Monitor OpenClaw configuration files for unauthorized modifications, particularly changes to hook transform module paths
  • Implement file integrity monitoring on OpenClaw configuration directories
  • Analyze gateway process file access patterns for reads from unexpected filesystem locations
  • Review access logs for configuration management interfaces for suspicious activity

Monitoring Recommendations

  • Enable detailed logging for OpenClaw configuration changes and module loading events
  • Set up alerts for configuration file modifications outside of scheduled maintenance windows
  • Monitor the gateway process for spawning of unexpected child processes or network connections
  • Implement real-time configuration drift detection for production OpenClaw deployments

How to Mitigate CVE-2026-28393

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.14 or later immediately
  • Audit existing OpenClaw configurations for suspicious transform.module paths containing traversal sequences or absolute paths
  • Restrict write access to OpenClaw configuration files to only essential administrators
  • Review recent configuration changes for signs of unauthorized modification

Patch Information

The OpenClaw maintainers have addressed this vulnerability in version 2026.2.14. The fix implements proper path validation to prevent traversal sequences and restricts module loading to approved directories. Security patches are available through the official repository:

  • GitHub Commit 18e8bd6
  • GitHub Commit a0361b8

For detailed vulnerability information, refer to the GitHub Security Advisory and the Vulncheck Advisory.

Workarounds

  • Implement strict file system permissions to prevent the gateway process from reading files outside designated module directories
  • Use application-level firewalling or sandboxing to restrict the gateway process's filesystem access
  • Deploy configuration management tools to detect and revert unauthorized configuration changes
  • Consider running OpenClaw in a containerized environment with restricted filesystem mounts until patching is complete

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score8.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:H/UI:N/VC:H/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-427
  • Technical References
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory

  • Vulncheck Advisory on OpenClaw
  • Related CVEs
  • CVE-2026-29610: OpenClaw Command Hijacking RCE Vulnerability

  • CVE-2026-28484: OpenClaw Option Injection RCE Vulnerability

  • CVE-2026-28470: OpenClaw Allowlist Bypass RCE Vulnerability

  • CVE-2026-28456: OpenClaw Gateway RCE 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