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

CVE-2026-44111: OpenClaw Path Traversal Vulnerability

CVE-2026-44111 is a path traversal vulnerability in OpenClaw's QMD backend that allows unauthorized file access. Attackers can bypass restrictions to read Markdown files outside intended locations. This article covers affected versions, technical details, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-44111 Overview

CVE-2026-44111 is an arbitrary file read vulnerability in OpenClaw versions before 2026.4.15. The flaw resides in the QMD backend memory_get function, which fails to constrain reads to canonical memory locations. Callers with access to the memory tool can supply arbitrary workspace Markdown paths and retrieve any .md file within the workspace root. The issue is tracked as [CWE-183] and is documented in the GitHub Security Advisory GHSA-f934-5rqf-xx47.

Critical Impact

Authenticated callers can bypass path restrictions in the QMD memory backend to read Markdown files outside the indexed memory set, exposing workspace content not intended for retrieval through the memory tool.

Affected Products

  • OpenClaw versions prior to 2026.4.15
  • OpenClaw extensions/memory-core QMD manager component
  • Deployments exposing the QMD memory_get tool to low-privilege callers

Discovery Timeline

  • 2026-05-06 - CVE-2026-44111 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-44111

Vulnerability Analysis

The vulnerability resides in the QMD memory backend that ships with OpenClaw's memory-core extension. The memory_get function accepts a path argument intended to identify a canonical memory entry. The implementation does not constrain that path to the indexed QMD result set or the canonical memory directory. As a result, any Markdown file located beneath the workspace root can be returned to the caller.

The issue is classified under [CWE-183] (Permissive List of Allowed Inputs). The function permits broader inputs than the documented memory namespace, treating arbitrary workspace .md files as valid memory entries. Confidentiality of workspace Markdown content is impacted, while integrity and availability are not.

Root Cause

The QMD manager resolved caller-supplied paths against the workspace root rather than against the canonical memory directory. Inputs that pointed to Markdown files outside indexed memory locations were accepted because the validation logic only checked containment within the workspace, not membership in the memory index.

Attack Vector

Exploitation requires network access to the OpenClaw instance and low privileges sufficient to invoke the memory tool. No user interaction is required. An attacker calls memory_get with a workspace-relative path pointing to a Markdown file outside the canonical memory set and receives the file contents in the response.

typescript
// Patch excerpt: extensions/memory-core/src/memory/qmd-manager.ts
// Align QMD memory reads with canonical memory paths (#66026)
   resolveStateDir,
   writeFileWithinRoot,
   type OpenClawConfig,
-  type ResolvedMemorySearchSyncConfig,
 } from "openclaw/plugin-sdk/memory-core-host-engine-foundation";
 import {
   buildSessionEntry,

Source: GitHub commit 37d5971. The patch refactors QMD reads so they resolve through canonical memory path helpers instead of generic workspace path utilities.

Detection Methods for CVE-2026-44111

Indicators of Compromise

  • Unexpected memory_get invocations referencing Markdown paths outside the canonical memory directory.
  • QMD audit entries returning files that are not part of the indexed memory result set.
  • Repeated memory_get calls iterating across workspace subdirectories from a single caller identity.

Detection Strategies

  • Inspect OpenClaw application logs for memory_get requests where the resolved path falls outside the canonical memory directory.
  • Correlate memory tool calls with the QMD index to flag reads of non-indexed Markdown files.
  • Alert on caller identities issuing high volumes of memory_get requests targeting distinct paths.

Monitoring Recommendations

  • Forward OpenClaw access and tool-invocation logs to a centralized SIEM for retention and review.
  • Monitor file-system access on workspace roots for read patterns that match QMD service account activity outside expected directories.
  • Track the deployed OpenClaw version and alert when instances run a release earlier than 2026.4.15.

How to Mitigate CVE-2026-44111

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.4.15 or later, which contains the canonical memory path fix.
  • Restrict access to the QMD memory tool to trusted callers and remove unnecessary low-privilege grants.
  • Audit workspace Markdown content for sensitive material and relocate or redact files that should not be reachable through the memory tool.

Patch Information

The fix is delivered in commit 37d5971db36491d5050efd42c333cbe0b98ed292, which aligns QMD memory reads with canonical memory paths. Additional context is available in the GitHub Security Advisory GHSA-f934-5rqf-xx47 and the VulnCheck advisory.

Workarounds

  • Disable or gate the QMD memory_get tool until the patched release is deployed.
  • Move sensitive Markdown content out of the workspace root used by OpenClaw.
  • Apply network and authentication controls so only trusted identities can invoke memory tools.
bash
# Verify the deployed OpenClaw version meets the patched baseline
openclaw --version
# Expected output: 2026.4.15 or later

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOpenclaw

  • SeverityLOW

  • CVSS Score2.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:L/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-183
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2026-43570: Openclaw Path Traversal Vulnerability

  • CVE-2026-43533: OpenClaw Path Traversal Vulnerability

  • CVE-2026-43567: OpenClaw Path Traversal Vulnerability

  • CVE-2026-42424: Openclaw Path Traversal 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