A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2025-5302

CVE-2025-5302: LlamaIndex JSONReader DoS Vulnerability

CVE-2025-5302 is a denial of service vulnerability in LlamaIndex JSONReader caused by uncontrolled recursion when parsing nested JSON files. This article covers the technical details, affected versions, and mitigation.

Updated: May 19, 2026

CVE-2025-5302 Overview

CVE-2025-5302 is an uncontrolled recursion vulnerability [CWE-674] in the JSONReader component of the run-llama/llama_index repository. The flaw affects version v0.12.37 and is triggered when the reader parses deeply nested JSON files. Python reaches its maximum recursion depth limit during traversal, causing high resource consumption and crashes of the Python process. The issue is fixed in version 0.12.38.

The vulnerability is remotely exploitable without authentication or user interaction, making any application that ingests untrusted JSON through JSONReader susceptible to denial of service.

Critical Impact

An unauthenticated attacker can crash Python processes that load llama_index JSONReader by submitting maliciously nested JSON, disrupting AI/LLM application availability.

Affected Products

  • run-llama/llama_index version v0.12.37
  • Applications embedding the JSONReader document loader from llama_index
  • LLM data ingestion pipelines built on affected llama_index releases

Discovery Timeline

  • 2025-08-25 - CVE-2025-5302 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-5302

Vulnerability Analysis

The JSONReader component in llama_index parses JSON documents to ingest data into LLM pipelines. The parser walks nested JSON structures using recursive function calls. When the input contains deeply nested arrays or objects, each level adds a frame to the Python call stack.

Python enforces a default recursion limit, typically 1000 frames. Crafted JSON that exceeds this limit triggers a RecursionError and consumes CPU and memory before failing. The result is a process crash or unresponsive ingestion worker, breaking the availability of LLM applications relying on the loader.

The weakness falls under [CWE-674: Uncontrolled Recursion]. The component does not bound recursion depth or convert traversal to an iterative algorithm before invoking the parser on user-controlled input.

Root Cause

The parsing logic in JSONReader recurses into every nested element without depth tracking or limits. The component trusts the structural depth of input JSON, exposing the Python interpreter's stack as an attack surface. The fix in version 0.12.38 introduces depth handling to prevent unbounded recursion.

Attack Vector

An attacker supplies a JSON document with thousands of nested arrays or objects to any endpoint or workflow that feeds data into JSONReader. This includes file uploads, retrieval-augmented generation (RAG) pipelines, webhook receivers, and document ingestion APIs. No credentials or user interaction are required when ingestion is exposed to untrusted input.

The vulnerability mechanism involves submitting JSON such as a chain of opened brackets ([[[[...]]]) deep enough to exceed Python's recursion limit. See the Huntr bounty report and the upstream commit for technical details.

Detection Methods for CVE-2025-5302

Indicators of Compromise

  • Python RecursionError: maximum recursion depth exceeded entries in application logs originating from llama_index modules.
  • Repeated crashes or restarts of ingestion workers shortly after JSON file uploads or external data fetches.
  • Spikes in CPU and memory usage on hosts running llama_index JSONReader during document ingestion.

Detection Strategies

  • Inventory installed llama_index versions across Python environments and flag any host running 0.12.37 or earlier.
  • Inspect ingestion logs for stack traces referencing JSONReader and recursion exhaustion.
  • Add structural validation that measures JSON nesting depth at the application boundary and alerts when input exceeds expected thresholds.

Monitoring Recommendations

  • Monitor process exit codes and OOM events on services hosting LLM pipelines using llama_index.
  • Track latency and error rates on document ingestion endpoints to identify abusive submissions.
  • Correlate unusual JSON payload sizes and depths with subsequent worker restarts in centralized logging.

How to Mitigate CVE-2025-5302

Immediate Actions Required

  • Upgrade llama_index to version 0.12.38 or later in all environments using JSONReader.
  • Restrict ingestion endpoints to authenticated users until the upgrade is validated.
  • Validate and reject JSON inputs that exceed a defined nesting depth before they reach JSONReader.

Patch Information

The issue is resolved in llama_index version 0.12.38. The upstream fix is recorded in commit c032843a02ce38fd8f284b2aa5a37fd1c17ae635. Update package manifests, container images, and CI/CD pipelines that pin the vulnerable release.

Workarounds

  • Pre-validate JSON payloads with a depth-limited parser before passing them to JSONReader.
  • Run ingestion workers under strict resource limits (memory, CPU, restart policies) to contain crashes.
  • Increase isolation by processing untrusted JSON in short-lived sandboxed workers separated from production services.
bash
# Configuration example
pip install --upgrade "llama-index>=0.12.38"
pip show llama-index | grep -i version

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechPython

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.07%

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

  • Huntr Bounty Alert
  • Related CVEs
  • CVE-2026-45409: Python IDNA Library DoS Vulnerability

  • CVE-2025-13837: Python plistlib Module DoS Vulnerability

  • CVE-2025-13836: Python Python DOS Vulnerability

  • CVE-2025-12084: Python xml.dom.minidom DoS 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