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

CVE-2026-28363: OpenClaw Authentication Bypass Vulnerability

CVE-2026-28363 is an authentication bypass flaw in OpenClaw that allows attackers to execute commands without approval by exploiting GNU long-option abbreviations. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 6, 2026

CVE-2026-28363 Overview

CVE-2026-28363 is an input validation bypass vulnerability in OpenClaw, a Node.js application, that allows attackers to circumvent the tools.exec.safeBins validation mechanism. The vulnerability exists in allowlist mode where the validation only checks for exact string matches like --compress-program, failing to account for GNU long-option abbreviations such as --compress-prog. This oversight enables approval-free execution paths that were designed to require explicit approval.

Critical Impact

Attackers with low-privilege network access can bypass security controls intended to prevent unauthorized command execution, potentially leading to full system compromise through unapproved binary execution.

Affected Products

  • OpenClaw versions prior to 2026.2.23
  • OpenClaw Node.js package (all vulnerable versions)

Discovery Timeline

  • 2026-02-27 - CVE CVE-2026-28363 published to NVD
  • 2026-02-27 - Last updated in NVD database

Technical Details for CVE-2026-28363

Vulnerability Analysis

This vulnerability stems from an incomplete denylist implementation in OpenClaw's tools.exec.safeBins validation function. The security mechanism was designed to prevent execution of potentially dangerous commands by validating command-line arguments against a list of known dangerous options. However, the implementation only matched exact strings, failing to consider that GNU utilities accept abbreviated versions of long options.

GNU long-option abbreviation is a feature where command-line options can be shortened to any unambiguous prefix. For example, --compress-program can be abbreviated to --compress-prog, --compress-p, or even shorter variants, as long as the abbreviation uniquely identifies the intended option. This behavior is standard across GNU utilities and is documented in GNU coding standards.

The security implication is significant: while the OpenClaw allowlist explicitly denied --compress-program for the sort command, attackers could use abbreviated forms like --compress-prog to achieve the same effect while bypassing the validation entirely. This creates an approval-free execution path for functionality that was intentionally restricted.

Root Cause

The root cause is classified as CWE-184: Incomplete List of Disallowed Inputs. The safeBins validation function performs exact string matching against a predefined list of dangerous options without accounting for GNU's option abbreviation behavior. This incomplete approach to input validation creates a gap between what the security control intends to block and what it actually blocks.

Attack Vector

The attack is network-accessible and requires low privileges to execute. An authenticated attacker can craft requests that include abbreviated GNU long options for the sort command. Since the validation logic only checks for the full option string --compress-program, the attacker's abbreviated option --compress-prog passes validation and reaches the underlying system execution layer. This allows the attacker to specify an arbitrary compression program, which could be leveraged for command injection or privilege escalation depending on the system configuration.

The attack flow involves:

  1. Attacker identifies that OpenClaw uses allowlist validation for the sort command
  2. Attacker crafts a request using abbreviated GNU options (e.g., --compress-prog instead of --compress-program)
  3. The abbreviated option bypasses the exact-match validation in safeBins
  4. The underlying sort command interprets the abbreviated option and executes the attacker-specified program

Detection Methods for CVE-2026-28363

Indicators of Compromise

  • Unusual command-line arguments containing abbreviated GNU long options (e.g., --compress-p instead of --compress-program)
  • Unexpected child process spawning from OpenClaw application processes
  • Log entries showing sort command executions with compression-related flags that don't match expected patterns

Detection Strategies

  • Implement application-level logging to capture all command-line arguments passed to system utilities
  • Monitor for process execution chains where OpenClaw spawns unexpected child processes
  • Review application logs for sort commands with partial option matches like --compress-p*
  • Deploy runtime application security monitoring to detect command injection patterns

Monitoring Recommendations

  • Enable verbose logging in OpenClaw to capture all tools.exec operations
  • Set up alerts for any sort command execution with --compress prefix options
  • Monitor system call traces for the OpenClaw process to identify unauthorized binary executions
  • Implement egress filtering to detect potential data exfiltration following compromise

How to Mitigate CVE-2026-28363

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.23 or later immediately
  • Audit existing deployments for signs of exploitation
  • Review and restrict permissions for the OpenClaw service account
  • Consider temporarily disabling allowlist mode if upgrade is not immediately possible

Patch Information

The OpenClaw development team has addressed this vulnerability in version 2026.2.23. The fix implements proper handling of GNU long-option abbreviations in the safeBins validation logic, ensuring that abbreviated forms of dangerous options are also blocked. For detailed patch information and security advisory, see the GitHub Security Advisory.

Workarounds

  • Disable the sort command in tools.exec.safeBins configuration until patching is possible
  • Implement additional input validation at the network perimeter to block requests containing abbreviated GNU options
  • Run OpenClaw in a sandboxed environment with restricted system access
  • Apply principle of least privilege to limit the impact of potential exploitation

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

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-184
  • Vendor Resources
  • 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