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

CVE-2026-45005: Openclaw Auth Bypass Vulnerability

CVE-2026-45005 is an authentication bypass flaw in Openclaw that allows attackers to use stale webhook secrets after rotation. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-45005 Overview

CVE-2026-45005 affects OpenClaw versions before 2026.4.23. The flaw resides in the webhook route authentication layer, where resolved secrets backed by SecretRef values are cached in memory. When operators rotate a secret and reload configuration, the cached value remains valid until the gateway or plugin process restarts. Attackers holding previously valid webhook route secrets can continue authenticating requests and invoking configured webhook task flows. The weakness is classified under CWE-672: Operation on a Resource after Expiration or Release.

Critical Impact

Rotated webhook secrets remain valid in cache, allowing attackers with stolen credentials to continue invoking webhook task flows until the OpenClaw gateway or plugin is restarted.

Affected Products

  • OpenClaw (Node.js distribution) versions prior to 2026.4.23
  • OpenClaw webhooks extension (extensions/webhooks)
  • Deployments using SecretRef-backed webhook route secrets

Discovery Timeline

  • 2026-05-11 - CVE-2026-45005 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-45005

Vulnerability Analysis

The vulnerability stems from an in-memory cache that holds resolved webhook route secrets for the lifetime of the request handler. In the affected extensions/webhooks/src/http.ts module, a WeakMap<TaskFlowWebhookTarget, Promise<string | undefined>> named secretByTarget stores the first resolved secret for each target. Subsequent requests reuse the cached promise rather than re-resolving the underlying SecretRef.

When administrators rotate a compromised secret in the secret store and trigger a configuration reload, the cache is not invalidated. The new secret is never consulted because the route handler short-circuits on the cached value. As a result, an attacker holding a previously valid token can continue invoking webhook task flows and authenticate requests as if rotation never occurred.

Exploitation requires high privileges (PR:H) because the attacker must already possess a valid webhook secret. However, the integrity impact is high (VI:H) since attackers can invoke arbitrary configured task flows, including state-changing operations exposed through webhook routes.

Root Cause

The root cause is improper cache invalidation on credential rotation. The secret resolution logic treated SecretRef lookups as immutable for the lifetime of the process. Configuration reloads updated route metadata but did not clear the per-target secret cache, leaving stale credentials authoritative until restart.

Attack Vector

An attacker with a previously valid webhook secret sends an HTTP request to the OpenClaw webhook endpoint. The route handler validates the supplied secret against the cached value rather than the rotated value in the secret store. The request is authenticated, and the configured task flow executes. The vector is network-accessible (AV:N) and requires no user interaction (UI:N).

typescript
// Patched code from extensions/webhooks/src/http.ts
// fix(webhooks): reload route secrets per request (#70727)
   targetsByPath: Map<string, TaskFlowWebhookTarget[]>;
   inFlightLimiter?: WebhookInFlightLimiter;
 }): (req: IncomingMessage, res: ServerResponse) => Promise<boolean> {
-  const secretByTarget = new WeakMap<TaskFlowWebhookTarget, Promise<string | undefined>>();
   const rateLimiter = createFixedWindowRateLimiter({
     windowMs: WEBHOOK_RATE_LIMIT_DEFAULTS.windowMs,
     maxRequests: WEBHOOK_RATE_LIMIT_DEFAULTS.maxRequests,

Source: OpenClaw GitHub commit 36c4a37 — the patch removes the per-target WeakMap cache so each request re-resolves the SecretRef.

Detection Methods for CVE-2026-45005

Indicators of Compromise

  • Successful webhook authentications using secret values that were marked rotated or revoked in the secret store audit log.
  • Webhook task flow invocations originating from source IPs not seen since before the most recent secret rotation event.
  • Discrepancies between secret store getSecret audit events and OpenClaw webhook authentication counts after a reload.

Detection Strategies

  • Correlate secret rotation timestamps in the backing secret store with subsequent successful webhook authentications in OpenClaw access logs.
  • Alert when any webhook request authenticates with a credential hash that does not match the current value in the secret store.
  • Hunt for long-lived webhook client sessions that span across known configuration reload events without a corresponding process restart.

Monitoring Recommendations

  • Forward OpenClaw gateway and extensions/webhooks logs to a centralized SIEM and parse authentication outcomes per route.
  • Enable audit logging on the upstream secret store (e.g., Vault, Kubernetes Secrets) and join those events with webhook request logs.
  • Monitor process uptime for the OpenClaw gateway and plugin host; flag rotations that occur without a subsequent restart within the operator-defined window.

How to Mitigate CVE-2026-45005

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.23 or later, which removes the secretByTarget cache and re-resolves secrets per request.
  • Restart the OpenClaw gateway and any plugin processes immediately after rotating any webhook route secret, even on patched builds, to ensure no stale state remains.
  • Rotate all webhook route secrets that were previously rotated on vulnerable versions, as prior rotations may not have taken effect.

Patch Information

The fix is delivered in commit 36c4a372a0ad5dca8bfc0d93f7aab9c2f2de66fa and documented in the OpenClaw GHSA-q8ff-7ffm-m3r9 advisory. The patch removes the per-target WeakMap cache so each incoming request re-resolves the SecretRef. See the VulnCheck advisory for additional context.

Workarounds

  • Restart the OpenClaw gateway and plugin processes after every webhook secret rotation to forcibly clear the in-memory cache.
  • Restrict network access to webhook endpoints using upstream allowlists so that stolen secrets cannot be replayed from unauthorized networks.
  • Treat webhook secrets as short-lived and pair rotation with explicit revocation checks at an upstream proxy where feasible.
bash
# Restart OpenClaw after rotating a webhook SecretRef (Kubernetes example)
kubectl rollout restart deployment/openclaw-gateway -n openclaw
kubectl rollout status deployment/openclaw-gateway -n openclaw

# Verify the running version is patched
kubectl exec -n openclaw deploy/openclaw-gateway -- \
  node -e "console.log(require('./package.json').version)"
# Expect: 2026.4.23 or later

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

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:N/VC:L/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-672
  • Technical References
  • GitHub Security Advisory
  • Vendor Resources
  • GitHub Commit Update

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

  • CVE-2026-45006: Openclaw Auth Bypass Vulnerability

  • CVE-2026-45002: Openclaw Auth Bypass Vulnerability

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