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

CVE-2026-41385: OpenClaw Information Disclosure Flaw

CVE-2026-41385 is an information disclosure vulnerability in OpenClaw that exposes Nostr private keys stored as plaintext in configuration files. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-41385 Overview

CVE-2026-41385 is a sensitive data exposure vulnerability in OpenClaw versions prior to 2026.3.31. The vulnerability allows attackers to retrieve Nostr private keys that are stored as plaintext in configuration files. The config.get method calls bypass redaction mechanisms, enabling unauthorized access to unredacted configuration data containing plaintext signing keys used for Nostr protocol operations.

Critical Impact

Exposure of Nostr private keys allows attackers to impersonate users, sign malicious messages, and potentially compromise the integrity of Nostr protocol communications associated with affected OpenClaw deployments.

Affected Products

  • OpenClaw versions before 2026.3.31
  • OpenClaw Nostr extension module
  • Systems utilizing OpenClaw's config.get method with Nostr integration

Discovery Timeline

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

Technical Details for CVE-2026-41385

Vulnerability Analysis

This vulnerability is classified under CWE-312 (Cleartext Storage of Sensitive Information). The core issue lies in the Nostr extension's configuration schema, which stores the privateKey field without proper redaction protection. When configuration data is accessed through the config.get method, the private key is returned in plaintext rather than being masked or redacted, exposing cryptographic credentials to any user or process with configuration read access.

The attack can be executed over the network by authenticated users with low privileges, requiring no user interaction. Successful exploitation results in high confidentiality impact, as attackers gain access to cryptographic signing keys that should remain secret. The vulnerability affects the integrity of identity-based operations on the Nostr protocol.

Root Cause

The root cause stems from improper handling of sensitive configuration values in the OpenClaw Nostr extension. The privateKey configuration field was not wrapped with the buildSecretInputSchema utility that provides proper redaction. Configuration views and API responses returned the raw plaintext value instead of masking or omitting the sensitive credential, violating secure configuration management practices.

Attack Vector

The attack vector is network-based, requiring authenticated access to the OpenClaw configuration system. An attacker with low-level privileges can:

  1. Access the configuration retrieval endpoint or API
  2. Call config.get methods to retrieve Nostr extension settings
  3. Extract the unredacted privateKey value from the response
  4. Use the stolen private key to sign Nostr messages or impersonate the legitimate user

The vulnerability is particularly dangerous in multi-tenant or shared-access environments where configuration data may be visible to users who should not have access to cryptographic credentials.

typescript
// Security patch in extensions/nostr/src/config-schema.ts
// Source: https://github.com/openclaw/openclaw/commit/57700d716f660591fb6e09727f3ca8041fa48b9d

   DmPolicySchema,
   MarkdownConfigSchema,
 } from "openclaw/plugin-sdk/channel-config-primitives";
+import { buildSecretInputSchema } from "openclaw/plugin-sdk/secret-input";
 import { z } from "openclaw/plugin-sdk/zod";

 /**

The fix introduces the buildSecretInputSchema utility to wrap sensitive fields, ensuring proper redaction when configuration is retrieved.

typescript
// Security patch in extensions/nostr/src/setup-surface.ts
// Source: https://github.com/openclaw/openclaw/commit/57700d716f660591fb6e09727f3ca8041fa48b9d

 import type { ChannelSetupAdapter } from "openclaw/plugin-sdk/channel-setup";
 import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
 import { DEFAULT_ACCOUNT_ID } from "openclaw/plugin-sdk/routing";
+import {
+  hasConfiguredSecretInput,
+  normalizeSecretInputString,
+} from "openclaw/plugin-sdk/secret-input";
 import {
   createTopLevelChannelParsedAllowFromPrompt,
   createTopLevelChannelDmPolicy,

The setup surface was also updated to use hasConfiguredSecretInput and normalizeSecretInputString functions for proper secret handling throughout the configuration lifecycle.

Detection Methods for CVE-2026-41385

Indicators of Compromise

  • Unusual configuration API access patterns targeting Nostr extension settings
  • Unexpected config.get calls retrieving privateKey fields from unauthorized sources
  • Nostr messages signed with organizational keys from unrecognized IP addresses or contexts
  • Audit log entries showing bulk configuration retrievals by non-administrative users

Detection Strategies

  • Monitor application logs for configuration access requests targeting the Nostr extension module
  • Implement alerting on config.get method invocations that return sensitive field patterns
  • Deploy API access monitoring to detect enumeration attempts against configuration endpoints
  • Review Nostr network activity for messages signed with keys associated with your organization from unexpected origins

Monitoring Recommendations

  • Enable verbose logging for all configuration retrieval operations in OpenClaw
  • Implement rate limiting on configuration API endpoints to prevent bulk extraction
  • Deploy file integrity monitoring on configuration storage locations
  • Configure SIEM rules to correlate configuration access with subsequent Nostr protocol activity

How to Mitigate CVE-2026-41385

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.3.31 or later immediately
  • Rotate all Nostr private keys that may have been exposed through the vulnerable configuration system
  • Audit configuration access logs to identify potential unauthorized key retrievals
  • Review Nostr message history for any suspicious activity using potentially compromised keys

Patch Information

The vulnerability has been addressed in OpenClaw version 2026.3.31. The security patch is available via GitHub Commit 57700d7. For detailed information about the vulnerability and remediation, consult the GitHub Security Advisory GHSA-jjw7-3vjf-fg5j and the VulnCheck Advisory.

Workarounds

  • Restrict access to configuration retrieval APIs to only essential administrative users
  • Implement network segmentation to limit access to OpenClaw configuration endpoints
  • Use environment variables or external secret managers instead of configuration files for private key storage
  • Deploy API gateways with field-level redaction rules to mask sensitive values in configuration responses
bash
# Configuration example - Restrict config API access
# Add to OpenClaw server configuration

# Limit config endpoint access to admin roles only
OPENCLAW_CONFIG_API_ROLES="admin,security-admin"

# Enable audit logging for all config access
OPENCLAW_CONFIG_AUDIT_ENABLED=true

# Use external secret manager for sensitive credentials
OPENCLAW_SECRET_PROVIDER="vault"
OPENCLAW_VAULT_ADDR="https://vault.internal:8200"

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.02%

  • 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-312
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Advisory on Openclaw
  • Related CVEs
  • CVE-2026-42438: Openclaw Information Disclosure Flaw

  • CVE-2026-43528: Openclaw Information Disclosure Flaw

  • CVE-2026-43581: OpenClaw Information Disclosure Vulnerability

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