The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-43528

CVE-2026-43528: Openclaw Information Disclosure Flaw

CVE-2026-43528 is an information disclosure vulnerability in Openclaw that exposes sensitive credentials through a redaction bypass. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43528 Overview

CVE-2026-43528 is a redaction bypass vulnerability in OpenClaw versions before 2026.4.14. The flaw allows authenticated gateway clients to retrieve unredacted secrets through the sourceConfig and runtimeConfig alias fields exposed by the configuration snapshot API. Attackers with config read access can extract provider API keys, gateway authentication material, and channel credentials that the redaction logic was supposed to strip. The issue is classified under CWE-212: Improper Removal of Sensitive Information Before Storage or Transfer.

Critical Impact

Authenticated low-privilege clients can harvest provider API keys, gateway tokens, and channel credentials by reading configuration snapshots, enabling lateral movement to upstream provider accounts and connected services.

Affected Products

  • OpenClaw (Node.js distribution) versions prior to 2026.4.14
  • Deployments exposing the gateway config read API to authenticated clients
  • Environments storing provider API keys or channel credentials in sourceConfig or runtimeConfig

Discovery Timeline

  • 2026-05-05 - CVE-2026-43528 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-43528

Vulnerability Analysis

OpenClaw maintains configuration snapshots that include both raw and resolved views of gateway settings. The redactConfigSnapshot routine in src/config/redact-snapshot.ts is responsible for stripping secrets before snapshots are returned to gateway clients. Prior to version 2026.4.14, the redaction routine cleared the config and resolved fields but failed to redact the newer sourceConfig and runtimeConfig alias fields that mirror the same data.

When the snapshot retrieval logic encountered an invalid or partially populated configuration, it returned a response that emptied config but left sourceConfig and runtimeConfig untouched. Authenticated clients querying the gateway config API received the unredacted aliases containing provider API keys, authentication tokens, and channel credentials.

Root Cause

The root cause is incomplete redaction coverage. The original redactConfigSnapshot implementation predated the introduction of sourceConfig and runtimeConfig aliases. When those alias fields were added to the snapshot schema, the redaction list was not updated to include them, leaving a parallel path for sensitive values to leak through the same API response.

Attack Vector

An attacker first authenticates to the OpenClaw gateway with any account that holds config read permissions. The attacker then issues a request that triggers the snapshot fallback path, for example by referencing a configuration that fails strict validation. The server returns a snapshot object in which config is empty but sourceConfig and runtimeConfig still contain the original secret values. The attacker parses the response and extracts provider API keys and gateway credentials directly.

typescript
// Patch from src/config/redact-snapshot.ts (commit 86734ef)
// properly redacted all sensitive data. Handing out a partially or, worse,
// unredacted config string would be bad.
// Therefore, the only safe route is to reject handling out broken configs.
const redactedConfig = {} as ConfigFileSnapshot["config"];
const redactedResolved = {} as ConfigFileSnapshot["resolved"];
return {
  ...snapshot,
  sourceConfig: redactedResolved,
  runtimeConfig: redactedConfig,
  config: redactedConfig,
  raw: null,
  parsed: null,
  resolved: redactedResolved,
};

Source: GitHub commit 86734ef. The patch explicitly clears sourceConfig and runtimeConfig alongside config and resolved so that no alias path leaks secrets.

Detection Methods for CVE-2026-43528

Indicators of Compromise

  • Gateway access logs showing authenticated config read requests followed by outbound traffic to upstream provider APIs from new IP addresses or service accounts
  • Provider-side audit events showing API key usage from geographies or hosts that do not match expected OpenClaw deployment locations
  • Unexpected reads against the configuration snapshot endpoint by accounts that historically did not consume that API
  • Channel credential reuse alerts from connected messaging or notification providers

Detection Strategies

  • Inspect HTTP responses from the OpenClaw config snapshot endpoint for non-empty sourceConfig or runtimeConfig objects containing key-like values such as apiKey, token, or secret
  • Correlate authenticated config read events with subsequent authentication attempts using provider API keys to identify potential credential harvesting
  • Diff snapshot responses across versions to confirm whether the deployed instance returns redacted alias fields

Monitoring Recommendations

  • Enable verbose audit logging on the OpenClaw gateway for all config read API calls, including caller identity and response size
  • Forward gateway and provider API logs to a centralized analytics platform and alert on first-use of API keys from new source IPs
  • Rotate and monitor any provider API keys, gateway tokens, and channel credentials that were ever stored in OpenClaw configurations on vulnerable versions

How to Mitigate CVE-2026-43528

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.14 or later, which extends redactConfigSnapshot to cover sourceConfig and runtimeConfig
  • Rotate every provider API key, gateway authentication secret, and channel credential that was present in OpenClaw configurations prior to upgrade
  • Audit gateway access logs for config read calls by low-privilege accounts and review whether any returned non-empty alias fields
  • Restrict config read permissions to the minimum set of operators required to administer the gateway

Patch Information

The fix is delivered in commit 86734ef and tracked under GitHub Security Advisory GHSA-8372-7vhw-cm6q. Additional technical context is available in the VulnCheck advisory. Upgrade the openclaw Node.js package to 2026.4.14 or later from the official registry.

Workarounds

  • Revoke config read scope from all non-administrative gateway clients until the upgrade is complete
  • Place the OpenClaw gateway behind a network policy that limits config API access to a trusted management subnet
  • Move provider API keys and channel credentials to an external secret store and reference them indirectly so that snapshot responses do not contain raw values
bash
# Upgrade OpenClaw to a patched release
npm install openclaw@">=2026.4.14"

# Verify the installed version
npm ls openclaw

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOpenclaw

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.06%

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

  • GitHub Security Advisory GHSA-8372
  • Related CVEs
  • CVE-2026-42438: Openclaw Information Disclosure Flaw

  • CVE-2026-43581: OpenClaw Information Disclosure Vulnerability

  • CVE-2026-41407: OpenClaw Information Disclosure Flaw

  • CVE-2026-41393: OpenClaw Information Disclosure Flaw
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