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

CVE-2026-27007: OpenClaw Config Integrity Vulnerability

CVE-2026-27007 is a configuration integrity flaw in OpenClaw that causes order-sensitive sandbox arrays to hash incorrectly, leading to stale container reuse. This article covers the technical details, affected versions, and fixes.

Published: February 27, 2026

CVE-2026-27007 Overview

CVE-2026-27007 is a configuration integrity vulnerability in OpenClaw, a personal AI assistant application. Prior to version 2026.2.15, the normalizeForHash function in src/agents/sandbox/config-hash.ts incorrectly sorted arrays containing only primitive values, causing order-sensitive sandbox configuration arrays to produce identical hash values even when their order changed. This behavior affects sandbox container recreation decisions in OpenClaw's sandbox flows.

Critical Impact

Stale sandbox containers may be reused when configuration changes involve only array ordering modifications (such as Docker dns and binds arrays), potentially leading to security policy inconsistencies and unexpected container behavior.

Affected Products

  • OpenClaw versions prior to 2026.2.15
  • OpenClaw Node.js deployments using sandbox functionality
  • Systems utilizing Docker sandbox container orchestration with OpenClaw

Discovery Timeline

  • 2026-02-20 - CVE-2026-27007 published to NVD
  • 2026-02-20 - Last updated in NVD database

Technical Details for CVE-2026-27007

Vulnerability Analysis

The vulnerability exists in OpenClaw's sandbox configuration hashing mechanism. The normalizeForHash function is responsible for creating deterministic hash values from configuration objects to determine whether sandbox containers need recreation. However, the implementation flaw caused all arrays containing primitive values to be sorted before hashing, which violated the semantic meaning of order-dependent configuration arrays.

In containerized environments, certain configuration parameters are explicitly order-sensitive. For example, Docker's dns array specifies DNS servers in priority order, and the binds array defines volume mount ordering. When these arrays were normalized through sorting, two configurations with different ordering would produce identical hashes, causing the system to incorrectly identify them as unchanged.

This means an administrator who intentionally modified the priority order of DNS servers or bind mounts would find that OpenClaw continued using stale containers with the previous configuration, as the hash comparison would indicate no changes occurred.

Root Cause

The root cause is improper logic separation in the normalizeForHash function. The function was designed to normalize object key ordering for deterministic hashing (a valid operation since object key order is not semantically meaningful in JavaScript/JSON). However, this normalization was incorrectly extended to arrays containing primitive values.

The vulnerable code checked if all array elements were primitives and, if so, sorted them alphabetically. This approach failed to recognize that array ordering frequently carries semantic meaning in configuration contexts, unlike object key ordering.

Attack Vector

This vulnerability requires local access and affects configuration integrity. An attacker or administrator could exploit this behavior in scenarios where:

  1. Security-critical configurations depend on array ordering (e.g., DNS resolution priority, firewall rule precedence)
  2. Configuration changes are made that only affect array ordering
  3. The system fails to recreate containers, leaving stale security configurations in place

The following patch shows the security fix applied in version 2026.2.15:

typescript
   agentWorkspaceDir: string;
 };
 
-function isPrimitive(value: unknown): value is string | number | boolean | bigint | symbol | null {
-  return value === null || (typeof value !== "object" && typeof value !== "function");
-}
 function normalizeForHash(value: unknown): unknown {
   if (value === undefined) {
     return undefined;
   }
   if (Array.isArray(value)) {
-    const normalized = value
-      .map(normalizeForHash)
-      .filter((item): item is unknown => item !== undefined);
-    const primitives = normalized.filter(isPrimitive);
-    if (primitives.length === normalized.length) {
-      return [...primitives].toSorted((a, b) =>
-        primitiveToString(a).localeCompare(primitiveToString(b)),
-      );
-    }
-    return normalized;
+    return value.map(normalizeForHash).filter((item): item is unknown => item !== undefined);
   }
   if (value && typeof value === "object") {
     const entries = Object.entries(value).toSorted(([a], [b]) => a.localeCompare(b));

Source: GitHub Commit 41ded30

The fix removes the isPrimitive helper function and the conditional sorting logic for primitive arrays. Arrays now preserve their original ordering during normalization, while object keys continue to be sorted for deterministic hashing.

Detection Methods for CVE-2026-27007

Indicators of Compromise

  • Sandbox containers that persist despite configuration file changes
  • Discrepancies between expected and actual DNS resolution behavior in sandbox environments
  • Volume mount configurations not reflecting recent administrative changes
  • Configuration audit logs showing changes that were not applied to running containers

Detection Strategies

  • Compare deployed sandbox container configurations against source configuration files to identify drift
  • Monitor OpenClaw logs for configuration hash computations and container recreation decisions
  • Implement configuration validation scripts that verify array ordering in deployed containers
  • Review sandbox container uptime against configuration change timestamps

Monitoring Recommendations

  • Enable verbose logging for sandbox configuration hash calculations
  • Set up alerts for configuration changes that do not result in container recreation
  • Implement periodic configuration drift detection between intended and actual sandbox states
  • Monitor for unusual container reuse patterns when configuration updates are expected

How to Mitigate CVE-2026-27007

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.15 or later immediately
  • Manually restart all sandbox containers after upgrading to ensure fresh configurations
  • Audit existing sandbox configurations for any order-dependent arrays that may have been affected
  • Review container configurations to verify they match intended settings

Patch Information

The vulnerability is addressed in OpenClaw version 2026.2.15. The fix preserves array ordering during hash normalization while maintaining deterministic hashing for object keys. The patch is available through the official GitHub repository.

For detailed information, refer to the GitHub Security Advisory GHSA-xxvh-5hwj-42pp and the v2026.2.15 release notes.

Workarounds

  • Force container recreation by modifying non-array configuration values alongside array changes
  • Implement manual container restart procedures after any configuration change
  • Add dummy object entries to configurations to change the overall hash when array order is modified
  • Use container orchestration tools with independent configuration drift detection
bash
# Force sandbox container recreation after configuration changes
openclaw sandbox restart --force-recreate

# Verify current container configuration matches source
openclaw sandbox config --verify

# List containers with configuration drift
openclaw sandbox status --check-drift

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechOpenclaw

  • SeverityMEDIUM

  • CVSS Score4.8

  • 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:N/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
  • AvailabilityNone
  • CWE References
  • CWE-1254
  • Technical References
  • GitHub Release v2026.2.15
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-xxvh-5hwj-42pp
  • Related CVEs
  • CVE-2026-41294: OpenClaw Environment Injection Vulnerability

  • CVE-2026-35659: Openclaw Service Discovery Vulnerability

  • CVE-2026-24764: Openclaw Prompt Injection Vulnerability

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