Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-22175

CVE-2026-22175: Openclaw Auth Bypass Vulnerability

CVE-2026-22175 is an authentication bypass flaw in Openclaw that allows attackers to circumvent execution restrictions through multiplexer shell wrappers. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-22175 Overview

OpenClaw versions prior to 2026.2.23 contain an exec approval bypass vulnerability (CWE-184: Incomplete List of Disallowed Inputs) in allowlist mode where allow-always grants could be circumvented through unrecognized multiplexer shell wrappers. This authorization bypass flaw affects the Node.js implementation of OpenClaw, allowing attackers to invoke arbitrary payloads by exploiting gaps in the execution allowlist validation logic.

The vulnerability stems from improper handling of multiplexer shell wrappers such as busybox and toybox sh -c commands. When these wrappers are used to execute commands, the allowlist mechanism fails to properly recognize and validate them, enabling attackers to satisfy stored allowlist rules while executing unintended payloads.

Critical Impact

Attackers can bypass execution restrictions intended to prevent unauthorized command execution, potentially leading to arbitrary command execution within the context of the OpenClaw application.

Affected Products

  • OpenClaw versions prior to 2026.2.23
  • OpenClaw for Node.js (all versions before the security patch)
  • Systems utilizing OpenClaw allowlist mode with allow-always grants

Discovery Timeline

  • 2026-03-18 - CVE-2026-22175 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-22175

Vulnerability Analysis

This vulnerability represents an authorization bypass condition where the exec approval mechanism in OpenClaw fails to account for all possible command execution pathways. The root issue lies in the incomplete list of disallowed inputs (CWE-184), specifically related to multiplexer shell wrappers that were not anticipated in the original allowlist design.

When OpenClaw operates in allowlist mode with allow-always grants configured, it maintains a list of approved execution patterns. However, the validation logic does not properly recognize certain multiplexer shell wrappers as execution vectors. This creates a gap where commands executed through these wrappers can satisfy the stored allowlist rules while actually executing entirely different payloads than what was originally approved.

The vulnerability can be exploited over the network by authenticated users with low privileges. While confidentiality is not directly impacted, the integrity impact is high as attackers can execute unauthorized commands, and there is a low availability impact potential.

Root Cause

The root cause is an incomplete validation mechanism in the exec approval system. The allowlist implementation fails to recognize and properly handle multiplexer shell wrappers like busybox and toybox. When a command is wrapped in these multiplexer utilities using sh -c syntax, the allowlist comparison logic treats the wrapper command as the executed command rather than analyzing the actual payload being executed.

This creates a scenario where an attacker can craft commands that technically match an existing allowlist entry (based on the wrapper) while the actual executed payload is arbitrary and unauthorized. The stored allow-always grants become ineffective as they can be satisfied by any command using the same multiplexer wrapper pattern.

Attack Vector

The attack vector is network-based and requires low privileges to exploit. An attacker with access to invoke commands through OpenClaw can exploit this vulnerability by:

  1. Identifying an existing allow-always grant that uses a multiplexer shell wrapper
  2. Crafting a malicious command using the same wrapper pattern (e.g., busybox sh -c or toybox sh -c)
  3. Submitting the crafted command which satisfies the allowlist rule based on the wrapper
  4. Achieving execution of arbitrary payloads that were never explicitly approved

The vulnerability allows attackers to invoke arbitrary payloads under the same multiplexer wrapper to satisfy stored allowlist rules, completely bypassing the intended execution restrictions that OpenClaw's allowlist mode is designed to enforce.

Detection Methods for CVE-2026-22175

Indicators of Compromise

  • Unexpected command executions involving busybox sh -c or toybox sh -c patterns in OpenClaw logs
  • Execution of commands that do not match the intended allow-always grant purposes
  • Anomalous command patterns where the actual executed payload differs from historical approved patterns
  • Evidence of command injection attempts using multiplexer shell wrapper syntax

Detection Strategies

  • Monitor OpenClaw execution logs for commands utilizing multiplexer shell wrappers (busybox, toybox)
  • Implement behavioral analysis to detect command executions that differ from baseline approved patterns
  • Deploy runtime application security monitoring to identify allowlist bypass attempts
  • Review allow-always grants for patterns that could be exploited through wrapper manipulation

Monitoring Recommendations

  • Enable verbose logging in OpenClaw to capture full command execution details
  • Implement alerting for any execution involving multiplexer utilities in allowlist mode
  • Establish baseline execution patterns and alert on deviations
  • Integrate OpenClaw logs with SIEM solutions for correlation with other security events

How to Mitigate CVE-2026-22175

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.23 or later immediately
  • Review all existing allow-always grants for potential exploitation via multiplexer wrappers
  • Audit recent execution logs for signs of exploitation attempts
  • Consider temporarily disabling allowlist mode if immediate patching is not possible

Patch Information

A security patch has been released by the OpenClaw maintainers to address this vulnerability. The fix is available in version 2026.2.23 and includes improved handling of multiplexer shell wrappers in the allowlist validation logic.

The security advisory and patch details are available at:

  • GitHub Security Advisory GHSA-gwqp-86q6-w47g
  • GitHub Commit a67689a

Additional technical analysis is available from VulnCheck Advisory.

Workarounds

  • Avoid using allow-always grants that involve shell wrapper patterns until patched
  • Implement additional validation layers outside of OpenClaw's native allowlist mechanism
  • Restrict access to OpenClaw command execution interfaces to trusted users only
  • Deploy network segmentation to limit the attack surface for authenticated users
bash
# Upgrade OpenClaw to patched version
npm update openclaw@2026.2.23

# Verify installed version
npm list openclaw

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/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
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-184
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41909: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41908: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41301: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41330: OpenClaw Auth Bypass 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