A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-42420

CVE-2026-42420: Openclaw DOS Vulnerability via Base64

CVE-2026-42420 is a denial of service vulnerability in Openclaw caused by improper input validation in base64 decode paths. Attackers can exploit this to cause memory exhaustion. This article covers technical details, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-42420 Overview

CVE-2026-42420 affects OpenClaw versions prior to 2026.4.8. The vulnerability stems from improper input validation in base64 decode paths. OpenClaw allocates memory before enforcing decoded-size limits, allowing attackers to trigger memory exhaustion through crafted base64-encoded input. Multiple code paths are affected, and authenticated network attackers can exploit them to cause denial of service. The issue is tracked under [CWE-770: Allocation of Resources Without Limits or Throttling].

Critical Impact

Authenticated attackers can submit crafted base64 payloads to exhaust available memory, degrading availability of OpenClaw deployments.

Affected Products

  • OpenClaw (Node.js distribution) versions before 2026.4.8
  • Deployments exposing base64-decoding endpoints to authenticated users
  • Applications embedding the vulnerable OpenClaw component

Discovery Timeline

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

Technical Details for CVE-2026-42420

Vulnerability Analysis

The vulnerability resides in OpenClaw's base64 decoding routines. The code reserves memory buffers based on attacker-controlled length values from the encoded input. Decoded-size limits are not enforced before allocation occurs. An attacker can submit small base64 inputs that declare large decoded sizes or repeatedly invoke decode paths to drive the host into memory exhaustion. Because the flaw exists across multiple code paths, narrow input filtering on a single endpoint is insufficient. The result is a denial-of-service condition affecting process or host availability.

Root Cause

The root cause is improper input validation classified under [CWE-770]. OpenClaw allocates resources before validating their bounds. The decoder trusts size metadata derived from the encoded payload and skips checks against a reasonable maximum. This pattern violates the principle of validating untrusted input before resource commitment.

Attack Vector

Exploitation requires network access and low-level authentication. No user interaction is needed. An attacker submits crafted base64 strings to any of the affected decode paths. The application allocates oversized buffers or repeatedly large allocations, exhausting available memory. The integrity and confidentiality of stored data are not affected — only availability is impacted.

The vulnerability mechanism is detailed in the VulnCheck Advisory and the GitHub Security Advisory GHSA-ccx3-fw7q-rr2r. No public proof-of-concept exploit is currently available.

Detection Methods for CVE-2026-42420

Indicators of Compromise

  • Unexplained spikes in process memory consumption on hosts running OpenClaw
  • Repeated incoming requests carrying unusually large or anomalously structured base64 payloads
  • Out-of-memory (OOM) terminations or container restarts correlated with decode activity
  • Authenticated session traffic generating disproportionate decode workload

Detection Strategies

  • Inspect application logs for base64 decode operations failing with allocation or OOM errors
  • Correlate authenticated API requests with subsequent memory growth in OpenClaw worker processes
  • Apply request-size limits at the reverse proxy and alert on payloads exceeding policy thresholds
  • Monitor Node.js runtime metrics such as heap usage and event loop lag for anomalous patterns

Monitoring Recommendations

  • Track resident set size (RSS) and heap allocation per OpenClaw process at one-minute granularity
  • Alert on repeated OOM-killer events targeting the OpenClaw service
  • Log and review authentication events preceding memory anomalies to identify abusive accounts
  • Enable rate limiting on endpoints invoking base64 decoding and alert on rate-limit breaches

How to Mitigate CVE-2026-42420

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.8 or later, which enforces decoded-size limits before allocation
  • Inventory all deployments of the openclaw:openclaw component and prioritize internet-exposed instances
  • Revoke or rotate credentials for any low-privilege accounts that exhibit anomalous decode activity
  • Apply request-size caps at the load balancer or API gateway as a compensating control

Patch Information

The fix is published in commit d7c3210cd6f5fdfdc1beff4c9541673e814354d5 and documented in the GitHub Security Advisory GHSA-ccx3-fw7q-rr2r. Update via npm install openclaw@2026.4.8 or pin the upgraded version in package.json and rebuild affected services.

Workarounds

  • Enforce a strict maximum body size on endpoints that consume base64 input
  • Place OpenClaw services behind a reverse proxy that rejects payloads above a defined threshold
  • Restrict access to authenticated decode endpoints to trusted user groups until patching is complete
  • Configure container memory limits and automatic restart policies to contain exhaustion attempts
bash
# Configuration example
# Upgrade OpenClaw to the patched release
npm install openclaw@2026.4.8

# Example nginx request-size cap as a compensating control
# /etc/nginx/conf.d/openclaw.conf
client_max_body_size 256k;

# Example Node.js process memory limit
node --max-old-space-size=512 server.js

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenclaw

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/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-770
  • Technical References
  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42437: OpenClaw WebSocket DoS Vulnerability

  • CVE-2026-41374: Openclaw DOS Vulnerability

  • CVE-2026-41399: OpenClaw DoS Vulnerability via WebSocket

  • CVE-2026-41405: OpenClaw DoS 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