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

CVE-2026-28470: OpenClaw Allowlist Bypass RCE Vulnerability

CVE-2026-28470 is an allowlist bypass RCE vulnerability in OpenClaw that lets attackers execute arbitrary commands via command substitution. This article covers technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-28470 Overview

OpenClaw versions prior to 2026.2.2 contain an exec approvals allowlist bypass vulnerability that allows attackers to execute arbitrary commands by injecting command substitution syntax. This vulnerability exists when the exec approvals feature is enabled, and attackers can bypass the allowlist protection by embedding unescaped $() or backticks inside double-quoted strings to execute unauthorized commands.

Critical Impact

This command injection vulnerability enables remote attackers to bypass security controls and execute arbitrary system commands, potentially leading to full system compromise, data exfiltration, and lateral movement within affected environments.

Affected Products

  • OpenClaw versions prior to 2026.2.2

Discovery Timeline

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

Technical Details for CVE-2026-28470

Vulnerability Analysis

This vulnerability is classified under CWE-88 (Improper Neutralization of Argument Delimiters in a Command). The flaw resides in the exec approvals functionality within OpenClaw's command execution pipeline. When exec approvals are enabled, the application implements an allowlist mechanism to restrict which commands can be executed. However, the parsing logic fails to properly handle command substitution syntax within double-quoted strings.

The vulnerable code does not recognize that shell command substitution using $() syntax or backticks (`) can be embedded within double-quoted strings to execute arbitrary commands. This means an attacker can craft malicious input that appears to conform to the allowlist but actually executes unauthorized commands through shell expansion.

Root Cause

The root cause lies in insufficient input validation within the exec allowlist parsing logic. The original implementation tracked certain disallowed pipeline tokens but failed to account for command substitution escape sequences within double-quoted contexts. Specifically, the parser did not properly sanitize or block the $ and backtick characters when they appeared inside double quotes, allowing shell command substitution to occur during execution.

Attack Vector

The attack vector is network-based and requires no user interaction or prior authentication. An attacker can exploit this vulnerability by submitting specially crafted input containing command substitution syntax embedded within double-quoted strings. When the exec approvals system processes this input, the malicious command substitution is evaluated by the underlying shell, bypassing the intended allowlist restrictions.

For example, an attacker could embed $(malicious_command) within an otherwise allowed command string, causing the shell to execute the nested command before processing the outer command.

typescript
 };
 
 const DISALLOWED_PIPELINE_TOKENS = new Set([">", "<", "`", "\n", "\r", "(", ")"]);
+const DOUBLE_QUOTE_ESCAPES = new Set(["\\", '"', "$", "`", "\n", "\r"]);
+
+function isDoubleQuoteEscape(next: string | undefined): next is string {
+  return Boolean(next && DOUBLE_QUOTE_ESCAPES.has(next));
+}
 
 type IteratorAction = "split" | "skip" | "include" | { reject: string };
 

Source: GitHub Commit Reference

The security patch introduces a new DOUBLE_QUOTE_ESCAPES set that explicitly includes the $ and backtick characters as escape sequences that must be handled within double-quoted contexts. The isDoubleQuoteEscape function provides proper validation to ensure these dangerous characters are neutralized when parsing commands.

Detection Methods for CVE-2026-28470

Indicators of Compromise

  • Unexpected command execution logs containing $() or backtick syntax in application arguments
  • Anomalous process spawning from OpenClaw application processes
  • Network connections or file system modifications initiated by the OpenClaw process that deviate from normal operational patterns
  • Log entries showing exec approval requests with embedded shell metacharacters

Detection Strategies

  • Monitor application logs for command strings containing unescaped $() or backtick sequences within quoted arguments
  • Implement runtime application security monitoring to detect command injection patterns
  • Deploy network intrusion detection rules to identify exploitation attempts targeting OpenClaw endpoints
  • Audit process creation events from OpenClaw services for unexpected child processes

Monitoring Recommendations

  • Enable verbose logging for exec approvals functionality to capture all command execution requests
  • Implement file integrity monitoring on critical system directories that could be modified by command injection
  • Configure security information and event management (SIEM) alerts for command substitution patterns in application inputs
  • Monitor outbound network connections from application servers for signs of data exfiltration

How to Mitigate CVE-2026-28470

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.2 or later immediately
  • If unable to upgrade immediately, disable the exec approvals feature until patching is complete
  • Review application logs for any signs of prior exploitation attempts
  • Implement network segmentation to limit the impact of potential compromise

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.2.2. The fix hardens the exec allowlist parsing by introducing proper handling of escape sequences within double-quoted strings. The patch commit (d1ecb46076145deb188abcba8f0699709ea17198) adds validation for the $ and backtick characters within double-quote contexts, preventing command substitution attacks.

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

Workarounds

  • Disable the exec approvals feature if it is not required for your deployment
  • Implement additional input validation at the application layer to reject commands containing shell metacharacters
  • Deploy a web application firewall (WAF) with rules to block command injection patterns
  • Restrict network access to OpenClaw services to trusted sources only
bash
# Disable exec approvals feature as a temporary workaround
# Add to OpenClaw configuration file
OPENCLAW_EXEC_APPROVALS_ENABLED=false

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenclaw

  • SeverityCRITICAL

  • CVSS Score9.2

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-88
  • Technical References
  • GitHub Commit Reference

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

  • CVE-2026-28393: OpenClaw Path Traversal 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