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

CVE-2026-43989: JunoClaw Path Traversal Vulnerability

CVE-2026-43989 is a path traversal flaw in JunoClaw, an agentic AI platform on Juno Network. The upload_wasm tool lacks path validation, enabling unauthorized file access. This article covers technical details, affected versions, impact, and mitigation.

Published: May 17, 2026

CVE-2026-43989 Overview

CVE-2026-43989 affects JunoClaw, an agentic AI platform built on Juno Network. Versions prior to 0.x.y-security-1 contain an improper input validation flaw [CWE-20] in the upload_wasm Model Context Protocol (MCP) tool. The tool accepts a filesystem path supplied by the agent and uploads the bytes the path resolves to. It performs no validation of location, symlink target, file size, or file format. An attacker who can influence the agent's tool inputs can exfiltrate arbitrary files from the host filesystem or upload unauthorized WebAssembly modules.

Critical Impact

An attacker can coerce the agent into uploading arbitrary local files, including sensitive configuration data and credentials, by manipulating the path argument passed to upload_wasm.

Affected Products

  • JunoClaw agentic AI platform
  • All versions prior to 0.x.y-security-1
  • Deployments exposing the upload_wasm MCP tool to untrusted agent input

Discovery Timeline

  • 2026-05-12 - CVE-2026-43989 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43989

Vulnerability Analysis

The upload_wasm MCP tool exposes a path parameter to the agent layer. The implementation reads the bytes located at the supplied path and uploads them without applying any constraints. The function does not verify that the path resides within an expected directory, does not resolve symbolic links before reading, does not enforce a maximum file size, and does not validate that the file conforms to the WebAssembly binary format.

This design allows the agent, or any actor capable of influencing agent prompts or tool calls, to direct the upload at arbitrary locations on the host. Files such as /etc/passwd, SSH private keys, cloud credential files, and application configuration can be exfiltrated through the legitimate upload channel. The flaw also permits delivery of malformed or malicious WebAssembly payloads downstream.

Root Cause

The root cause is missing input validation on the path argument and missing format validation on the file contents. The tool trusts agent-supplied input as if it were operator-supplied input. Symlink resolution and path canonicalization are not performed prior to the read operation.

Attack Vector

Exploitation requires local access and user interaction with the agent, consistent with the recorded attack vector. A prompt injection delivered through agent inputs, or a compromised tool-calling chain, can supply a crafted path. The scope change reflects the ability to read resources outside the tool's intended boundary and to push attacker-controlled bytes into trusted upload pipelines.

No verified exploit code is published. See the GitHub Security Advisory GHSA-rw59-34hw-pmwp for vendor technical details.

Detection Methods for CVE-2026-43989

Indicators of Compromise

  • upload_wasm tool invocations referencing paths outside the application's working directory or designated WebAssembly module directory.
  • Agent tool calls referencing sensitive paths such as /etc/, ~/.ssh/, ~/.aws/, or environment files.
  • Uploaded artifacts that do not begin with the WebAssembly magic bytes \\x00asm.
  • Symlinks created within agent-accessible directories that point to system locations.

Detection Strategies

  • Inspect MCP server logs for upload_wasm calls with absolute paths or path traversal sequences such as ../.
  • Correlate agent prompt content with subsequent tool calls to identify prompt-injection patterns directing file reads.
  • Hash and validate uploaded artifacts to confirm they match expected WebAssembly module signatures.

Monitoring Recommendations

  • Enable verbose audit logging on all MCP tool invocations, capturing tool name, arguments, and invoking agent identity.
  • Alert on reads of credential and configuration files by the JunoClaw service account.
  • Track outbound transfers of files originating from the JunoClaw host to detect data exfiltration.

How to Mitigate CVE-2026-43989

Immediate Actions Required

  • Upgrade JunoClaw to version 0.x.y-security-1 or later, as published in the GitHub Security Release.
  • Audit recent upload_wasm invocations for paths outside the intended module directory.
  • Rotate credentials, tokens, and keys accessible to the JunoClaw service account if exposure is suspected.

Patch Information

The fix is delivered in 0.x.y-security-1. The remediation commit is referenced in the GitHub Commit a7886cd and adds validation on the path argument and file contents handled by upload_wasm.

Workarounds

  • Disable or remove the upload_wasm MCP tool from agent tool registrations until the patch is applied.
  • Run the JunoClaw process under a dedicated unprivileged account with filesystem access restricted to the WebAssembly module directory.
  • Apply mandatory access controls or container filesystem mounts to prevent the service from reading sensitive paths.
  • Sanitize agent inputs and constrain tool arguments to a strict allowlist of paths within the module directory.
bash
# Configuration example: restrict the JunoClaw service to its module directory
sudo useradd --system --home /var/lib/junoclaw --shell /usr/sbin/nologin junoclaw
sudo chown -R junoclaw:junoclaw /var/lib/junoclaw/modules
sudo chmod 750 /var/lib/junoclaw/modules
# systemd hardening for the JunoClaw service unit
# ProtectSystem=strict
# ProtectHome=true
# ReadWritePaths=/var/lib/junoclaw/modules
# NoNewPrivileges=true

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechJunoclaw

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Commit Change

  • GitHub Security Release v0.x.y

  • GitHub Security Advisory GHSA-rw59-34hw-pmwp
  • Related CVEs
  • CVE-2026-43992: JunoClaw Information Disclosure Flaw

  • CVE-2026-43990: JunoClaw Plugin-Shell RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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