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-2025-56815

CVE-2025-56815: Datart Path Traversal Vulnerability

CVE-2025-56815 is a path traversal vulnerability in Running-elephant Datart that allows attackers to upload files to arbitrary paths. This post covers technical details, affected versions, impact, and mitigation.

Published: April 14, 2026

CVE-2025-56815 Overview

CVE-2025-56815 is a Directory Traversal vulnerability affecting Datart version 1.0.0-rc.3, an open-source data visualization and analytics platform developed by Running-elephant. The vulnerability exists in the POST /viz/image interface where the server directly uses MultipartFile.transferTo() to save uploaded files to a path controllable by the user without proper validation of the file name. This allows attackers to write arbitrary files to locations outside the intended directory structure.

Critical Impact

Attackers can exploit this vulnerability to upload malicious files to arbitrary locations on the server, potentially leading to sensitive data exposure, configuration tampering, or establishing persistence mechanisms for further attacks.

Affected Products

  • Running-elephant Datart 1.0.0-rc.3
  • Datart visualization platform with exposed /viz/image endpoint

Discovery Timeline

  • 2025-09-24 - CVE-2025-56815 published to NVD
  • 2025-10-10 - Last updated in NVD database

Technical Details for CVE-2025-56815

Vulnerability Analysis

This Directory Traversal vulnerability stems from improper handling of file uploads in the Datart visualization platform. The vulnerable endpoint at /viz/image accepts multipart file uploads and processes them using the Spring Framework's MultipartFile.transferTo() method. The critical flaw lies in the application's failure to sanitize or validate the filename parameter before using it to construct the destination file path.

When a user submits a file upload request, the application constructs the save path by concatenating a base directory with the user-supplied filename. Without proper validation, an attacker can craft a malicious filename containing path traversal sequences (such as ../) to escape the intended upload directory and write files to arbitrary locations on the filesystem. This attack requires user interaction, as the request must be crafted and submitted, but requires no authentication to exploit.

Root Cause

The root cause of CVE-2025-56815 is the direct use of user-controlled input when determining the file save location. The MultipartFile.transferTo() method in Spring accepts a destination path and writes the file contents to that location. When the application fails to:

  1. Validate that the filename contains only permitted characters
  2. Remove or reject path traversal sequences (../, ..\\)
  3. Canonicalize the path and verify it remains within the allowed directory

An attacker can exploit this oversight to traverse the directory structure and write files to sensitive locations on the server.

Attack Vector

The attack is executed over the network by sending a crafted HTTP POST request to the /viz/image endpoint. The attacker manipulates the filename field in the multipart form data to include directory traversal sequences. For example, a filename like ../../../etc/cron.d/malicious could potentially write a file to the system's cron directory on a Linux server.

The exploitation mechanism involves crafting a multipart/form-data request where the filename parameter contains path traversal sequences combined with a target path. When the server processes this request, it attempts to save the uploaded file to the attacker-controlled location. The impact includes potential file overwrites, configuration manipulation, and in some scenarios, remote code execution if the attacker can write to locations where executable content is processed.

For detailed technical information and proof-of-concept details, refer to the CVE-2025-56815 GitHub repository.

Detection Methods for CVE-2025-56815

Indicators of Compromise

  • HTTP POST requests to /viz/image endpoint containing path traversal sequences (../, ..%2f, ..\\) in filename parameters
  • Unexpected files appearing outside the designated upload directories on Datart servers
  • Web server logs showing encoded traversal attempts such as %2e%2e%2f or %2e%2e/
  • Modified configuration files or new files in system directories that correlate with upload activity

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in file upload requests
  • Monitor HTTP request logs for /viz/image endpoints with suspicious filename parameters containing .. sequences
  • Deploy file integrity monitoring (FIM) on critical system directories to detect unauthorized file creation or modification
  • Analyze multipart form data in web traffic for encoded path traversal attempts

Monitoring Recommendations

  • Enable detailed logging for the Datart application, particularly for file upload operations
  • Configure SIEM rules to alert on path traversal patterns in HTTP request parameters
  • Implement anomaly detection for file system write operations outside expected application directories
  • Regularly audit the Datart server filesystem for unexpected files in sensitive locations

How to Mitigate CVE-2025-56815

Immediate Actions Required

  • Restrict network access to the /viz/image endpoint using firewall rules or reverse proxy configurations
  • Implement input validation at the web server or WAF level to reject filenames containing path traversal sequences
  • Review and remove any unauthorized files that may have been written to the server filesystem
  • Consider temporarily disabling the image upload functionality until a patch is applied

Patch Information

At the time of writing, users should monitor the Datart GitHub repository for security updates and newer releases that address this vulnerability. Organizations running Datart 1.0.0-rc.3 should upgrade to a patched version as soon as one becomes available from Running-elephant.

Workarounds

  • Deploy a reverse proxy or WAF rule to sanitize filenames and reject requests containing path traversal patterns
  • Implement application-level input validation to normalize filenames and strip directory components before file operations
  • Run the Datart application with minimal filesystem permissions to limit the impact of directory traversal attacks
  • Isolate the Datart server in a network segment with restricted access to sensitive systems
bash
# Example nginx configuration to block path traversal attempts
location /viz/image {
    # Block requests with path traversal sequences
    if ($request_uri ~* "\.\.") {
        return 403;
    }
    
    # Additional security headers
    add_header X-Content-Type-Options nosniff;
    
    proxy_pass http://datart_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/TechRunning Elephant Datart

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.16%

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

  • GitHub CVE-2025-56815
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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