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

CVE-2026-38360: Dash-Uploader Path Traversal Vulnerability

CVE-2026-38360 is a directory traversal flaw in fohrloop dash-uploader versions 0.1.0 through 0.7.0a2 that enables remote code execution. This article covers technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-38360 Overview

CVE-2026-38360 is a directory traversal vulnerability [CWE-22] in the fohrloop dash-uploader Python package, affecting versions 0.1.0 through 0.7.0a2. The flaw resides in the dash_uploader/httprequesthandler.py module, specifically within the BaseHttpRequestHandler.get_temp_root() and BaseHttpRequestHandler._post() components. A remote, unauthenticated attacker can manipulate file path parameters during upload requests to write files outside the intended directory. Successful exploitation enables arbitrary code execution on the server hosting the Dash application. The dash-uploader package is distributed via PyPI and is commonly used to add large-file upload functionality to Plotly Dash web applications.

Critical Impact

Remote attackers can write arbitrary files outside the upload directory and achieve code execution without authentication or user interaction.

Affected Products

  • fohrloop/dash-uploader versions 0.1.0 through 0.7.0a2
  • Plotly Dash applications integrating the vulnerable dash-uploader package via PyPI
  • Python web services exposing the BaseHttpRequestHandler upload endpoint

Discovery Timeline

  • 2026-05-08 - CVE-2026-38360 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-38360

Vulnerability Analysis

The vulnerability stems from improper validation of user-supplied filename and path values processed by the upload handler. The dash-uploader package implements chunked file uploads through a custom HTTP request handler, where the destination path is constructed by concatenating an attacker-influenced filename with a server-side temporary root directory. Because the input is not normalized or constrained to the upload root, attackers can embed directory traversal sequences such as ../ to escape the intended directory.

When the handler writes uploaded content using the attacker-controlled path, it can overwrite arbitrary files on the host. Targets include Python source files imported by the running Dash application, configuration files, scheduled task definitions, or web server-served assets. Overwriting an imported .py file allows the attacker to stage code that the application loads on next import or restart, yielding remote code execution. The EPSS score of 17.5% (95th percentile) reflects elevated likelihood of exploitation activity.

Root Cause

The root cause is missing path canonicalization and traversal sequence filtering inside BaseHttpRequestHandler.get_temp_root() and BaseHttpRequestHandler._post(). The handler trusts the client-supplied filename and joins it directly with the upload root without verifying that the resolved absolute path remains within the permitted upload directory.

Attack Vector

The attack is reachable over the network with low complexity and no authentication required. An attacker sends a crafted multipart POST request to the Dash upload endpoint with a filename containing relative path segments such as ..\..\..\app.py. The handler resolves the path outside the upload root and writes attacker-controlled bytes to the target file. The vulnerability mechanism is documented in the GitHub Issue Tracker and demonstrated in the GitHub PoC Repository. No verified exploit code is reproduced here.

Detection Methods for CVE-2026-38360

Indicators of Compromise

  • HTTP POST requests to dash-uploader endpoints containing ..\ or ../ sequences in the filename or flowFilename parameter.
  • Unexpected file writes to Python source directories, web roots, or system configuration paths originating from the Dash application process.
  • New or modified .py files in the application directory timestamped during upload activity.
  • Outbound network connections from the Python web service process immediately following an upload event.

Detection Strategies

  • Inspect web server and reverse proxy logs for upload requests where filename fields contain encoded or raw traversal sequences (%2e%2e%2f, ..%2f, ../).
  • Apply file integrity monitoring on directories containing the Dash application source and its Python dependencies.
  • Correlate process telemetry showing the Python interpreter spawning unexpected shells, cmd.exe, or /bin/sh child processes after upload traffic.

Monitoring Recommendations

  • Alert on writes by the Dash application process to paths outside its designated upload directory.
  • Monitor PyPI dependency manifests (requirements.txt, pyproject.toml) for pinned versions of dash-uploader in the vulnerable range.
  • Capture full HTTP request bodies for upload endpoints to enable retrospective hunting for traversal payloads.

How to Mitigate CVE-2026-38360

Immediate Actions Required

  • Inventory all internal and customer-facing Dash applications and identify any using dash-uploader versions 0.1.0 through 0.7.0a2.
  • Restrict network exposure of affected Dash applications by placing them behind authenticated reverse proxies or VPN access until remediated.
  • Deploy a Web Application Firewall (WAF) rule that blocks upload requests containing ../, ..\, or URL-encoded traversal sequences in filename parameters.
  • Review filesystem and application logs for prior exploitation attempts using the indicators listed above.

Patch Information

At the time of NVD publication on 2026-05-08, no fixed release is referenced in the CVE record. Track the GitHub Project Repository and the PyPI Package Repository for a patched release beyond 0.7.0a2. Review the upstream discussion in the GitHub Issue Tracker for remediation status.

Workarounds

  • Replace dash-uploader with an alternative upload component that enforces path canonicalization, or fork the project and add server-side validation that rejects filenames containing path separators.
  • Run the Dash application as a low-privilege user inside a container with a read-only filesystem, exposing only the upload directory as writable.
  • Enforce filename sanitization at a reverse proxy layer using werkzeug.utils.secure_filename semantics or equivalent allow-list validation before requests reach the handler.
bash
# Configuration example: WAF/nginx rule to block traversal in upload filenames
location /upload {
    if ($request_body ~* "(\.\./|\.\.\\|%2e%2e%2f|%2e%2e/)") {
        return 403;
    }
    proxy_pass http://dash_backend;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechFohrloop

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability17.55%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub PoC Repository

  • GitHub Project Repository

  • GitHub Source Code File

  • GitHub Stable Source File

  • GitHub Issue Tracker

  • PyPI Package Repository
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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