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

CVE-2024-3098: llama_index safe_eval RCE Vulnerability

CVE-2024-3098 is a remote code execution flaw in the llama_index package's safe_eval function that allows prompt injection attacks to execute arbitrary code. This article covers the technical details, impact, and mitigation.

Published: April 15, 2026

CVE-2024-3098 Overview

A critical vulnerability was identified in the exec_utils class of the llama_index package, specifically within the safe_eval function. This flaw allows for prompt injection attacks that can lead to arbitrary code execution on affected systems. The vulnerability arises due to insufficient validation of input, which can be exploited to bypass method restrictions and execute unauthorized code.

This security issue represents a bypass of the previously addressed CVE-2023-39662, indicating that the original fix was incomplete. Security researchers have demonstrated exploitation through a proof of concept that successfully creates files on the target system by leveraging this flaw.

Critical Impact

Attackers can achieve arbitrary code execution through prompt injection by bypassing the safe_eval function's method restrictions, potentially leading to complete system compromise.

Affected Products

  • LlamaIndex (llama_index Python package) - versions prior to the security fix
  • Applications utilizing the exec_utils.safe_eval function
  • AI/LLM applications built on vulnerable LlamaIndex versions

Discovery Timeline

  • 2024-04-10 - CVE-2024-3098 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-3098

Vulnerability Analysis

This vulnerability falls under CWE-94 (Improper Control of Generation of Code), commonly known as Code Injection. The safe_eval function in LlamaIndex's exec_utils class was designed to provide a secure evaluation mechanism for user-supplied input. However, the implementation contains insufficient input validation that allows attackers to craft malicious prompts that bypass the intended method restrictions.

The flaw is particularly concerning as it represents a bypass of CVE-2023-39662, indicating that attackers found novel techniques to circumvent the previous security controls. This demonstrates the inherent difficulty in implementing truly safe evaluation functions for dynamic input, especially in the context of LLM applications where prompt injection is an emerging threat vector.

The network-accessible nature of this vulnerability, combined with no authentication requirements, makes it particularly dangerous in production AI/LLM deployments where user input flows through the vulnerable code path.

Root Cause

The root cause lies in the inadequate input validation within the safe_eval function. The function fails to properly sanitize or restrict certain input patterns, allowing carefully crafted prompts to escape the evaluation sandbox. This insufficient validation enables attackers to inject code that bypasses the method restrictions that were intended to prevent arbitrary code execution.

The original fix for CVE-2023-39662 addressed some attack vectors but did not account for all possible bypass techniques, leaving the code vulnerable to alternative exploitation methods.

Attack Vector

The attack vector is network-based, requiring no privileges or user interaction to exploit. An attacker can craft a malicious prompt that, when processed by the safe_eval function, executes arbitrary code on the target system. The exploitation technique involves:

  1. Constructing a specially crafted input string designed to bypass method restrictions
  2. Injecting this payload through any interface that processes user input via safe_eval
  3. Achieving code execution when the vulnerable function evaluates the malicious input

The proof of concept demonstrates file creation capabilities, but the arbitrary code execution nature of this vulnerability means attackers could potentially achieve full system compromise, data exfiltration, or lateral movement within a network.

Detection Methods for CVE-2024-3098

Indicators of Compromise

  • Unexpected file creation or modification in application directories
  • Anomalous process spawning from Python/LlamaIndex processes
  • Unusual network connections originating from AI/LLM application servers
  • Error logs indicating evaluation failures or sandbox escapes in exec_utils

Detection Strategies

  • Monitor application logs for suspicious input patterns targeting the safe_eval function
  • Implement runtime application self-protection (RASP) to detect code injection attempts
  • Deploy behavioral analysis to identify anomalous code execution patterns
  • Review audit logs for unexpected system calls from LlamaIndex processes

Monitoring Recommendations

  • Enable verbose logging for the exec_utils module to capture evaluation attempts
  • Set up alerts for file system modifications in restricted directories
  • Monitor process trees for unexpected child processes spawned by the application
  • Implement network egress monitoring for AI/LLM application servers

How to Mitigate CVE-2024-3098

Immediate Actions Required

  • Update the llama_index package to the latest patched version immediately
  • Review application code for any direct usage of the safe_eval function
  • Implement additional input validation layers before data reaches safe_eval
  • Consider temporarily disabling functionality that relies on dynamic code evaluation

Patch Information

The LlamaIndex development team has addressed this vulnerability in a security commit. The fix is available in the GitHub repository commit 5fbcb5a8b9f20f81b791c7fc8849e352613ab475. Organizations should update to a version that includes this commit or later.

For detailed information about the vulnerability discovery and technical analysis, refer to the Huntr Bounty Report.

Workarounds

  • Implement strict input sanitization before any data reaches the safe_eval function
  • Deploy the application in a sandboxed or containerized environment with restricted permissions
  • Use allowlisting for permitted operations rather than blocklisting dangerous functions
  • Consider removing or replacing functionality that depends on dynamic code evaluation with safer alternatives
bash
# Update llama_index to the latest patched version
pip install --upgrade llama_index

# Verify the installed version includes the security fix
pip show llama_index

# For production environments, pin to a known secure version
pip install llama_index>=0.10.0

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.19%

  • 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-94
  • Technical References
  • GitHub Commit Update

  • Huntr Bounty Report
  • Related CVEs
  • CVE-2024-14021: LlamaIndex Unsafe Deserialization 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