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

CVE-2025-27778: Applio Voice Conversion Tool RCE Vulnerability

CVE-2025-27778 is a remote code execution vulnerability in Applio voice conversion tool caused by unsafe deserialization in infer.py. This flaw allows attackers to execute arbitrary code. Learn about affected versions and fixes.

Published: March 24, 2026

CVE-2025-27778 Overview

CVE-2025-27778 is an insecure deserialization vulnerability affecting Applio, a popular open-source voice conversion tool. The vulnerability exists in infer.py and related components where unsafe torch.load() calls process untrusted model files without proper validation. This flaw allows attackers to craft malicious model files that execute arbitrary code when loaded by the application.

Critical Impact

Remote code execution through malicious model files, allowing complete system compromise when processing untrusted voice conversion models.

Affected Products

  • Applio versions 3.2.8-bugfix and prior
  • All Applio installations using vulnerable torch.load() calls without weights_only=True
  • Components affected: rvc/infer/infer.py, tabs/inference/inference.py, tabs/tts/tts.py

Discovery Timeline

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

Technical Details for CVE-2025-27778

Vulnerability Analysis

This vulnerability stems from CWE-502 (Deserialization of Untrusted Data), a critical class of security flaws that occurs when applications process serialized data without proper validation. In Python machine learning applications, torch.load() uses Python's pickle module by default, which can execute arbitrary code during deserialization. Applio's voice conversion functionality requires loading pre-trained model files, and without the weights_only=True parameter, these model files become potential vectors for arbitrary code execution.

The vulnerability impacts multiple components within the Applio codebase, including the core inference engine (infer.py), the inference tab interface (inference.py), and the text-to-speech module (tts.py). Each of these components processes model files that could potentially come from untrusted sources, particularly in scenarios where users download community-created voice models.

Root Cause

The root cause is the use of torch.load() without the weights_only=True security parameter. When weights_only is not set to True, PyTorch's load function will deserialize arbitrary Python objects embedded in the model file using pickle, which is inherently unsafe for untrusted data. This allows attackers to embed malicious pickle payloads within seemingly legitimate model files.

Attack Vector

An attacker can exploit this vulnerability by creating a malicious voice model file containing a crafted pickle payload. When a victim loads this model in Applio—either through the web interface, command line, or by placing it in the models directory—the malicious payload executes with the privileges of the user running Applio. Attack scenarios include:

  1. Distributing malicious voice models through community forums or model sharing platforms
  2. Compromising legitimate model repositories to inject malicious payloads
  3. Social engineering users to load attacker-controlled model files

The patched code adds the weights_only=True parameter to torch.load() calls:

python
# Vulnerable code pattern in tabs/inference/inference.py
def get_speakers_id(model):
    if model:
        try:
            model_data = torch.load(os.path.join(now_dir, model), map_location="cpu", weights_only=True)
            speakers_id = model_data.get("speakers_id")
            if speakers_id:
                return list(range(speakers_id))

Source: GitHub Commit

python
# Training module fix in rvc/train/train.py
def verify_checkpoint_shapes(checkpoint_path, model):
    checkpoint = torch.load(checkpoint_path, map_location="cpu", weights_only=True)
    checkpoint_state_dict = checkpoint["model"]
    try:
        if hasattr(model, "module"):

Source: GitHub Commit

Detection Methods for CVE-2025-27778

Indicators of Compromise

  • Unexpected child processes spawned by the Applio Python process
  • Network connections initiated from the Applio application to unknown external hosts
  • Unusual file system modifications in the Applio directory or system directories
  • Model files with abnormally large sizes or unexpected internal structures

Detection Strategies

  • Monitor for torch.load() calls in Python processes without weights_only=True parameter
  • Implement file integrity monitoring on model directories to detect unauthorized changes
  • Review application logs for errors during model loading that may indicate malicious payloads
  • Deploy endpoint detection to identify suspicious pickle deserialization patterns

Monitoring Recommendations

  • Enable verbose logging for all model loading operations in Applio
  • Configure alerts for any network activity originating from the Applio process
  • Monitor system calls from the Applio process for unexpected execution patterns
  • Audit model files before deployment using static analysis tools

How to Mitigate CVE-2025-27778

Immediate Actions Required

  • Update Applio to the latest version from the main branch containing the security fixes
  • Review all model files currently in use and verify their source integrity
  • Restrict model loading to trusted, verified sources only
  • Isolate Applio deployments in sandboxed environments where possible

Patch Information

The vulnerability has been addressed in commits to the Applio main branch. The fix adds weights_only=True to all torch.load() calls throughout the codebase. Users should pull the latest changes from the main branch as a numbered release with the fix was not available at the time of CVE publication.

Key commits addressing this vulnerability:

  • Commit 16019be - Initial torch.load security fixes
  • Commit eb21d9d - Additional torch.load fixes

For detailed technical information, see the GitHub Security Advisory.

Workarounds

  • Run Applio in a containerized environment with limited privileges and network access
  • Only load model files from verified, trusted sources with cryptographic signatures
  • Implement file hash verification before loading any model files
  • Use application sandboxing tools to restrict system access during model loading
bash
# Configuration example - Running Applio in a restricted Docker container
docker run --rm -it \
  --network none \
  --read-only \
  --tmpfs /tmp \
  --security-opt no-new-privileges \
  -v /path/to/verified/models:/models:ro \
  applio:latest

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 Probability3.35%

  • 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 PoC Infer.py

  • GitHub PoC Inference.py

  • GitHub PoC TTS.py
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Commit Update

  • 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