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

CVE-2026-35648: Openclaw Auth Bypass Vulnerability

CVE-2026-35648 is an authentication bypass flaw in Openclaw that allows attackers to execute unauthorized commands through stale policy allowlists. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-35648 Overview

CVE-2026-35648 is a policy bypass vulnerability in OpenClaw before version 2026.3.22 that stems from a Time-of-Check Time-of-Use (TOCTOU) race condition (CWE-367). The vulnerability exists because queued node actions are not revalidated against the current command policy when they are delivered. This allows attackers to exploit stale allowlists or declarations that survive policy tightening, ultimately enabling the execution of unauthorized commands.

Critical Impact

Attackers can bypass security policies by exploiting stale command allowlists, potentially executing unauthorized commands after policy restrictions have been tightened.

Affected Products

  • OpenClaw versions prior to 2026.3.22
  • OpenClaw Node.js implementations using the plugin-sdk command-auth module
  • Systems utilizing the resolveCommandAuthorization function for command gating

Discovery Timeline

  • 2026-04-10 - CVE-2026-35648 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-35648

Vulnerability Analysis

This vulnerability is classified as a Time-of-Check Time-of-Use (TOCTOU) race condition. In the affected versions of OpenClaw, when node actions are queued for execution, the command authorization is validated at queue time. However, when those queued actions are later delivered and executed, the system fails to revalidate them against the current command policy. This creates a window where policy changes (specifically, policy tightening that restricts previously allowed commands) are not applied to already-queued actions.

The root cause lies in the command-auth.ts module, specifically in how the resolveCommandAuthorization function interacts with the node command policy system. The security patch significantly expanded this module (moving from line 303 to line 440 in the source), indicating substantial changes to the authorization validation logic.

Root Cause

The fundamental issue is the separation between authorization validation timing and action execution timing. When commands are queued through the gateway server methods for nodes, the authorization check occurs only once at queue time. The isNodeCommandAllowed and resolveNodeCommandAllowlist functions from the node-command-policy module were not being invoked at delivery time, allowing stale authorizations to persist.

Attack Vector

An attacker with low-privileged access to the system could exploit this vulnerability through the following mechanism:

  1. Obtain authorization for a command while it is on the allowlist
  2. Queue an action that utilizes this authorized command
  3. Wait for (or trigger) a policy tightening that removes the command from the allowlist
  4. The queued action executes with the original (now-invalid) authorization

The attack requires network access and authenticated privileges, though the complexity is high due to the timing requirements and the need for specific environmental conditions.

typescript
// Security patch in src/gateway/server-methods/nodes.ts
// Nodes: recheck queued actions before delivery (#46815)

import { isNodeCommandAllowed, resolveNodeCommandAllowlist } from "../node-command-policy.js";
import { sanitizeNodeInvokeParamsForForwarding } from "../node-invoke-sanitize.js";
import {
+  type ConnectParams,
   ErrorCodes,
   errorShape,
   validateNodeDescribeParams,

Source: GitHub Commit Fix

The patch introduces additional validation by importing ConnectParams and ensures that node commands are rechecked against current policy before delivery, closing the TOCTOU window.

Detection Methods for CVE-2026-35648

Indicators of Compromise

  • Unexpected command executions occurring after policy restrictions have been applied
  • Log entries showing commands executed by users who should no longer have authorization
  • Discrepancies between current allowlist configurations and actual command execution patterns
  • Queued actions being processed with outdated authorization contexts

Detection Strategies

  • Monitor for command executions that occur outside of current policy allowlists
  • Implement logging that captures both queue-time and execution-time authorization states
  • Review audit logs for commands executed after recent policy tightening events
  • Deploy integrity checks comparing expected vs. actual command authorization flows

Monitoring Recommendations

  • Enable verbose logging on the command-auth.ts module to track authorization decisions
  • Set up alerts for command executions immediately following policy configuration changes
  • Monitor the gateway server methods for unusual patterns in node action queuing and delivery
  • Implement time-based correlation between policy changes and command execution events

How to Mitigate CVE-2026-35648

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.22 or later immediately
  • Review recent command execution logs for any unauthorized actions that may have occurred
  • Audit current command policies and ensure they reflect intended access controls
  • Consider temporarily suspending queued actions during policy transition periods

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.3.22 and later. The security fixes were implemented across multiple commits that enhance the authorization validation process:

  • GitHub Commit Fix - Implements revalidation of queued actions before delivery
  • GitHub Commit Update - Build preparation for 2026.3.23-2

For complete details, refer to the GitHub Security Advisory (GHSA-wj55-88gf-x564).

Workarounds

  • Implement a queue flush procedure that clears all pending actions when policy changes are made
  • Add an additional authorization check layer at the application level before command execution
  • Temporarily disable command queuing functionality until the patch can be applied
  • Restrict network access to the affected nodes to trusted sources only during the mitigation period
bash
# Configuration example - Clear queued actions after policy update
openclaw-ctl policy apply --config new-policy.yaml
openclaw-ctl queue flush --all-nodes
openclaw-ctl queue verify --policy-sync

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

  • SeverityLOW

  • CVSS Score2.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:N/VI:L/VA:N/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-367
  • Technical References
  • VulnCheck Policy Bypass Advisory
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Fix

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-8305: Openclaw Authentication Bypass Vulnerability

  • CVE-2026-45006: Openclaw Auth Bypass Vulnerability

  • CVE-2026-45005: Openclaw Auth Bypass Vulnerability

  • CVE-2026-45002: Openclaw Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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