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

CVE-2026-41362: Openclaw Auth Bypass Vulnerability

CVE-2026-41362 is an authentication bypass flaw in Openclaw that exploits improper cache isolation in Zalo webhook replay-dedupe mechanisms. This post covers technical details, affected versions, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-41362 Overview

CVE-2026-41362 is an improper cache isolation vulnerability [CWE-668] in OpenClaw versions 2026.2.19 through 2026.3.31. The flaw exists in the Zalo webhook replay-dedupe mechanism, where a single shared cache spans all authenticated webhook targets. An attacker controlling one authenticated Zalo webhook path in a multi-account deployment can suppress legitimate events on different accounts. The attack succeeds by matching event_name and message_id parameters used as the dedupe key.

The issue affects Node.js deployments of OpenClaw operating multiple Zalo accounts behind a single instance.

Critical Impact

An authenticated attacker on one webhook target can suppress legitimate webhook events belonging to other tenants by reusing matching message identifiers, breaking cross-account isolation.

Affected Products

  • OpenClaw 2026.2.19 through versions prior to 2026.3.31
  • OpenClaw deployments running on Node.js with the Zalo extension enabled
  • Multi-account OpenClaw configurations sharing the webhook replay-dedupe cache

Discovery Timeline

  • 2026-04-28 - CVE-2026-41362 published to NVD
  • 2026-04-28 - Last updated in NVD database

Technical Details for CVE-2026-41362

Vulnerability Analysis

The vulnerability resides in extensions/zalo/src/monitor.webhook.ts, specifically the isReplayEvent function. OpenClaw uses an in-memory map, recentWebhookEvents, to suppress duplicate Zalo webhook deliveries. Before the patch, the cache key did not adequately isolate entries by authenticated target path and account identifier, allowing cross-target collisions.

When one tenant submits a webhook with a chosen event_name and message_id, the resulting cache entry can match incoming events on a separate account. The legitimate event is then classified as a replay and silently dropped. This breaks the integrity of event delivery without producing visible errors, making the suppression difficult to observe.

Root Cause

The root cause is shared-resource isolation failure [CWE-668]. The replay deduplication state was treated as a global namespace rather than being scoped to each authenticated webhook target. Tenant boundaries were not enforced in the cache key construction.

Attack Vector

An attacker requires authenticated access to at least one Zalo webhook path on a multi-account OpenClaw instance. The attacker sends webhook payloads with predictable event_name and message_id values, populating the shared cache. Subsequent legitimate webhook events from other tenants that share those identifiers are treated as duplicates and discarded.

typescript
// Patch: scope replay dedupe cache key to path and account
// Source: https://github.com/openclaw/openclaw/commit/7cea7c29705b188b464cc9cdc107c275b94b2a72
function buildReplayEventCacheKey(
  target: ZaloWebhookTarget,
  update: ZaloUpdate,
  messageId: string,
): string {
  const chatId = update.message?.chat?.id ?? "";
  const senderId = update.message?.from?.id ?? "";
  return JSON.stringify([
    target.path,
    target.account.accountId,
    update.event_name,
    chatId,
    senderId,
    messageId,
  ]);
}

The fix introduces buildReplayEventCacheKey, which incorporates target.path and target.account.accountId into a structured JSON key. This ensures that replay state is partitioned per authenticated target and per account.

Detection Methods for CVE-2026-41362

Indicators of Compromise

  • Unexplained gaps in Zalo webhook event delivery for specific accounts, particularly missing message_id values that should appear in sequence.
  • Multiple webhook submissions from a single authenticated target containing repeated or low-entropy message_id values.
  • Cross-account correlation showing one tenant's incoming message_id matching another tenant's previously processed events.

Detection Strategies

  • Enable verbose logging on the isReplayEvent code path to capture cache hits, including the originating target path and account identifier.
  • Audit recentWebhookEvents cache contents at runtime to identify entries whose keys span multiple accounts before the patch is applied.
  • Compare upstream Zalo delivery logs with OpenClaw-processed event counts to surface dropped events.

Monitoring Recommendations

  • Alert on spikes of duplicate-classification events originating from any single authenticated webhook target.
  • Track per-account webhook delivery rates and trigger an alert when one account's rate drops while sibling accounts continue receiving traffic.
  • Monitor commit hashes 4d038bb2 and 7cea7c29 across deployed OpenClaw instances to confirm patch presence.

How to Mitigate CVE-2026-41362

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.31 or later, which contains both remediation commits.
  • Audit all authenticated Zalo webhook targets and revoke credentials for untrusted tenants until the patch is applied.
  • Restart the OpenClaw process after upgrading to clear any poisoned entries in recentWebhookEvents.

Patch Information

Two upstream commits address the issue. Commit 4d038bb242c11f39e45f6a4bde400e5fd42e4ebf ensures recentWebhookEvents.clear() runs alongside other security state resets. Commit 7cea7c29705b188b464cc9cdc107c275b94b2a72 rewrites the cache key construction via buildReplayEventCacheKey to include target.path and target.account.accountId. See the GitHub Security Advisory GHSA-fqrj-m88p-qf3v and the VulnCheck Security Advisory for full details.

Workarounds

  • Isolate each Zalo account into its own OpenClaw process or container so that the recentWebhookEvents cache is not shared across tenants.
  • Restrict webhook authentication so that only fully trusted, first-party targets are permitted until upgrading.
  • Periodically invoke clearZaloWebhookSecurityStateForTest() or an equivalent operational reset to flush the shared cache on a short interval.
bash
# Pin OpenClaw to the patched release
npm install openclaw@2026.3.31

# Verify the patched function is present in the installed package
grep -n "buildReplayEventCacheKey" \
  node_modules/openclaw/extensions/zalo/src/monitor.webhook.ts

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

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

  • GitHub Commit Enhancement

  • 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