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

CVE-2025-27787: Applio Voice Conversion Tool DoS Vulnerability

CVE-2025-27787 is a denial of service vulnerability in Applio voice conversion tool that allows attackers to kill critical processes through malicious config.json files. This article covers technical details, affected versions, and mitigation.

Published: April 22, 2026

CVE-2025-27787 Overview

CVE-2025-27787 is a path traversal and denial of service vulnerability in Applio, an open-source voice conversion tool. The vulnerability exists in the restart.py module where the model_name parameter from train.py is used to construct a file path without proper sanitization. An attacker can exploit this flaw to read arbitrary config.json files via path traversal and subsequently kill arbitrary processes on the system, leading to denial of service.

Critical Impact

Remote attackers can cause denial of service by killing arbitrary processes on the server, including the Applio application itself and other critical system processes, through a combination of arbitrary file write and path traversal attacks.

Affected Products

  • Applio versions 3.2.8-bugfix and prior
  • Applio voice conversion tool (all versions prior to patch)
  • Systems running Applio with network-accessible endpoints

Discovery Timeline

  • 2025-03-19 - CVE-2025-27787 published to NVD
  • 2025-08-01 - Last updated in NVD database

Technical Details for CVE-2025-27787

Vulnerability Analysis

This vulnerability combines two dangerous attack patterns: path traversal (CWE-22) and arbitrary process termination. The model_name parameter in train.py accepts user input and passes it to the stop_train function in restart.py. This function constructs a path to a config.json file using the unsanitized input, reads the process_pids array from that JSON file, and then terminates all processes with those IDs.

The attack chain requires exploiting an arbitrary file write vulnerability first to plant a malicious config.json file containing target process IDs. Once the file is in place, an attacker triggers the vulnerable endpoint with a crafted model_name to read the malicious configuration and kill the specified processes. Since process IDs are typically unpredictable, an attacker can include hundreds of process IDs in their payload to maximize disruption, potentially killing the Applio server process itself along with other critical system services.

Root Cause

The root cause is improper input validation in the path construction logic within restart.py. User-supplied input (model_name) is directly concatenated into a file path without sanitization, enabling directory traversal sequences like ../../ to escape the intended directory structure. Additionally, the application blindly trusts the contents of config.json files and executes process kill operations based on the process_pids values without any validation or authorization checks.

Attack Vector

The vulnerability is exploitable over the network without authentication. An attacker first leverages an arbitrary file write primitive to place a malicious config.json file in a predictable location such as logs/foobar. This file contains a JSON array of process IDs under the process_pids key. The attacker then sends a request to the training endpoint with a crafted model_name value that traverses to the planted file. When processed, the application reads the malicious configuration and terminates all listed processes.

The path traversal component allows attackers to supply values like ../../ in the model_name parameter to access config.json files from directories outside the intended scope, potentially two or more levels up the directory hierarchy from the application root.

Detection Methods for CVE-2025-27787

Indicators of Compromise

  • Unexpected config.json files appearing in the logs/ directory or other writable locations
  • HTTP requests containing path traversal sequences (../, ..%2f) in the model_name parameter
  • Unusual process termination events or sudden service outages
  • Log entries showing access to training endpoints with suspicious model name values

Detection Strategies

  • Monitor web application logs for requests containing directory traversal patterns in input parameters
  • Implement file integrity monitoring on the Applio installation directory to detect unauthorized file creation
  • Set up process monitoring alerts for unexpected termination of the Applio service and related processes
  • Deploy web application firewall rules to block requests containing path traversal sequences

Monitoring Recommendations

  • Enable verbose logging for all training-related endpoints in Applio
  • Configure system auditing to track file creation events in the application directory
  • Monitor for abnormal patterns in process termination system calls
  • Implement anomaly detection for unusual file access patterns in the logs directory

How to Mitigate CVE-2025-27787

Immediate Actions Required

  • Restrict network access to Applio instances to trusted users and networks only
  • Implement input validation to reject model_name values containing path traversal sequences
  • Consider running Applio in a containerized environment to limit process termination impact
  • Review and restrict file system permissions for the Applio user account

Patch Information

As of the publication date, no official patch is available from the vendor. Users should monitor the GitHub Security Advisory for updates on remediation. The vulnerability was identified in the following code locations:

  • restart.py line 9
  • train.py line 306

Workarounds

  • Deploy Applio behind a reverse proxy with strict input validation rules that reject path traversal attempts
  • Run Applio with minimal privileges and in an isolated environment (container, VM, or sandbox)
  • Implement network segmentation to limit access to the Applio service to authorized users only
  • Remove or restrict write permissions to directories where malicious config.json files could be planted
bash
# Example: Restrict Applio network access using iptables
# Allow only specific trusted IPs to access Applio
iptables -A INPUT -p tcp --dport 7865 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 7865 -j DROP

# Example: Run Applio with restricted permissions
# Create dedicated user with minimal privileges
useradd -r -s /bin/false applio_user
chown -R applio_user:applio_user /opt/applio
chmod -R 750 /opt/applio

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechApplio

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.34%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:H/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub PoC Repository

  • GitHub PoC Repository
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-27780: Applio Voice Conversion Tool RCE Flaw

  • CVE-2025-27781: Applio Voice Conversion Tool RCE Flaw

  • CVE-2025-27782: Applio RCE Vulnerability

  • CVE-2025-27783: Applio Voice Conversion RCE 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