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

CVE-2026-32973: Openclaw Exec Allowlist Bypass RCE Flaw

CVE-2026-32973 is an exec allowlist bypass vulnerability in Openclaw that enables remote code execution through wildcard path matching exploitation. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-32973 Overview

OpenClaw before version 2026.3.11 contains an exec allowlist bypass vulnerability in the matchesExecAllowlistPattern function. The vulnerability stems from improper pattern normalization that combines lowercasing with glob matching, resulting in overmatch behavior on POSIX paths. Attackers can exploit the ? wildcard matching across path segments to execute commands or access paths not intended to be permitted by operators.

Critical Impact

This vulnerability allows attackers to bypass security controls designed to restrict command execution, potentially enabling unauthorized command execution on affected systems running OpenClaw versions prior to 2026.3.11.

Affected Products

  • OpenClaw versions prior to 2026.3.11
  • OpenClaw Node.js package (all affected versions)

Discovery Timeline

  • 2026-03-29 - CVE-2026-32973 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-32973

Vulnerability Analysis

The vulnerability resides in OpenClaw's exec allowlist pattern matching mechanism. The matchesExecAllowlistPattern function is intended to restrict which commands or paths can be executed within the OpenClaw environment. However, the implementation contains a critical flaw in how it normalizes and matches patterns against user-supplied input.

The issue arises from two combined behaviors: the function applies lowercasing to patterns during normalization, and the glob matching implementation incorrectly handles the ? wildcard character. On POSIX systems, the ? wildcard should match any single character except the path separator (/). However, the flawed implementation allows the ? wildcard to match across path segments, effectively permitting the wildcard to match the / character itself.

Root Cause

The root cause is classified under CWE-625 (Permissive Regular Expression). The pattern matching logic in matchesExecAllowlistPattern fails to properly constrain the ? glob wildcard to prevent it from matching path separators. When combined with the case normalization (lowercasing), this creates conditions where carefully crafted paths can match allowlist patterns in unintended ways, bypassing the intended security restrictions.

Attack Vector

The attack is network-accessible and does not require authentication or user interaction. An attacker can craft malicious path inputs that exploit the permissive glob matching to bypass allowlist restrictions. By leveraging the ? wildcard's ability to match path separators, attackers can construct paths that match allowlist patterns while actually pointing to unauthorized commands or file locations.

For example, if an allowlist pattern is configured to permit /app/bin/safe?cmd, an attacker might be able to match this pattern with paths like /app/bin/safe/malicious/cmd due to the ? wildcard incorrectly matching the / character and subsequent path components.

The vulnerability mechanism is detailed in the GitHub Security Advisory and the VulnCheck Advisory.

Detection Methods for CVE-2026-32973

Indicators of Compromise

  • Unusual command execution patterns involving paths with unexpected directory traversal
  • Log entries showing executed commands that should have been blocked by allowlist policies
  • Attempted access to paths containing characters that would typically be filtered by glob patterns

Detection Strategies

  • Monitor application logs for command execution events that do not match expected allowlist configurations
  • Implement additional input validation layers that explicitly reject paths containing unexpected directory separators
  • Deploy runtime application self-protection (RASP) solutions to detect allowlist bypass attempts
  • Review audit logs for anomalous path patterns in exec calls

Monitoring Recommendations

  • Enable verbose logging for the OpenClaw exec allowlist functionality to capture pattern matching decisions
  • Set up alerts for command executions that originate from unexpected path patterns
  • Implement file integrity monitoring on critical executables and scripts
  • Monitor for privilege escalation attempts that may follow successful allowlist bypass

How to Mitigate CVE-2026-32973

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.11 or later immediately
  • Review current exec allowlist configurations for overly permissive patterns
  • Audit recent command execution logs for potential exploitation attempts
  • Consider temporarily restricting exec functionality if upgrade is not immediately possible

Patch Information

OpenClaw has released version 2026.3.11 which addresses this vulnerability by correcting the glob matching behavior in matchesExecAllowlistPattern. The patch ensures that the ? wildcard character properly excludes path separator matching on POSIX systems. Detailed patch information is available in the GitHub Security Advisory.

Workarounds

  • Avoid using the ? wildcard character in exec allowlist patterns until the system is patched
  • Use explicit, fully-qualified paths in allowlist configurations instead of patterns with wildcards
  • Implement additional input validation at the application layer to reject paths containing unexpected directory separators
  • Consider using application-level sandboxing to limit the impact of potential bypass attacks
bash
# Configuration example - Use explicit paths instead of wildcard patterns
# Before (vulnerable pattern):
# EXEC_ALLOWLIST="/app/bin/safe?cmd"

# After (explicit safe configuration):
EXEC_ALLOWLIST="/app/bin/safecmd,/app/bin/safe_cmd"

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.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/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-625
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-32917: Openclaw Remote Command Injection Flaw

  • CVE-2026-32920: Openclaw RCE Vulnerability

  • CVE-2026-32971: Openclaw RCE Vulnerability

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