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

CVE-2025-32034: Apollo Router Core DoS Vulnerability

CVE-2025-32034 is a denial of service flaw in Apollo Router Core caused by deeply nested named fragments leading to exponential resource usage. This article covers technical details, affected versions, impact, and mitigation.

Updated: May 11, 2026

CVE-2025-32034 Overview

CVE-2025-32034 is a denial-of-service vulnerability in the Apollo Router Core, a high-performance graph router written in Rust for federated GraphQL supergraphs using Apollo Federation 2. The flaw resides in the query planning phase, where deeply nested and reused named fragments expand recursively. Each fragment spread triggers a full expansion of its named fragment, producing exponential resource consumption. An unauthenticated attacker can submit a crafted GraphQL query over the network to exhaust CPU and memory on the router. Apollo remediated the issue in apollo-router versions 1.61.2 and 2.1.1. The defect is tracked under [CWE-770: Allocation of Resources Without Limits or Throttling].

Critical Impact

A single unauthenticated GraphQL query containing deeply nested, reused named fragments can exhaust router resources and bring down the federated supergraph endpoint.

Affected Products

  • Apollo Router Core versions prior to 1.61.2 (1.x branch)
  • Apollo Router Core versions prior to 2.1.1 (2.x branch)
  • Federated GraphQL supergraphs deployed on vulnerable Apollo Router builds

Discovery Timeline

  • 2025-04-07 - CVE-2025-32034 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-32034

Vulnerability Analysis

The Apollo Router accepts GraphQL operations and produces an execution plan that delegates work to federated subgraphs. During query planning, the router expands named fragments inline so that the planner can reason about each selection set. The pre-patch implementation expanded a named fragment once for every spread that referenced it, instead of memoizing the expansion. When fragment A spreads fragment B, B spreads fragment C, and each fragment is reused multiple times, the effective selection tree grows exponentially relative to query size.

An attacker submits a small, syntactically valid GraphQL document that triggers this expansion. The router commits CPU and heap memory to materializing the expanded plan before any execution or authorization step that would normally bound work. Repeated requests amplify the impact and stall worker threads, denying service to legitimate clients of the supergraph.

Root Cause

The root cause is the absence of bounded resource accounting during named fragment expansion in the query planner. The planner did not deduplicate expansions for repeated fragment spreads and did not enforce a ceiling on the resulting selection-set size, which maps to [CWE-770].

Attack Vector

Exploitation requires only network access to the router's GraphQL endpoint. No authentication, privileges, or user interaction are needed. The attacker sends a single HTTP POST containing a GraphQL document whose named fragments are deeply nested and reused.

rust
// Patch excerpt: apollo-federation/src/query_graph/build_query_graph.rs
 use crate::query_graph::QueryGraphEdgeTransition;
 use crate::query_graph::QueryGraphNode;
 use crate::query_graph::QueryGraphNodeType;
+use crate::query_plan::query_planning_traversal::non_local_selections_estimation::precompute_non_local_selection_metadata;
 use crate::schema::ValidFederationSchema;
 use crate::schema::field_set::parse_field_set;
 use crate::schema::position::AbstractTypeDefinitionPosition;

Source: Apollo Router commit ab6675a

The patch introduces precompute_non_local_selection_metadata, which estimates and tracks non-local selection costs before the planner performs full expansion. A second helper distinguishes fragments carrying @defer, allowing the planner to handle them safely without redundant traversal:

rust
// Patch excerpt: apollo-federation/src/query_graph/graph_path.rs
+    pub(crate) fn has_defer(&self) -> bool {
+        match self {
+            OpPathElement::Field(_) => false,
+            OpPathElement::InlineFragment(inline_fragment) => {
+                inline_fragment.directives.has("defer")
+            }
+        }
+    }

Source: Apollo Router commit bba032e

Detection Methods for CVE-2025-32034

Indicators of Compromise

  • Sustained spikes in apollo-router CPU and resident memory without a matching increase in successful query volume.
  • Query planning latency or timeouts climbing into seconds for requests against previously fast operations.
  • Inbound GraphQL documents containing many fragment definitions with repeated ...FragmentName spreads nested multiple levels deep.
  • HTTP 5xx errors or dropped connections from the router under low external request rates.

Detection Strategies

  • Parse GraphQL request bodies at the gateway or WAF and flag documents whose fragment spread count or nesting depth exceeds a configured baseline.
  • Correlate router process metrics (CPU, RSS, planner duration) with request IDs to isolate single operations that cause disproportionate resource use.
  • Enable structured logging on the router and alert on query_planning spans whose duration exceeds a percentile threshold derived from steady-state traffic.

Monitoring Recommendations

  • Export Apollo Router OpenTelemetry metrics for query planning time, parse time, and rejected operations to a central observability backend.
  • Monitor subgraph request rates relative to inbound supergraph requests; an exponential mismatch can indicate planner amplification.
  • Track router version inventory across environments to confirm all instances run 1.61.2, 2.1.1, or later.

How to Mitigate CVE-2025-32034

Immediate Actions Required

  • Upgrade Apollo Router Core to 1.61.2 on the 1.x branch or 2.1.1 on the 2.x branch without delay.
  • Place the router behind a rate limiter and a request-size cap to blunt repeated exploitation attempts during the upgrade window.
  • Audit recent access logs for unusually large or fragment-heavy GraphQL operations and block offending source addresses.

Patch Information

Apollo released fixes in apollo-router1.61.2 and 2.1.1. The remediation, described in GitHub Security Advisory GHSA-75m2-jhh5-j5g2, changes named fragment handling so expansion cost is precomputed and bounded. Implementation details are visible in commit ab6675a and commit bba032e.

Workarounds

  • Enforce operation allow-listing or persisted queries so only pre-approved GraphQL documents reach the router.
  • Configure maximum query depth, maximum fragment count, and maximum request body size at an upstream proxy.
  • Apply per-client rate limits and concurrency caps to contain the impact of any single abusive caller.
bash
# Pin Apollo Router to a fixed version in a container deployment
docker pull ghcr.io/apollographql/router:v2.1.1

# Verify the running version after rollout
curl -s http://router.internal:4000/health
./router --version  # expect: 2.1.1 or 1.61.2

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.38%

  • 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 Changes

  • GitHub Commit Improvements

  • GitHub Security Advisory GHSA-75m2-jhh5-j5g2
  • Related CVEs
  • CVE-2025-32380: 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