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-2024-12029

CVE-2024-12029: InvokeAI RCE Vulnerability

CVE-2024-12029 is a remote code execution vulnerability in InvokeAI versions 5.3.1 through 5.4.2. Attackers can execute malicious code via unsafe model file deserialization. This article covers technical details, impact, and mitigation.

Published: April 15, 2026

CVE-2024-12029 Overview

A remote code execution vulnerability exists in invoke-ai/invokeai versions 5.3.1 through 5.4.2 via the /api/v2/models/install API. The vulnerability arises from unsafe deserialization of model files using torch.load without proper validation. Attackers can exploit this by embedding malicious code in model files, which is executed upon loading. This issue is fixed in version 5.4.3.

Critical Impact

This insecure deserialization vulnerability allows remote attackers to achieve arbitrary code execution on systems running vulnerable InvokeAI versions by uploading maliciously crafted model files, potentially leading to complete system compromise.

Affected Products

  • InvokeAI versions 5.3.1 through 5.4.2
  • Systems using the /api/v2/models/install API endpoint
  • Environments loading untrusted PyTorch model files

Discovery Timeline

  • 2025-03-20 - CVE CVE-2024-12029 published to NVD
  • 2025-03-20 - Last updated in NVD database

Technical Details for CVE-2024-12029

Vulnerability Analysis

This vulnerability is classified as CWE-502 (Deserialization of Untrusted Data) and affects the model installation functionality in InvokeAI. The core issue stems from the application's use of PyTorch's torch.load() function to deserialize model files without implementing adequate security controls.

PyTorch's torch.load() function uses Python's pickle module under the hood for deserialization, which is inherently unsafe when processing untrusted data. When a model file is loaded via the /api/v2/models/install API endpoint, the application deserializes the content directly, allowing arbitrary Python objects to be instantiated and executed.

An attacker can craft a malicious model file containing serialized Python objects that execute arbitrary code when unpickled. Since this endpoint is exposed over the network and requires no authentication or user interaction to exploit, attackers can achieve remote code execution by simply sending a specially crafted model file to the vulnerable API.

Root Cause

The root cause of this vulnerability is the use of torch.load() for deserializing model files without implementing proper validation or sandboxing. PyTorch's documentation explicitly warns against loading models from untrusted sources because the underlying pickle serialization mechanism can execute arbitrary Python code during the deserialization process. The application failed to implement safeguards such as using weights_only=True parameter, validating file signatures, or restricting the types of objects that can be deserialized.

Attack Vector

The attack is network-based and exploits the /api/v2/models/install API endpoint. An attacker crafts a malicious model file by embedding a Python payload within a pickle-serialized object. When the target InvokeAI instance processes the model installation request and loads the malicious file using torch.load(), the embedded code executes with the privileges of the application process.

The attack flow involves:

  1. Creating a malicious pickle payload embedded within a model file structure
  2. Sending the crafted file to the vulnerable /api/v2/models/install endpoint
  3. The server deserializes the file using torch.load(), triggering code execution
  4. Attacker gains remote code execution on the target system

Technical details and the security fix can be found in the GitHub commit and the Huntr security bounty report.

Detection Methods for CVE-2024-12029

Indicators of Compromise

  • Unusual HTTP POST requests to /api/v2/models/install endpoint containing suspicious file uploads
  • Unexpected processes spawned by the InvokeAI application process
  • Model files with unusual pickle object structures or embedded executable payloads
  • Anomalous network connections originating from the InvokeAI server process

Detection Strategies

  • Monitor and log all requests to the /api/v2/models/install API endpoint for unusual patterns or sources
  • Implement file integrity monitoring on model directories to detect unauthorized modifications
  • Deploy network intrusion detection rules to identify pickle deserialization attack patterns
  • Use endpoint detection and response (EDR) solutions to monitor for suspicious child process creation from the InvokeAI application

Monitoring Recommendations

  • Enable comprehensive logging for all API endpoints, particularly model installation operations
  • Configure alerts for model file uploads from untrusted or external sources
  • Monitor system calls and process creation events associated with the InvokeAI service
  • Implement network segmentation to limit exposure of the model installation API

How to Mitigate CVE-2024-12029

Immediate Actions Required

  • Upgrade InvokeAI to version 5.4.3 or later immediately
  • If immediate upgrade is not possible, restrict network access to the /api/v2/models/install endpoint
  • Audit recently installed model files for potential malicious content
  • Review application logs for suspicious model installation activities

Patch Information

The vulnerability has been patched in InvokeAI version 5.4.3. The fix addresses the unsafe deserialization by implementing proper validation when loading model files. Organizations should upgrade to this version or later to remediate the vulnerability. The security patch is available in the GitHub commit 756008dc5899081c5aa51e5bd8f24c1b3975a59e.

Workarounds

  • Restrict access to the /api/v2/models/install endpoint using firewall rules or reverse proxy configurations
  • Only allow model installations from trusted internal sources and authenticated users
  • Implement network segmentation to isolate InvokeAI instances from untrusted networks
  • Consider disabling the model installation API entirely if not required for operations
bash
# Example: Restrict access to model install endpoint using nginx
location /api/v2/models/install {
    # Allow only from trusted internal network
    allow 10.0.0.0/8;
    allow 172.16.0.0/12;
    allow 192.168.0.0/16;
    deny all;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechInvokeai

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability44.16%

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

  • Huntr Security Bounty
  • Related CVEs
  • CVE-2024-11042: InvokeAI Path Traversal Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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