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

CVE-2025-32380: Apollo Router Core DoS Vulnerability

CVE-2025-32380 is a denial of service flaw in Apollo Router Core caused by expensive validation of deeply nested fragments. Attackers can exploit this to cause excessive resource consumption and service disruption.

Published: April 29, 2026

CVE-2025-32380 Overview

A denial of service vulnerability exists in Apollo Router Core, a high-performance graph router written in Rust designed to run federated supergraphs using Apollo Federation 2. The vulnerability stems from improper resource allocation when processing GraphQL queries containing deeply nested and reused named fragments, classified as CWE-770 (Allocation of Resources Without Limits or Throttling).

Critical Impact

Attackers can craft malicious GraphQL queries with deeply nested named fragments to cause excessive CPU and memory consumption, leading to denial of service conditions that can disrupt critical API gateway infrastructure.

Affected Products

  • Apollo Router Core versions prior to 1.61.2
  • Apollo Router Core versions 2.x prior to 2.1.1
  • Systems using Apollo Compiler with vulnerable validation logic

Discovery Timeline

  • April 9, 2025 - CVE-2025-32380 published to NVD
  • April 15, 2026 - Last updated in NVD database

Technical Details for CVE-2025-32380

Vulnerability Analysis

The vulnerability resides in Apollo Router's integration with Apollo Compiler, specifically in how the validation logic processes named fragments in GraphQL queries. When a query contains deeply nested named fragments that are reused multiple times, the validation process would traverse each fragment instance separately rather than processing unique fragments once. This redundant traversal creates an algorithmic complexity issue where the computational cost grows exponentially with the depth and reuse of fragments.

The attack requires no authentication or user interaction, making it easily exploitable over the network. While the vulnerability does not impact confidentiality or integrity, it can completely compromise the availability of affected Apollo Router instances, disrupting GraphQL API services for all users.

Root Cause

The root cause is CWE-770: Allocation of Resources Without Limits or Throttling. Apollo Compiler's fragment validation logic lacked optimization to track already-processed named fragments. When encountering reused named fragments within deeply nested query structures, the validator would redundantly traverse the same fragment definitions multiple times, leading to exponential resource consumption proportional to fragment nesting depth and reuse frequency.

Attack Vector

The attack vector is network-based, requiring an attacker to send specially crafted GraphQL queries to a vulnerable Apollo Router endpoint. The attacker constructs a query with deeply nested named fragment spreads where the same fragments are referenced multiple times at various nesting levels. When the router attempts to validate this query using Apollo Compiler, the redundant fragment processing consumes excessive CPU cycles and memory, eventually exhausting server resources.

The exploitation technique leverages algorithmic complexity—a small malicious payload can trigger disproportionately large computational work. This is particularly dangerous in GraphQL environments where query depth and complexity limits may not adequately protect against this specific fragment reuse pattern.

Detection Methods for CVE-2025-32380

Indicators of Compromise

  • Unusual spikes in CPU and memory utilization on Apollo Router instances without corresponding increases in legitimate traffic
  • GraphQL queries with abnormally deep nesting levels or excessive named fragment spreads in request logs
  • Increased query validation latency or timeout errors in Apollo Router metrics
  • Service degradation or unavailability reports coinciding with specific query patterns

Detection Strategies

  • Implement monitoring for GraphQL query complexity metrics, specifically tracking fragment depth and reuse counts
  • Configure alerting on Apollo Router resource consumption thresholds (CPU > 80%, memory > 85%)
  • Enable detailed query logging and analyze for patterns involving multiple references to the same named fragments
  • Deploy Web Application Firewall (WAF) rules to detect and block queries with excessive fragment nesting

Monitoring Recommendations

  • Monitor Apollo Router health endpoints and establish baseline performance metrics
  • Track query validation duration as an early indicator of exploitation attempts
  • Implement rate limiting on GraphQL endpoints to reduce the impact of sustained attacks
  • Review Apollo Router logs for rejected or timed-out queries that may indicate malicious activity

How to Mitigate CVE-2025-32380

Immediate Actions Required

  • Upgrade Apollo Router Core to version 1.61.2 or 2.1.1 immediately
  • If immediate upgrade is not possible, implement query depth and complexity limits at the application layer
  • Enable rate limiting on GraphQL endpoints to reduce exposure
  • Monitor router resource consumption for signs of active exploitation

Patch Information

Apollo has remediated this vulnerability by updating Apollo Router's usage of Apollo Compiler so that validation logic processes each named fragment only once, preventing redundant traversal. The fix is available in the following versions:

  • Apollo Router Core 1.61.2 for the 1.x release line
  • Apollo Router Core 2.1.1 for the 2.x release line

For technical details, refer to the GitHub Security Advisory GHSA-3j43-9v8v-cp3f. The specific fixes can be reviewed in commits ab6675a631747 and bba032e183b8.

Workarounds

  • Implement strict query depth limits using Apollo Router configuration or a GraphQL gateway layer
  • Configure maximum query complexity thresholds to reject overly complex queries before validation
  • Deploy a reverse proxy with request size and timeout limits in front of Apollo Router
  • Consider temporarily blocking or sanitizing queries containing named fragments until patching is complete
bash
# Apollo Router configuration example for query limits
# Add to router.yaml configuration file
limits:
  max_depth: 15
  max_height: 200
  max_aliases: 30
  max_root_fields: 20

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechApollo Router

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.53%

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

  • GitHub Commit bba032e183b8

  • GitHub Security Advisory GHSA-3j43-9v8v-cp3f
  • Related CVEs
  • CVE-2025-32034: Apollo Router Core DoS Vulnerability

  • CVE-2025-32032: Apollo Router Core DOS Vulnerability

  • CVE-2025-64347: Apollo Router Auth Bypass Vulnerability

  • CVE-2025-64173: Apollo Router Auth Bypass 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