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

CVE-2026-35667: OpenClaw DOS Vulnerability

CVE-2026-35667 is a denial of service flaw in OpenClaw that allows attackers to trigger abrupt process termination, leading to data corruption and resource leaks. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 17, 2026

CVE-2026-35667 Overview

OpenClaw before version 2026.3.24 contains an incomplete fix for CVE-2026-27486 where the !stop chat command uses an unpatched killProcessTree function from shell-utils.ts that sends SIGKILL immediately without graceful SIGTERM shutdown. Attackers can trigger process termination via the !stop command, causing data corruption, resource leaks, and skipped security-sensitive cleanup operations.

Critical Impact

This improper process termination vulnerability (CWE-404) allows attackers with local access to bypass graceful shutdown procedures, potentially leading to data corruption, resource leaks, and the circumvention of security-sensitive cleanup operations that should execute during normal process termination.

Affected Products

  • OpenClaw versions prior to 2026.3.24

Discovery Timeline

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

Technical Details for CVE-2026-35667

Vulnerability Analysis

This vulnerability stems from an incomplete patch applied to address CVE-2026-27486. The killProcessTree function within shell-utils.ts was intended to be fixed but remains unpatched in the code path triggered by the !stop chat command. When invoked, this function immediately sends a SIGKILL signal to terminate processes rather than following proper shutdown protocol.

The proper termination sequence should first send a SIGTERM signal to allow processes to perform cleanup operations gracefully—flushing buffers, releasing file locks, closing database connections, and executing security-sensitive finalizers. By skipping directly to SIGKILL, the application forcibly terminates processes without any opportunity for orderly shutdown.

This improper resource shutdown classification (CWE-404) creates multiple downstream security implications. Processes that manage persistent data may leave files in inconsistent states, security tokens or credentials in memory may not be properly zeroed, and audit logging operations may be bypassed entirely.

Root Cause

The root cause is an incomplete remediation of CVE-2026-27486. While other code paths were patched to use graceful termination, the !stop command handler continues to invoke the original vulnerable killProcessTree implementation in shell-utils.ts. This function sends SIGKILL immediately instead of first attempting SIGTERM with a timeout before escalating to forced termination.

Attack Vector

The attack requires local access to the system with low privileges. An attacker who can send the !stop chat command can trigger the vulnerable code path. Upon execution, all child processes in the process tree are immediately killed without graceful shutdown, bypassing any cleanup handlers, finalization routines, or security-sensitive teardown operations.

The vulnerability mechanism centers on improper signal handling during process termination. When the !stop command is received, the application calls killProcessTree() which iterates through child processes and sends SIGKILL (signal 9) directly. This signal cannot be caught or ignored by the target processes, preventing them from executing registered signal handlers, atexit() callbacks, or destructor code that would normally run during graceful termination.

For detailed technical information, see the GitHub Security Advisory GHSA-3298-56p6-rpw2.

Detection Methods for CVE-2026-35667

Indicators of Compromise

  • Unexpected SIGKILL signals in system logs without preceding SIGTERM signals
  • Process termination events where cleanup operations or finalizers did not execute
  • Data corruption in files that were being written to by terminated processes
  • Resource leaks such as orphaned file handles, unreleased locks, or dangling database connections
  • Missing or truncated audit log entries that should record shutdown events

Detection Strategies

  • Monitor for invocations of the !stop chat command in application logs
  • Implement process monitoring to detect abnormal termination patterns (SIGKILL without SIGTERM)
  • Review application logs for errors indicating resources were not properly released
  • Enable audit logging for all process termination events and signal delivery

Monitoring Recommendations

  • Configure alerting on process crashes or forced terminations in production environments
  • Implement file integrity monitoring on critical data files that may be affected by abrupt termination
  • Monitor system resource utilization for signs of resource leaks following process termination
  • Review chat command logs for suspicious or unauthorized use of the !stop command

How to Mitigate CVE-2026-35667

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.24 or later where the killProcessTree function is fully patched
  • Restrict access to the !stop chat command to authorized administrators only
  • Review and audit recent uses of the !stop command for potential exploitation
  • Check data integrity of any files or databases that may have been affected by improper termination

Patch Information

The vulnerability is addressed in OpenClaw version 2026.3.24 and later. The fix ensures that the killProcessTree function sends SIGTERM first, allowing processes time to perform graceful shutdown before escalating to SIGKILL if necessary.

For additional details, refer to the GitHub Security Advisory and the VulnCheck Advisory.

Workarounds

  • Disable or restrict access to the !stop chat command until the patch can be applied
  • Implement application-level access controls to prevent unauthorized users from invoking termination commands
  • Configure process supervisors to handle graceful shutdown externally before any forced termination
  • Deploy monitoring to detect and alert on improper process termination events
bash
# Configuration example
# Restrict access to the !stop command by modifying chat command permissions
# Location: config/permissions.yaml
chat_commands:
  stop:
    enabled: false  # Disable until patched
    # Or restrict to admin users only:
    # allowed_roles: ["admin"]

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

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-404
  • Technical References
  • GitHub Security Advisory GHSA-3298-56p6-rpw2

  • VulnCheck Advisory on OpenClaw
  • Related CVEs
  • CVE-2026-35665: Openclaw Openclaw DOS Vulnerability

  • CVE-2026-32980: Openclaw DOS Vulnerability

  • CVE-2026-32044: Openclaw Archive Extraction DoS Vulnerability

  • CVE-2026-32049: Openclaw Openclaw DOS 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