Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-14021

CVE-2024-14021: LlamaIndex Unsafe Deserialization Vulnerability

CVE-2024-14021 is an unsafe deserialization flaw in LlamaIndex that allows attackers to execute arbitrary code via malicious pickle files. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2024-14021 Overview

CVE-2024-14021 is an unsafe deserialization vulnerability affecting LlamaIndex (run-llama/llama_index) versions up to and including 0.11.6. The vulnerability exists in the BGEM3Index.load_from_disk() function located in llama_index/indices/managed/bge_m3/base.py. The function uses Python's pickle.load() to deserialize multi_embed_store.pkl from a user-supplied persist_dir without proper validation. An attacker who can provide a crafted persist directory containing a malicious pickle file can trigger arbitrary code execution when a victim loads the index from disk.

Critical Impact

This insecure deserialization vulnerability (CWE-502) allows attackers to achieve arbitrary code execution by crafting malicious pickle files that are loaded without validation, potentially compromising systems that use LlamaIndex for AI/ML applications.

Affected Products

  • LlamaIndex (run-llama/llama_index) versions up to and including 0.11.6

Discovery Timeline

  • 2026-01-12 - CVE CVE-2024-14021 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2024-14021

Vulnerability Analysis

This vulnerability is classified as Insecure Deserialization (CWE-502), a dangerous class of vulnerabilities that occurs when untrusted data is deserialized without proper validation. In this case, the BGEM3Index.load_from_disk() function directly deserializes pickle files from user-controlled directories without verifying their integrity or origin.

Python's pickle module is inherently unsafe for deserializing untrusted data because it can execute arbitrary code during the deserialization process. When a maliciously crafted pickle file is loaded, it can instantiate arbitrary Python objects and execute code through the __reduce__ method or similar mechanisms. This makes pickle-based deserialization particularly dangerous when the source of the serialized data is not fully trusted.

The attack requires local access and user interaction—specifically, a victim must be convinced to load an index from a directory controlled by the attacker. This could occur in scenarios where users download shared model indices, use indices from untrusted sources, or in supply chain attack scenarios.

Root Cause

The root cause is the use of Python's native pickle.load() function to deserialize the multi_embed_store.pkl file without any validation or safety measures. The pickle module documentation explicitly warns that it is not secure against erroneous or maliciously constructed data and should never be used to deserialize data from untrusted sources.

The vulnerable code path in llama_index/indices/managed/bge_m3/base.py accepts a persist_dir parameter from the user and loads pickle files from that directory, trusting the serialized data implicitly. Safe alternatives such as JSON serialization, cryptographic signature verification, or allowlist-based deserialization were not implemented.

Attack Vector

The attack vector requires local access where an attacker must place a malicious pickle file in a directory that the victim will subsequently load using BGEM3Index.load_from_disk(). Attack scenarios include:

Distribution of malicious model indices through file sharing platforms, compromised repositories, or as part of social engineering campaigns where users are convinced to download and load pre-built indices. Supply chain attacks where legitimate index repositories are compromised to include malicious pickle files. Internal attacks within organizations where shared storage locations contain indices that multiple users may load.

When the victim calls BGEM3Index.load_from_disk() pointing to the attacker-controlled directory, the malicious multi_embed_store.pkl file is deserialized, executing the attacker's payload with the privileges of the user running the Python process.

Detection Methods for CVE-2024-14021

Indicators of Compromise

  • Unexpected multi_embed_store.pkl files in LlamaIndex persist directories with unusual file sizes or modification times
  • Process execution anomalies following calls to BGEM3Index.load_from_disk() including unexpected child processes or network connections
  • File system access patterns indicating deserialization of pickle files from untrusted or newly created directories
  • Python process executing system commands or accessing sensitive resources after loading index data

Detection Strategies

  • Monitor for calls to pickle.load() in LlamaIndex-related code paths, particularly when loading data from user-specified directories
  • Implement file integrity monitoring on directories used for LlamaIndex index persistence
  • Use application-level logging to track BGEM3Index.load_from_disk() calls and their source directories
  • Deploy endpoint detection and response (EDR) solutions to identify suspicious post-exploitation behavior following Python process activity

Monitoring Recommendations

  • Enable verbose logging for LlamaIndex operations to track index loading activities
  • Monitor for unusual Python process behavior including unexpected subprocess spawning or network connections
  • Implement alerts for file creation or modification in LlamaIndex persist directories from untrusted sources
  • Review access logs for any indices loaded from external or shared storage locations

How to Mitigate CVE-2024-14021

Immediate Actions Required

  • Upgrade LlamaIndex to a version newer than 0.11.6 that addresses the unsafe deserialization vulnerability
  • Audit all existing LlamaIndex persist directories for potentially malicious pickle files
  • Restrict loading of indices to trusted, verified sources only
  • Implement file integrity verification for any shared or downloaded index files before loading

Patch Information

Users should upgrade to a patched version of LlamaIndex that addresses this vulnerability. Check the LlamaIndex GitHub Repository for the latest secure release. Additional details about this vulnerability can be found in the Huntr Bounty Listing and the VulnCheck Advisory.

Workarounds

  • Avoid using BGEM3Index.load_from_disk() with directories from untrusted sources until the vulnerability is patched
  • Implement directory allowlisting to restrict index loading to specific pre-approved paths only
  • Manually validate the contents of persist directories before loading, checking for unexpected or modified pickle files
  • Consider running LlamaIndex operations in sandboxed environments with restricted system access to limit the impact of potential exploitation
bash
# Configuration example - Validate persist directory before loading
# Check file integrity of index files before loading
sha256sum /path/to/trusted/persist_dir/multi_embed_store.pkl
# Compare against known-good hash before using BGEM3Index.load_from_disk()

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechLlama Index

  • SeverityHIGH

  • CVSS Score8.4

  • EPSS Probability0.06%

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

  • Huntr Bounty Listing

  • LlamaIndex Official Site

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2024-3098: llama_index safe_eval RCE Vulnerability

  • CVE-2025-6208: llama_index.core DoS Vulnerability

  • CVE-2024-58339: LlamaIndex VannaPack DoS 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