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-2025-27779

CVE-2025-27779: Applio Voice Conversion RCE Vulnerability

CVE-2025-27779 is a remote code execution vulnerability in Applio voice conversion tool caused by unsafe deserialization in model_blender.py. This article covers technical details, affected versions, impact, and mitigation steps.

Published: March 18, 2026

CVE-2025-27779 Overview

CVE-2025-27779 is an insecure deserialization vulnerability affecting Applio, a popular voice conversion tool. The vulnerability exists in the model_blender.py file at lines 20 and 21, where user-supplied input is passed to torch.load() without proper safety restrictions. This allows attackers to craft malicious model files that execute arbitrary code when loaded by the application.

The attack chain begins in voice_blender.py where user-supplied model paths (model_fusion_a and model_fusion_b) are passed to run_model_blender_script, which subsequently calls the model_blender function. This function loads the models using PyTorch's torch.load() without the weights_only=True parameter, making it vulnerable to Python pickle deserialization attacks.

Critical Impact

Remote code execution is possible through crafted malicious model files, allowing attackers to fully compromise systems running vulnerable versions of Applio.

Affected Products

  • Applio versions 3.2.8-bugfix and prior
  • All Applio installations using the vulnerable model_blender.py implementation
  • Systems loading untrusted model files through the voice blender functionality

Discovery Timeline

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

Technical Details for CVE-2025-27779

Vulnerability Analysis

This vulnerability falls under CWE-502 (Deserialization of Untrusted Data). The core issue stems from PyTorch's torch.load() function using Python's pickle module for deserialization by default. Pickle is inherently unsafe when processing untrusted data because it can execute arbitrary Python code during the deserialization process.

In Applio, the voice blender feature allows users to specify paths to model files for fusion operations. The application accepts these paths without validation and passes them directly to torch.load(). An attacker can exploit this by supplying a path to a malicious pickle-based model file that contains embedded Python code, which executes when the file is loaded.

The network-accessible nature of this vulnerability, combined with no authentication requirements and low attack complexity, makes it particularly dangerous for any Applio deployment that processes external model files.

Root Cause

The root cause is the use of torch.load() without the weights_only=True parameter. By default, PyTorch uses pickle to serialize and deserialize model objects, which includes not just the weights but potentially arbitrary Python objects. When weights_only=True is not specified, the function will deserialize any pickled object, including those containing malicious __reduce__ methods that execute arbitrary code upon unpickling.

The vulnerable code flow is:

  1. User supplies model paths via voice_blender.py (lines 39-56)
  2. Paths are passed to run_model_blender_script
  3. model_blender function calls torch.load() on lines 20-21 without safety restrictions
  4. Malicious pickle payload executes during deserialization

Attack Vector

An attacker can exploit this vulnerability by:

  1. Crafting a malicious PyTorch model file containing a pickled object with a custom __reduce__ method
  2. Providing the path to this malicious file through the voice blender interface
  3. When Applio attempts to load the model, the pickle deserialization triggers arbitrary code execution
  4. The attacker gains code execution with the privileges of the Applio process

The attack is network-accessible and requires no authentication, making it exploitable in any scenario where an attacker can control or influence the model file path provided to the voice blender functionality.

python
# Security patch in rvc/infer/infer.py - added weights_only=True for all torch.load calls
             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

python
# Security patch in rvc/lib/predictors/FCPE.py - added weights_only=True for all torch.load calls
         if device is None:
             device = "cuda" if torch.cuda.is_available() else "cpu"
         self.device = device
-        ckpt = torch.load(model_path, map_location=torch.device(self.device))
+        ckpt = torch.load(model_path, map_location=torch.device(self.device), weights_only=True)
         self.args = DotDict(ckpt["config"])
         self.dtype = dtype
         model = FCPE(

Source: GitHub Commit

Detection Methods for CVE-2025-27779

Indicators of Compromise

  • Unexpected process spawning from the Applio application process
  • Network connections initiated by Applio to unknown external hosts
  • Presence of suspicious or unrecognized model files in model directories
  • Unusual file system activity following model loading operations
  • Evidence of pickle-based payloads in model files (identifiable by pickle opcodes)

Detection Strategies

  • Monitor for calls to torch.load() without the weights_only=True parameter in application logs
  • Implement file integrity monitoring on model directories to detect unauthorized model file additions
  • Deploy behavioral analysis to detect anomalous code execution following model loading operations
  • Use static analysis tools to identify unsafe deserialization patterns in Python codebases
  • Monitor for suspicious subprocess creation originating from Python processes running Applio

Monitoring Recommendations

  • Enable comprehensive logging for all model loading operations in Applio
  • Implement network monitoring to detect unexpected outbound connections from the Applio server
  • Deploy endpoint detection and response (EDR) solutions to identify post-exploitation activity
  • Establish baseline behavior for the Applio process and alert on deviations
  • Monitor for privilege escalation attempts following Applio process compromise

How to Mitigate CVE-2025-27779

Immediate Actions Required

  • Update Applio to the latest version from the main branch which contains the security patch
  • Audit all model files currently in use and ensure they originate from trusted sources
  • Restrict network access to Applio instances to trusted users only
  • Implement input validation to only allow loading models from approved directories
  • Consider running Applio in a sandboxed environment to limit potential damage from exploitation

Patch Information

The Applio development team has released a security patch available on the main branch of the repository. The fix adds the weights_only=True parameter to all torch.load() calls throughout the codebase, including in model_blender.py, rvc/infer/infer.py, and rvc/lib/predictors/FCPE.py.

The patch commit can be found at: GitHub Commit 11d1395

For detailed information about this vulnerability and related issues, see the GitHub Security Advisory.

Workarounds

  • Manually apply the weights_only=True parameter to all torch.load() calls if immediate update is not possible
  • Only load model files from trusted, verified sources and avoid loading user-submitted models
  • Implement strict access controls to limit who can upload or specify model file paths
  • Run Applio in a containerized environment with restricted privileges and network access
  • Use application-level firewalls to restrict Applio's ability to make outbound connections
bash
# Configuration example
# If you cannot immediately update, manually patch torch.load calls:
# In model_blender.py, change:
# torch.load(model_path) 
# to:
# torch.load(model_path, weights_only=True)

# Alternatively, restrict model loading to verified paths only
# Example: Set environment variable for allowed model directory
export APPLIO_MODEL_DIR="/trusted/models/only"

# Run Applio with reduced privileges
sudo -u applio-service python app.py

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 PoC Repository

  • GitHub PoC Repository
  • Vendor Resources
  • GitHub Commit Record

  • 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