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
    • 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-24741

CVE-2026-24741: ConvertX Path Traversal Vulnerability

CVE-2026-24741 is a path traversal flaw in ConvertX allowing attackers to delete arbitrary files via the POST /delete endpoint. This article covers the technical details, affected versions, and mitigation strategies.

Published: January 30, 2026

CVE-2026-24741 Overview

CVE-2026-24741 is a Path Traversal vulnerability affecting ConvertX, a self-hosted online file converter application. In versions prior to 0.17.0, the POST /delete endpoint uses a user-controlled filename value to construct a filesystem path and deletes it via unlink without sufficient validation. By supplying path traversal sequences (e.g., ../), an attacker can delete arbitrary files outside the intended uploads directory, limited only by the permissions of the server process.

Critical Impact

Authenticated attackers can delete arbitrary files on the server by exploiting insufficient path validation in the file deletion endpoint, potentially causing denial of service or compromising system integrity.

Affected Products

  • ConvertX versions prior to 0.17.0

Discovery Timeline

  • 2026-01-27 - CVE-2026-24741 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2026-24741

Vulnerability Analysis

This vulnerability falls under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal or Directory Traversal. The flaw exists in the /delete endpoint of ConvertX where user-supplied filename parameters are used directly in file system operations without proper sanitization.

When a user submits a delete request, the application constructs a file path using the provided filename parameter. The lack of validation allows attackers to inject path traversal sequences like ../ to escape the intended uploads directory and target files elsewhere on the system. The unlink function then removes whatever file the attacker specified, constrained only by the permissions of the web server process.

This type of vulnerability can lead to severe consequences including deletion of critical configuration files, application binaries, or system files, resulting in denial of service or potentially enabling further attacks by removing security controls.

Root Cause

The root cause is the absence of input sanitization on the filename parameter before it is used to construct a filesystem path for deletion. The application trusted user input without validating that the resulting path remained within the intended uploads directory boundary.

Attack Vector

The attack is network-accessible and requires low privileges (authenticated access). An attacker sends a crafted POST request to the /delete endpoint with a malicious filename parameter containing path traversal sequences. For example, a filename value of ../../../../etc/important-config would traverse up the directory tree and target files outside the uploads folder. The server then executes the unlink operation on the traversed path, deleting the targeted file.

text
// Security patch in src/pages/deleteFile.tsx - Merge commit from fork
 import db from "../db/db";
 import { WEBROOT } from "../helpers/env";
 import { userService } from "./user";
+import sanitize from "sanitize-filename";
+import path from "node:path";
 
 export const deleteFile = new Elysia().use(userService).post(
   "/delete",

Source: GitHub Commit

The patch introduces the sanitize-filename library and path module from Node.js to properly validate and sanitize the filename input before constructing the filesystem path.

Detection Methods for CVE-2026-24741

Indicators of Compromise

  • Unusual POST requests to the /delete endpoint containing path traversal sequences (../, ..%2f, ..%5c)
  • Unexpected file deletions or missing files in system directories
  • Web server error logs showing failed attempts to delete files outside the uploads directory
  • Audit logs indicating file deletion operations on sensitive system paths

Detection Strategies

  • Monitor HTTP request logs for path traversal patterns in the filename parameter of /delete requests
  • Implement Web Application Firewall (WAF) rules to detect and block path traversal sequences
  • Enable file integrity monitoring (FIM) on critical system files and directories
  • Review application logs for unusual deletion patterns or access denied errors

Monitoring Recommendations

  • Configure alerting for any POST /delete requests containing ../ or URL-encoded variants
  • Monitor server process file access patterns for deletions outside expected directories
  • Implement real-time log analysis to detect path traversal attack attempts
  • Set up baseline monitoring for file system changes on the ConvertX server

How to Mitigate CVE-2026-24741

Immediate Actions Required

  • Upgrade ConvertX to version 0.17.0 or later immediately
  • If upgrade is not immediately possible, restrict access to the /delete endpoint at the network level
  • Review file system permissions to minimize the impact of potential exploitation
  • Audit recent access logs for evidence of exploitation attempts

Patch Information

The vulnerability is fixed in ConvertX version 0.17.0. The patch introduces proper filename sanitization using the sanitize-filename library and Node.js path module to ensure user-supplied filenames cannot traverse outside the intended uploads directory. Review the GitHub Security Advisory and patch commit for complete technical details.

Workarounds

  • Implement a reverse proxy or WAF rule to filter requests containing path traversal sequences to the /delete endpoint
  • Temporarily disable the file deletion functionality if not critical to operations
  • Run the ConvertX service under a restricted user account with minimal filesystem permissions
  • Use containerization (e.g., Docker) to isolate the application and limit the scope of potential file deletions
bash
# Example WAF rule to block path traversal in delete requests
# For nginx with ModSecurity
SecRule REQUEST_URI "@contains /delete" "chain,id:1001,deny,status:403"
SecRule ARGS:filename "@rx \.\.[\\/]" "t:urlDecode"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechConvertx

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.07%

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

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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