A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
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
      Digital Forensics, IRR & Breach Readiness
    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-26325

CVE-2026-26325: OpenClaw AI Auth Bypass Vulnerability

CVE-2026-26325 is an authentication bypass flaw in OpenClaw personal AI assistant that allows command execution bypassing allowlist checks. This article covers the technical details, affected versions, and patches.

Published: February 20, 2026

CVE-2026-26325 Overview

CVE-2026-26325 is an authorization bypass vulnerability in OpenClaw, a personal AI assistant platform. A mismatch between rawCommand and command[] in the node host system.run handler allows security policy evaluation to be performed on one command while executing a different argv, effectively bypassing allowlist-based execution controls.

Critical Impact

Attackers with high privileges can bypass allowlist-based execution policies to run unauthorized system commands, potentially leading to complete compromise of confidentiality, integrity, and availability of affected systems.

Affected Products

  • OpenClaw versions prior to 2026.2.14
  • Deployments using node host / companion node execution path (system.run on a node)
  • Configurations with allowlist-based exec policy (security=allowlist) and approval prompting (ask=on-miss)

Discovery Timeline

  • 2026-02-19 - CVE-2026-26325 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2026-26325

Vulnerability Analysis

This vulnerability falls under CWE-284 (Improper Access Control), where the security control mechanism fails to properly validate the consistency between two representations of the same command. The flaw enables an attacker to craft a request where the rawCommand parameter (used for allowlist evaluation) differs from the command[] array (used for actual execution).

In practice, an attacker could submit a benign-looking command string for approval while the actual executed argv contains malicious operations. This design flaw in the command parsing and validation logic creates a TOCTOU (Time-of-Check Time-of-Use) style vulnerability where the security check and the action operate on different data.

The vulnerability requires network access and high privileges to exploit, but once exploited, it can lead to unauthorized command execution with potentially severe consequences for system confidentiality, integrity, and availability.

Root Cause

The root cause lies in the inconsistent handling of command representations within the system.run handler. The gateway component would evaluate the rawCommand string against the allowlist policy, while the node host would execute based on the command[] array. Without proper validation ensuring these two representations resolve to the same command, an attacker could exploit this discrepancy.

The security patch introduces the validateSystemRunCommandConsistency function to enforce strict consistency between rawCommand and command[] at both the gateway level (fail-fast) and node host validation layer.

Attack Vector

The attack requires network access to the OpenClaw node execution interface. An attacker with high privileges (PR:H) who can invoke system.run could craft specially formed requests containing mismatched command representations. The allowlist check would pass based on the sanitized rawCommand, while the actual execution would use the malicious command[] array.

typescript
// Security patch in src/gateway/node-invoke-system-run-approval.ts
// Source: https://github.com/openclaw/openclaw/commit/cb3290fca32593956638f161d9776266b90ab891

 import type { ExecApprovalManager, ExecApprovalRecord } from "./exec-approval-manager.js";
 import type { GatewayClient } from "./server-methods/types.js";
+import {
+  formatExecCommand,
+  validateSystemRunCommandConsistency,
+} from "../infra/system-run-command.js";
 
type SystemRunParamsLike = {
   command?: unknown;
typescript
// Security patch in src/infra/system-run-command.ts - Command consistency validation
// Source: https://github.com/openclaw/openclaw/commit/cb3290fca32593956638f161d9776266b90ab891

+import path from "node:path";
+
+export type SystemRunCommandValidation =
+  | {
+      ok: true;
+      shellCommand: string | null;
+      cmdText: string;
+    }
+  | {
+      ok: false;
+      message: string;
+      details?: Record<string, unknown>;
+    };
+
+function basenameLower(token: string): string {
+  const win = path.win32.basename(token);
+  const posix = path.posix.basename(token);
+  const base = win.length < posix.length ? win : posix;
+  return base.trim().toLowerCase();
+}
+
+export function formatExecCommand(argv: string[]): string {
+  return argv
+    .map((arg) => {
+      const trimmed = arg.trim();
+      if (!trimmed) {
+        return '""';
+      }
+      const needsQuotes = /\s|"/.test(trimmed);
+      if (!needsQuotes) {

Detection Methods for CVE-2026-26325

Indicators of Compromise

  • Unexpected or unauthorized commands appearing in execution logs that don't match approved allowlist entries
  • Discrepancies between gateway approval logs and actual node host execution logs
  • Anomalous system.run requests with complex or encoded command parameters
  • Failed validation errors in gateway logs after upgrading to patched version (indicating attempted exploitation)

Detection Strategies

  • Implement logging correlation between gateway allowlist approval events and node host execution events
  • Monitor for system.run invocations where rawCommand differs from resolved command[] values
  • Deploy application-level monitoring to detect command execution that bypasses expected approval workflows
  • Review audit logs for privileged users invoking system.run with unusual parameter patterns

Monitoring Recommendations

  • Enable verbose logging on both gateway and node host components to capture full command parameters
  • Set up alerts for any command execution that doesn't have a corresponding allowlist approval entry
  • Monitor for increases in system.run invocations, particularly from users with elevated privileges
  • Implement network segmentation monitoring to detect lateral movement following potential exploitation

How to Mitigate CVE-2026-26325

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.14 or later immediately
  • Audit recent system.run invocations for signs of exploitation
  • Review and restrict which users have privileges to invoke system.run
  • Consider temporarily disabling node host execution paths until patches are applied

Patch Information

The vulnerability is fixed in OpenClaw version 2026.2.14. The patch enforces rawCommand/command[] consistency through gateway fail-fast validation and node host validation checks. The fix is available through the following resources:

  • GitHub Release v2026.2.14
  • Security Patch Commit cb3290fc
  • GitHub Security Advisory GHSA-h3f9-mjwj-w476

Workarounds

  • Disable node host / companion node execution path if not required for operations
  • Change exec policy from security=allowlist to a more restrictive deny-all policy temporarily
  • Remove system.run invocation privileges from all but essential administrative accounts
  • Implement network-level access controls to restrict access to the node host interface
bash
# Configuration example - Disable node host execution path
# In openclaw configuration file (openclaw.config.yaml)
node_host:
  enabled: false
  
# Alternative: Restrict system.run to deny-all policy
security:
  exec_policy: deny-all
  system_run:
    enabled: false

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

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Commit Update

  • GitHub Release v2026.2.14

  • GitHub Security Advisory GHSA-h3f9-mjwj-w476
  • Related CVEs
  • CVE-2026-26327: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-26319: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-26316: OpenClaw Authentication Bypass Vulnerability

  • CVE-2026-25474: Openclaw Auth Bypass 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