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

CVE-2026-43571: Openclaw Auth Bypass Vulnerability

CVE-2026-43571 is an authentication bypass flaw in Openclaw that allows attackers to exploit plugin trust mechanisms during setup. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43571 Overview

CVE-2026-43571 is a plugin trust bypass vulnerability affecting OpenClaw versions before 2026.4.10. The flaw resides in the channel setup discovery logic, where catalog lookups resolve workspace plugin shadows before bundled channel plugins. This ordering allows untrusted workspace-supplied plugins to shadow bundled plugins during setup-time loading. An attacker who can place a malicious plugin into an OpenClaw workspace can subvert the trust gate intended to restrict which plugins load during channel setup. The issue is tracked under [CWE-829: Inclusion of Functionality from Untrusted Control Sphere].

Critical Impact

A crafted workspace plugin can bypass OpenClaw's plugin trust model and execute under the trust context of bundled channel plugins, leading to high impact on confidentiality, integrity, and availability.

Affected Products

  • OpenClaw (Node.js distribution) versions prior to 2026.4.10
  • Component: openclaw:openclaw
  • Affected modules: src/commands/channel-setup/discovery.ts and src/commands/channel-setup/plugin-install.ts

Discovery Timeline

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

Technical Details for CVE-2026-43571

Vulnerability Analysis

OpenClaw's channel setup workflow enumerates available channel plugins through a catalog lookup. Prior to the fix, the catalog resolution gave precedence to workspace-local plugin shadows over bundled, trusted channel plugins. A workspace plugin with a name matching a bundled plugin would be resolved first and loaded by the setup routine. Because setup-time loading runs before user trust prompts, the attacker-controlled plugin executes under the trust assumptions of a bundled plugin. The vulnerability is exploitable over the network with low attack complexity and requires low privileges, with no user interaction at the time of channel setup.

Root Cause

The root cause is incorrect resolution order in listChannelPluginCatalogEntries and getChannelPluginCatalogEntry from src/channels/plugins/catalog.ts. These functions did not exclude workspace shadows during the channel setup phase. As a result, untrusted workspace plugins were treated as valid candidates by trust-gated setup code paths.

Attack Vector

An attacker writes a malicious plugin to the OpenClaw agent workspace directory using a name that shadows a bundled channel plugin. When the victim runs the channel setup command, OpenClaw resolves the workspace shadow first and loads its code. The plugin then runs with the privileges granted to bundled, trusted plugins during setup.

typescript
// Patch: src/commands/channel-setup/discovery.ts
 import { resolveAgentWorkspaceDir, resolveDefaultAgentId } from "../../agents/agent-scope.js";
-import {
-  listChannelPluginCatalogEntries,
-  type ChannelPluginCatalogEntry,
-} from "../../channels/plugins/catalog.js";
+import { type ChannelPluginCatalogEntry } from "../../channels/plugins/catalog.js";
 import { isChannelVisibleInSetup } from "../../channels/plugins/exposure.js";
 import type { ChannelMeta, ChannelPlugin } from "../../channels/plugins/types.js";
 import { listChatChannels } from "../../channels/registry.js";
 import type { OpenClawConfig } from "../../config/config.js";
 import { applyPluginAutoEnable } from "../../config/plugin-auto-enable.js";
 import { loadPluginManifestRegistry } from "../../plugins/manifest-registry.js";
 import type { ChannelChoice } from "../onboard-types.js";
+import {
+  listSetupDiscoveryChannelPluginCatalogEntries,
+  listTrustedChannelPluginCatalogEntries,
+} from "./trusted-catalog.js";

Source: GitHub Commit 1fede43. The fix replaces the generic catalog functions with listSetupDiscoveryChannelPluginCatalogEntries and listTrustedChannelPluginCatalogEntries, which exclude workspace shadows during setup-time resolution.

Detection Methods for CVE-2026-43571

Indicators of Compromise

  • Unexpected plugin files appearing under the OpenClaw agent workspace plugin directory, particularly with names matching bundled channel plugins.
  • Modification timestamps on workspace plugin manifests that predate or coincide with channel setup invocations.
  • Outbound network connections from node processes spawned by OpenClaw channel setup to non-vendor endpoints.

Detection Strategies

  • Compare hashes of loaded channel plugins against the bundled plugin set shipped with the installed OpenClaw version.
  • Audit package.json and plugin manifest files within agent workspace directories for entries that shadow bundled channel plugin identifiers.
  • Inspect process execution telemetry for openclaw channel setup commands followed by spawning of unsigned or unexpected scripts.

Monitoring Recommendations

  • Enable file integrity monitoring on agent workspace directories used by OpenClaw to detect plugin drop events.
  • Forward OpenClaw CLI execution logs to a central data lake and alert on channel setup invocations from non-administrator accounts.
  • Track installations of OpenClaw versions and flag any host running a release older than 2026.4.10.

How to Mitigate CVE-2026-43571

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.10 or later on every host where the CLI or agent is installed.
  • Inventory existing agent workspaces and remove any plugin that was not authorized by the workspace owner.
  • Restrict write access to agent workspace directories to trusted administrators only.

Patch Information

The fix is delivered in commit 1fede43b948df40ca8674511d4bd08d39f6c5837 and described in GitHub Security Advisory GHSA-82qx-6vj7-p8m2. Additional analysis is available in the VulnCheck Advisory on OpenClaw Plugin. The patch introduces dedicated trusted-catalog helpers that exclude workspace plugin shadows from setup-time discovery and install paths.

Workarounds

  • Operate OpenClaw only with workspace directories whose contents are fully controlled by trusted users until the upgrade is applied.
  • Avoid running channel setup workflows on shared or multi-tenant hosts where untrusted users can write to the agent workspace.
  • Remove or rename any workspace-local channel plugin whose identifier matches a bundled plugin name.
bash
# Upgrade OpenClaw to a patched release
npm install -g openclaw@2026.4.10

# Verify the installed version
openclaw --version

# Audit workspace plugins for shadows of bundled channel plugins
ls -la "$HOME/.openclaw/agents/default/plugins"

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

  • EPSS Probability0.04%

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

  • GitHub Security Advisory GHSA-82qx-6vj7-p8m2
  • Related CVEs
  • CVE-2026-43574: Openclaw Auth Bypass Vulnerability

  • CVE-2026-43572: Openclaw Authorization Bypass Vulnerability

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