banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-28482

CVE-2026-28482: OpenClaw Path Traversal Vulnerability

CVE-2026-28482 is a path traversal vulnerability in OpenClaw allowing authenticated attackers to read or write arbitrary files outside intended directories. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28482 Overview

CVE-2026-28482 is a path traversal vulnerability affecting OpenClaw versions prior to 2026.2.12. The vulnerability exists because the application constructs transcript file paths using unsanitized sessionId parameters and sessionFile paths without enforcing directory containment. Authenticated attackers can exploit path traversal sequences like ../../etc/passwd in sessionId or sessionFile parameters to read or write arbitrary files outside the agent sessions directory.

Critical Impact

Authenticated attackers can achieve arbitrary file read and write access outside the intended session directory, potentially leading to sensitive data exposure, configuration tampering, or further system compromise.

Affected Products

  • OpenClaw versions prior to 2026.2.12

Discovery Timeline

  • 2026-03-05 - CVE CVE-2026-28482 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-28482

Vulnerability Analysis

This path traversal vulnerability (CWE-22) stems from insufficient input validation when processing session-related file operations. The application fails to properly sanitize user-supplied sessionId and sessionFile parameters before constructing file paths for transcript storage and retrieval. Without proper directory containment checks, the application blindly concatenates these parameters into file system paths.

When an authenticated user supplies a malicious value containing path traversal sequences (such as ../), the resulting file path escapes the intended sessions directory. This allows attackers to access sensitive system files for reading (information disclosure) or overwrite critical configuration files (integrity compromise).

Root Cause

The root cause lies in the improper path resolution logic within the session handling components. Specifically, the subagent-announce.ts and sessions-list-tool.ts modules were constructing transcript paths without validating that the resolved path remained within the expected sessionsDir boundary. The absence of explicit agent context during path resolution allowed attackers to manipulate the path components to escape directory constraints.

Attack Vector

An authenticated attacker can exploit this vulnerability locally by manipulating the sessionId or sessionFile parameters in API requests or session operations. By injecting path traversal sequences like ../../etc/passwd or ../../../app/config.json, the attacker can:

  1. Read arbitrary files on the system that the OpenClaw process has permission to access
  2. Write or overwrite files outside the sessions directory, potentially modifying application configuration or planting malicious content

The security patches introduced the resolveSessionFilePath function with explicit agent context enforcement to properly contain file operations within the intended directory structure:

typescript
   loadSessionStore,
   resolveAgentIdFromSessionKey,
   resolveMainSessionKey,
+  resolveSessionFilePath,
   resolveStorePath,
 } from "../config/sessions.js";
 import { callGateway } from "../gateway/call.js";

Source: GitHub Commit Change

The fix adds explicit agent context during path resolution to ensure paths cannot escape the designated directory:

typescript
   });
 
   const sessionId = entry?.sessionId;
+  const agentId = resolveAgentIdFromSessionKey(params.sessionKey);
   let transcriptPath: string | undefined;
   if (sessionId && storePath) {
     try {
       transcriptPath = resolveSessionFilePath(sessionId, entry, {
+        agentId,
         sessionsDir: path.dirname(storePath),
       });
     } catch {

Source: GitHub Commit Change

Detection Methods for CVE-2026-28482

Indicators of Compromise

  • Log entries showing session file requests containing path traversal patterns such as ../, ..%2f, or encoded variants
  • Unexpected file access attempts outside the sessions directory in application or system audit logs
  • Access to sensitive system files like /etc/passwd, /etc/shadow, or application configuration files from the OpenClaw process

Detection Strategies

  • Monitor application logs for sessionId or sessionFile parameters containing suspicious characters or traversal patterns
  • Implement file integrity monitoring (FIM) on critical system files and configuration directories
  • Deploy web application firewall (WAF) rules to detect and block path traversal attempts in request parameters

Monitoring Recommendations

  • Enable verbose logging for session-related file operations in OpenClaw
  • Configure alerts for file access events outside the designated sessions directory
  • Review access patterns for the OpenClaw service account to identify anomalous file system activity

How to Mitigate CVE-2026-28482

Immediate Actions Required

  • Upgrade OpenClaw to version 2026.2.12 or later immediately
  • Review application and system logs for evidence of exploitation attempts
  • Audit file permissions to ensure the OpenClaw process operates with minimal required privileges
  • Verify integrity of sensitive system and configuration files that may have been targeted

Patch Information

Security patches have been released to address this vulnerability. The fix introduces the resolveSessionFilePath function with explicit agent context enforcement to ensure all transcript path operations remain contained within the designated sessions directory.

Relevant security fixes are documented in the following resources:

  • GitHub Security Advisory GHSA-5xfq-5mr7-426q
  • VulnCheck Advisory on OpenClaw

Workarounds

  • Restrict network access to OpenClaw instances to trusted users and networks only
  • Implement additional input validation at the application or reverse proxy layer to reject requests containing path traversal sequences
  • Run the OpenClaw service with a restricted service account that has minimal file system permissions
bash
# Configuration example - restrict OpenClaw service account permissions
# Create restricted service account
useradd -r -s /sbin/nologin openclaw-svc

# Set minimal directory permissions
chown -R openclaw-svc:openclaw-svc /opt/openclaw/sessions
chmod 700 /opt/openclaw/sessions

# Run service with restricted account
systemctl edit openclaw
# Add: User=openclaw-svc

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

  • SeverityHIGH

  • CVSS Score8.4

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

  • GitHub Commit Change

  • GitHub Security Advisory

  • VulnCheck Advisory on OpenClaw
  • Related CVEs
  • CVE-2026-28486: OpenClaw Path Traversal Vulnerability

  • CVE-2026-28457: OpenClaw Path Traversal Vulnerability

  • CVE-2026-29611: OpenClaw Path Traversal Vulnerability

  • CVE-2026-28462: OpenClaw Path Traversal Vulnerability
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
  • English
  • 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