Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-33576

CVE-2026-33576: Openclaw Auth Bypass Vulnerability

CVE-2026-33576 is an authentication bypass vulnerability in Openclaw that allows unauthorized senders to force network fetches and disk writes. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33576 Overview

CVE-2026-33576 is an Incorrect Authorization vulnerability (CWE-863) in OpenClaw, a Node.js application that integrates with Zalo messaging channels. The vulnerability exists in versions before 2026.3.28 where the application downloads and stores inbound media from Zalo channels before validating sender authorization. This flaw allows unauthorized senders to force network fetches and disk writes to the media store by sending messages that are subsequently rejected.

Critical Impact

Unauthorized users can force the OpenClaw server to download and store arbitrary media files, potentially exhausting disk space and network bandwidth without proper authentication.

Affected Products

  • OpenClaw versions before 2026.3.28
  • OpenClaw for Node.js (all affected versions)

Discovery Timeline

  • 2026-03-31 - CVE-2026-33576 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33576

Vulnerability Analysis

This vulnerability represents an Incorrect Authorization flaw in the media handling pipeline of OpenClaw's Zalo channel integration. The application processes incoming messages from Zalo and downloads associated media files to local storage before performing authorization checks on the message sender.

The core issue stems from the order of operations in the message processing workflow. When a message containing media (such as images) arrives from the Zalo channel, OpenClaw immediately initiates a network fetch for the media content and writes it to the media store. Only after these I/O operations complete does the system check whether the sender is actually authorized to interact with the bot.

This design flaw enables unauthorized senders to abuse the system by sending media-rich messages that trigger resource-intensive operations. Even though these messages are eventually rejected during the authorization phase, the damage—network bandwidth consumption and disk writes—has already occurred.

Root Cause

The root cause is improper ordering of security controls in the message processing pipeline. Authorization checks should occur before any resource-consuming operations like media downloads. The vulnerable code path in extensions/zalo/src/monitor.ts processed image downloads before verifying sender permissions, violating the principle of fail-fast security validation.

Attack Vector

An attacker can exploit this vulnerability remotely over the network without authentication:

  1. The attacker identifies an OpenClaw instance connected to a Zalo channel
  2. The attacker sends messages containing media attachments through the Zalo channel
  3. OpenClaw downloads and stores each media file before checking authorization
  4. The authorization check fails and the message is rejected, but resources have already been consumed
  5. By repeatedly sending unauthorized messages with large media files, the attacker can exhaust disk space or consume significant network bandwidth

The security patch introduces a ZaloMessageAuthorizationResult type and gates image downloads behind DM authorization checks:

typescript
   text?: string;
   mediaPath?: string;
   mediaType?: string;
+  authorization?: ZaloMessageAuthorizationResult;
 };
 type ZaloImageMessageParams = ZaloProcessingContext & {
   message: ZaloMessage;
   mediaMaxMb: number;
 };
+type ZaloMessageAuthorizationResult = {
+  chatId: string;
+  commandAuthorized: boolean | undefined;
+  isGroup: boolean;
+  rawBody: string;
+  senderId: string;
+  senderName: string | undefined;
+};
 
 function formatZaloError(error: unknown): string {
   if (error instanceof Error) {

Source: GitHub Commit Update

Detection Methods for CVE-2026-33576

Indicators of Compromise

  • Unusual spike in disk writes to the OpenClaw media store directory
  • High volume of rejected/unauthorized messages from the Zalo channel in application logs
  • Abnormal network traffic patterns fetching media from Zalo CDN endpoints
  • Rapid growth in media storage consumption without corresponding valid message activity

Detection Strategies

  • Monitor OpenClaw application logs for patterns of authorization failures following media downloads
  • Implement rate limiting alerts for incoming Zalo channel messages from untrusted senders
  • Track disk I/O metrics on the media store volume for anomalous write patterns
  • Analyze network traffic logs for excessive outbound requests to Zalo media servers

Monitoring Recommendations

  • Configure alerting on disk usage thresholds for the OpenClaw media storage directory
  • Set up log aggregation rules to correlate media download events with subsequent authorization failures
  • Implement bandwidth monitoring on OpenClaw server network interfaces
  • Enable audit logging for all Zalo channel message processing events

How to Mitigate CVE-2026-33576

Immediate Actions Required

  • Update OpenClaw to version 2026.3.28 or later immediately
  • Review media storage directories for unexpected content that may have been downloaded through this vulnerability
  • Implement network-level rate limiting on Zalo channel endpoints as a temporary measure
  • Monitor disk space utilization on OpenClaw servers pending patch deployment

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.3.28. The fix implements proper authorization gating before media download operations. The security patch is available in commit 68ceaf7a5f64a23e78b95eff055e4b497218312a. For detailed information, refer to the GitHub Security Advisory and the VulnCheck Advisory.

Workarounds

  • Implement external rate limiting at the network or application gateway level to restrict incoming message volume
  • Configure disk quotas on the media storage directory to prevent storage exhaustion
  • Consider temporarily disabling Zalo channel integrations if immediate patching is not possible
  • Deploy network-level filtering to limit connections to known Zalo media endpoints
bash
# Example: Configure disk quota on media storage (Linux)
# Set 10GB quota on the OpenClaw media directory
mkdir -p /var/openclaw/media
mount -o remount,usrquota /var/openclaw
setquota -u openclaw 10485760 11534336 0 0 /var/openclaw

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

  • EPSS Probability0.04%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41909: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41908: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-41301: OpenClaw Auth Bypass Vulnerability

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