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

CVE-2025-25295: Label Studio Path Traversal Vulnerability

CVE-2025-25295 is a path traversal flaw in Label Studio SDK prior to 1.0.10 that enables unauthorized file access on the server filesystem. This article covers the technical details, affected versions, and mitigation steps.

Published: May 11, 2026

CVE-2025-25295 Overview

CVE-2025-25295 is a path traversal vulnerability in the Label Studio SDK affecting versions prior to 1.0.10. The flaw resides in the VOC, COCO, and YOLO export functions of the label-studio-sdk Python package. These functions invoke a download routine that fails to validate file paths when processing image references during task exports. Authenticated attackers can craft tasks containing traversal sequences in the image field to read arbitrary files from the server filesystem. Label Studio versions before 1.16.0 pin the vulnerable SDK as a dependency, and the issue was confirmed in Label Studio 1.13.2.dev0.

Critical Impact

Authenticated attackers can read arbitrary files from the host filesystem, exposing configuration files, credentials, and confidential project data.

Affected Products

  • label-studio-sdk Python package versions prior to 1.0.10
  • Label Studio versions prior to 1.16.0
  • Label Studio 1.13.2.dev0 (confirmed vulnerable build)

Discovery Timeline

  • 2025-02-14 - CVE-2025-25295 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-25295

Vulnerability Analysis

Label Studio is an open source data labeling tool widely used to prepare datasets for machine learning pipelines. The SDK exposes export utilities that convert annotation tasks into the VOC, COCO, and YOLO formats. During this conversion, the SDK resolves the image field of each task and calls an internal download helper to fetch the referenced file. The helper concatenates user-controlled path components without canonicalizing or constraining them to an allowed base directory.

This behavior maps to CWE-22 (Improper Limitation of a Pathname to a Restricted Directory). Because export operations execute server-side under the application's privileges, the file read bypasses Label Studio's project-level isolation. Attackers can retrieve sensitive artifacts such as /etc/passwd, environment files, database credentials, and TLS private keys reachable by the service account.

Root Cause

The download function in the SDK trusts the image attribute supplied by task creators. It does not normalize traversal sequences like ../ or enforce that the resolved path stays within an export workspace. As a result, any authenticated user who can create or modify tasks can influence which file the server reads when exports run.

Attack Vector

An attacker with authenticated access to a Label Studio instance creates a task that places a traversal payload in the image field, for example a string resolving to ../../../../etc/passwd. The attacker then triggers a VOC, COCO, or YOLO export against the project. The SDK resolves the image reference, reads the targeted file, and embeds its contents in the exported archive that the attacker downloads. No user interaction beyond standard project workflows is required, and the network attack surface allows remote exploitation.

No verified public proof-of-concept code is referenced in the advisory. Refer to the GitHub Security Advisory GHSA-rgv9-w7jp-m23g for technical details.

Detection Methods for CVE-2025-25295

Indicators of Compromise

  • Task records whose image field contains traversal sequences such as ../, ..\\, or absolute paths pointing outside the project media directory.
  • Unexpected export archives (VOC, COCO, YOLO) containing files unrelated to project media, including system or configuration files.
  • Application logs showing successful file reads from paths outside the configured Label Studio media root.

Detection Strategies

  • Audit the Label Studio database for tasks whose data.image values contain .. segments or absolute filesystem paths.
  • Review export job history for archives produced by non-administrative accounts shortly after task creation or edits.
  • Compare installed label-studio-sdk version against 1.0.10 and Label Studio version against 1.16.0 to identify exposed deployments.

Monitoring Recommendations

  • Alert on filesystem reads performed by the Label Studio service process targeting paths outside the application's media and project directories.
  • Capture HTTP access logs for /api/projects/*/export endpoints and correlate with task creation events from the same user.
  • Forward Label Studio application logs to a centralized analytics platform to enable retrospective hunting across export operations.

How to Mitigate CVE-2025-25295

Immediate Actions Required

  • Upgrade Label Studio to version 1.16.0 or later, which depends on the patched label-studio-sdk1.0.10.
  • Upgrade standalone deployments of the label-studio-sdk Python package to 1.0.10 or later.
  • Review existing tasks for malicious image field values and remove or sanitize them before running exports.
  • Rotate any credentials, API tokens, or keys that may have been accessible to the Label Studio service account.

Patch Information

The issue is fixed in label-studio-sdk1.0.10. The upstream fix is documented in the HumanSignal label-studio-sdk commit 4a9715c and tracked under GHSA-rgv9-w7jp-m23g. Label Studio users must upgrade the application to 1.16.0 or newer because earlier releases pin the vulnerable SDK as a dependency.

Workarounds

  • Restrict project membership so only trusted users can create or modify tasks until the patched version is deployed.
  • Run Label Studio under a dedicated low-privilege service account with filesystem access limited to the media and project directories.
  • Apply mandatory access controls such as AppArmor or SELinux profiles to confine the Label Studio process to its working directories.
  • Disable VOC, COCO, and YOLO export functionality for non-administrative roles until the upgrade is complete.
bash
# Configuration example
pip install --upgrade "label-studio>=1.16.0" "label-studio-sdk>=1.0.10"
pip show label-studio label-studio-sdk | grep -E "Name|Version"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechLabel Studio

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.13%

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

  • GitHub Security Advisory GHSA-rgv9-w7jp-m23g
  • Related CVEs
  • CVE-2026-22033: Label Studio XSS 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