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

CVE-2026-43530: Openclaw Auth Bypass Vulnerability

CVE-2026-43530 is an authentication bypass flaw in Openclaw that exploits weakened exec approval bindings in busybox and toybox applets. This article covers technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43530 Overview

CVE-2026-43530 is a weakened exec approval binding vulnerability in OpenClaw versions 2026.2.23 through 2026.4.12. The flaw resides in how OpenClaw evaluates busybox and toybox applet execution. These multi-call binaries dispatch to different applets based on argv[0] or the first argument, making it opaque which command will actually run. Attackers with low privileges can leverage this opacity to bypass exec approval controls and downgrade the risk classification of unsafe applet invocations. The issue is tracked under CWE-863: Incorrect Authorization.

Critical Impact

Attackers can bypass OpenClaw's exec approval mechanism by routing dangerous commands through busybox or toybox applets, defeating the integrity of command authorization decisions.

Affected Products

  • OpenClaw 2026.2.23 through 2026.4.11
  • OpenClaw distributed via Node.js package channel
  • Deployments using busybox or toybox multi-call binaries as approved interpreters

Discovery Timeline

  • 2026-05-05 - CVE-2026-43530 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-43530

Vulnerability Analysis

OpenClaw maintains a list of safe interpreter-like binaries used to validate child process execution. busybox and toybox were included in this safe set. Both are multi-call binaries: a single executable provides hundreds of applets such as sh, wget, nc, chmod, and mount. The applet dispatched depends on argv[0] or the first command-line argument rather than the binary path itself.

Because OpenClaw bound exec approval to the binary name, an attacker invoking busybox sh -c '<payload>' or busybox wget <url> could route arbitrary applet behavior through an approved binary. The approval logic could not see which applet would actually execute, weakening the binding between approval decisions and runtime behavior.

Root Cause

The root cause is an authorization decision based on insufficient context. Treating busybox and toybox as interpreter-like safe bins ignored their multi-call dispatch semantics. The approval engine inspected the executable path but not the resolved applet, allowing dangerous applets to inherit the trust of the wrapper binary.

Attack Vector

Exploitation requires low-privilege access to invoke commands through OpenClaw's execution layer. The attacker crafts an invocation that passes the approval gate by naming busybox or toybox, then selects an applet such as sh or nc to execute attacker-controlled logic. No user interaction is required, and the attack is reachable over the network.

typescript
// Patch from src/node-host/invoke-system-run-plan.ts
// fix(security): remove busybox/toybox from interpreter-like safe bins
   "vite-node",
 ]);
 
+const OPAQUE_MUTABLE_SCRIPT_RUNNERS = new Set(["busybox", "toybox"]);
+
 const BUN_SUBCOMMANDS = new Set([
   "add",
   "audit",

Source: GitHub commit 666f48d. The patch introduces an explicit OPAQUE_MUTABLE_SCRIPT_RUNNERS set, separating multi-call binaries from the interpreter safe list so approval decisions account for their dispatch behavior.

Detection Methods for CVE-2026-43530

Indicators of Compromise

  • Process executions where the parent is the OpenClaw runtime and the child command line begins with busybox or toybox followed by a high-risk applet name such as sh, ash, wget, nc, or chmod.
  • Audit log entries showing exec approval grants for busybox/toybox paired with arguments inconsistent with expected automation.
  • Outbound network connections initiated by busybox/toybox child processes following an OpenClaw plan invocation.

Detection Strategies

  • Hunt for OpenClaw child processes whose argv[0] or first argument resolves to a shell or networking applet within a multi-call binary.
  • Correlate exec approval decisions with the actual resolved applet by parsing full command lines, not just binary paths.
  • Flag any OpenClaw deployment running versions between 2026.2.23 and 2026.4.11 as exposed until upgraded.

Monitoring Recommendations

  • Enable verbose audit logging in OpenClaw to capture full argument vectors for every approved exec call.
  • Forward host process telemetry to a centralized log platform and alert on busybox/toybox invocations from service accounts.
  • Baseline expected applet usage per environment so anomalous applet dispatch generates an alert.

How to Mitigate CVE-2026-43530

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.12 or later, which removes busybox and toybox from the interpreter-like safe bins.
  • Inventory OpenClaw deployments and identify hosts where busybox or toybox is present on PATH.
  • Review historical exec approval logs for prior invocations routed through busybox or toybox.

Patch Information

The fix is delivered in commit 666f48d9b882a8a1415ca53f9567c72499d850c9 and described in GHSA-2cq5-mf3v-mx44. Additional analysis is available in the VulnCheck advisory.

Workarounds

  • Remove or rename busybox and toybox binaries on hosts running affected OpenClaw versions where operationally feasible.
  • Restrict OpenClaw service accounts so they cannot resolve multi-call binaries on PATH.
  • Add custom deny rules in the OpenClaw exec approval configuration that explicitly block busybox and toybox invocations.
bash
# Verify installed OpenClaw version and patch status
npm ls openclaw

# Upgrade to the patched release
npm install openclaw@>=2026.4.12

# Optional hardening: prevent multi-call binary resolution for the service user
sudo chmod 750 /usr/bin/busybox /usr/bin/toybox 2>/dev/null || true

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

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-863
  • Technical References
  • VulnCheck Advisory: OpenClaw Exploit
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-2cq5-mf3v-mx44
  • Related CVEs
  • CVE-2026-43574: Openclaw Auth Bypass Vulnerability

  • CVE-2026-43572: Openclaw Authorization Bypass Vulnerability

  • CVE-2026-43571: Openclaw Auth Bypass Vulnerability

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