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

CVE-2025-27780: Applio Voice Conversion Tool RCE Flaw

CVE-2025-27780 is a remote code execution vulnerability in Applio voice conversion tool caused by unsafe deserialization. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: March 18, 2026

CVE-2025-27780 Overview

CVE-2025-27780 is an insecure deserialization vulnerability in Applio, an open-source voice conversion tool. The vulnerability exists in model_information.py where user-supplied input is passed to torch.load() without proper validation, enabling remote code execution through maliciously crafted model files.

Critical Impact

Remote attackers can achieve arbitrary code execution by supplying a malicious model file that exploits the unsafe deserialization behavior of PyTorch's torch.load() function.

Affected Products

  • Applio versions 3.2.8-bugfix and prior
  • Applio installations using the vulnerable model_information.py module
  • Systems processing untrusted model files through the Applio voice conversion pipeline

Discovery Timeline

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

Technical Details for CVE-2025-27780

Vulnerability Analysis

The vulnerability stems from unsafe usage of PyTorch's torch.load() function in Applio's model information processing workflow. When a user provides a path to a model file through the model_name parameter, this value flows through run_model_information_script and ultimately reaches the model_information function in rvc/train/process/model_information.py. At line 16, the model is loaded using torch.load() without the weights_only=True parameter, allowing arbitrary Python objects to be deserialized.

PyTorch's pickle-based serialization format can embed arbitrary Python code that executes during deserialization. An attacker can craft a malicious .pth or .pt model file containing embedded code that executes when the model is loaded, achieving remote code execution with the privileges of the Applio process.

Root Cause

The root cause is CWE-502 (Deserialization of Untrusted Data). The torch.load() function uses Python's pickle module internally, which can deserialize arbitrary Python objects including those that execute code upon instantiation. Without the weights_only=True parameter, PyTorch loads all pickled objects in the model file, including potentially malicious payloads embedded by an attacker.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Crafting a malicious model file containing a pickle payload that executes arbitrary code
  2. Convincing a victim to load the malicious model through Applio's model information feature
  3. The malicious code executes when torch.load() deserializes the model file
python
# Vulnerable code pattern (before patch)
             weight_root (str): Path to the model weights.
         """
         self.cpt = (
-            torch.load(weight_root, map_location="cpu")
+            torch.load(weight_root, map_location="cpu", weights_only=True)
             if os.path.isfile(weight_root)
             else None
         )

Source: GitHub Commit 11d1395

Detection Methods for CVE-2025-27780

Indicators of Compromise

  • Unexpected process spawning from Applio or Python interpreter processes
  • Suspicious network connections originating from the Applio application
  • Model files from untrusted sources being loaded through the application
  • Unusual file system activity following model loading operations
  • Process execution chains involving torch.load() calls with unexpected child processes

Detection Strategies

  • Monitor for torch.load() calls without the weights_only=True parameter in Python processes
  • Implement file integrity monitoring on model directories to detect unauthorized model file additions
  • Use application-level logging to track model file loading operations and their sources
  • Deploy endpoint detection and response (EDR) solutions to identify post-exploitation behaviors

Monitoring Recommendations

  • Enable verbose logging for the Applio application to track all model loading operations
  • Implement network monitoring to detect data exfiltration or reverse shell connections
  • Configure alerts for unexpected subprocess creation from Python/Applio processes
  • Audit model file sources and implement allowlisting for trusted model repositories

How to Mitigate CVE-2025-27780

Immediate Actions Required

  • Update Applio to the latest version from the main branch containing the security patch
  • Review and remove any untrusted model files from the system
  • Audit systems for signs of compromise if untrusted models were previously loaded
  • Restrict model file uploads and loading to authenticated, trusted sources only

Patch Information

A patch is available in the main branch of the Applio repository. The fix adds the weights_only=True parameter to all torch.load() calls throughout the codebase, preventing arbitrary code execution through deserialization. The patch can be reviewed at GitHub Commit 11d1395. For detailed security advisory information, see the GitHub Security Lab Advisory.

Workarounds

  • Only load model files from trusted, verified sources
  • Implement input validation on model file paths to restrict loading to known-safe directories
  • Run Applio in a sandboxed environment with restricted system access
  • Apply network segmentation to limit potential lateral movement if exploitation occurs
python
# Secure configuration - ensure all torch.load calls include weights_only=True
ckpt = torch.load(model_path, map_location=torch.device(self.device), weights_only=True)

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechApplio

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability4.60%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/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-502
  • Technical References
  • GitHub Model Information Script

  • GitHub Extra Model Information Script
  • Vendor Resources
  • GitHub Commit 11d1395

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-27781: Applio Voice Conversion Tool RCE Flaw

  • CVE-2025-27782: Applio RCE Vulnerability

  • CVE-2025-27783: Applio Voice Conversion RCE Vulnerability

  • CVE-2025-27778: Applio Voice Conversion Tool 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