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-2026-35441

CVE-2026-35441: Directus GraphQL DOS Vulnerability

CVE-2026-35441 is a denial of service flaw in Directus GraphQL endpoints that allows authenticated users to exhaust server resources through query aliasing. This article covers the technical details, affected versions, and fixes.

Published: April 10, 2026

CVE-2026-35441 Overview

A GraphQL resource exhaustion vulnerability has been identified in Directus, a real-time API and App dashboard for managing SQL database content. Prior to version 11.17.0, Directus' GraphQL endpoints (/graphql and /graphql/system) did not deduplicate resolver invocations within a single request, allowing authenticated users to exploit GraphQL aliasing to cause denial of service conditions.

Critical Impact

Any authenticated user, including those with minimal read-only permissions, can exploit this vulnerability to cause CPU, memory, and I/O exhaustion, potentially degrading or crashing the Directus service.

Affected Products

  • Directus versions prior to 11.17.0
  • Directus GraphQL endpoints (/graphql and /graphql/system)
  • Self-hosted and managed Directus deployments with default configurations

Discovery Timeline

  • April 6, 2026 - CVE-2026-35441 published to NVD
  • April 7, 2026 - Last updated in NVD database

Technical Details for CVE-2026-35441

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption), a class of weaknesses that occur when an application does not properly restrict the amount of resources consumed by a user or process. In this case, the Directus GraphQL implementation fails to deduplicate resolver invocations when processing aliased queries within a single request.

GraphQL aliasing is a legitimate feature that allows clients to request the same field multiple times with different arguments or simply different names in the response. However, when combined with expensive relational queries, this feature can be weaponized. An attacker can craft a single GraphQL request containing numerous aliases, each triggering an independent complex database query. The database load multiplies linearly with the number of aliases included in the request.

The existing security controls proved insufficient to prevent exploitation. While Directus implements a token limit on GraphQL queries, it still permits enough aliases to cause significant resource exhaustion. The relational depth limit applies per alias without reducing the total number of queries executed. Furthermore, rate limiting is disabled by default, meaning no built-in throttle prevents this attack from causing service degradation or complete denial of service.

Root Cause

The root cause lies in the GraphQL resolver implementation's failure to recognize and deduplicate repeated query patterns when processing aliased fields. Each alias is treated as an independent query requiring full resolution, regardless of whether identical or similar queries have already been processed within the same request. This architectural oversight allows the linear multiplication of database operations based on the number of aliases in a single request.

Attack Vector

The attack can be executed by any authenticated user over the network, including those with minimal read-only permissions. The attacker sends a specially crafted GraphQL request to either the /graphql or /graphql/system endpoint containing multiple aliases that each invoke expensive relational queries. Because the server processes each alias independently without deduplication, the cumulative database load can exhaust server resources including CPU, memory, and I/O bandwidth.

The vulnerability is exploited through GraphQL aliasing, where an attacker repeats expensive relational queries using different alias names within a single request. Each alias forces the server to execute an independent database query, causing linear multiplication of database load. The attack requires only basic authentication and read permissions, making it accessible to any authenticated user. For technical implementation details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-35441

Indicators of Compromise

  • Abnormally large GraphQL requests to /graphql or /graphql/system endpoints containing numerous field aliases
  • Sudden spikes in database query volume originating from the Directus application
  • Increased CPU, memory, or I/O utilization on servers hosting Directus
  • Service degradation or unresponsiveness affecting Directus API availability

Detection Strategies

  • Monitor GraphQL request payloads for excessive use of aliasing patterns in incoming queries
  • Implement query complexity analysis to identify requests that may cause disproportionate resource consumption
  • Set up alerting for abnormal database query patterns or connection pool exhaustion
  • Review application logs for repeated expensive relational queries from single sessions

Monitoring Recommendations

  • Enable detailed logging for GraphQL endpoint requests including payload size and execution time
  • Configure database query monitoring to track query counts and execution duration per application session
  • Set up resource utilization alerts for CPU, memory, and disk I/O on Directus server infrastructure
  • Implement application performance monitoring (APM) to correlate user requests with backend resource consumption

How to Mitigate CVE-2026-35441

Immediate Actions Required

  • Upgrade Directus to version 11.17.0 or later immediately
  • Enable rate limiting on GraphQL endpoints if running a vulnerable version
  • Consider implementing a Web Application Firewall (WAF) rule to limit GraphQL query complexity
  • Restrict GraphQL endpoint access to only necessary authenticated users

Patch Information

The vulnerability is fixed in Directus version 11.17.0. Organizations should upgrade to this version or later to remediate the vulnerability. The fix implements proper deduplication of resolver invocations to prevent the linear multiplication of database queries through aliasing. For additional details, consult the GitHub Security Advisory.

Workarounds

  • Enable rate limiting on Directus GraphQL endpoints to throttle request frequency
  • Implement query complexity limits at the reverse proxy or WAF layer
  • Reduce the token limit on GraphQL queries to further restrict alias abuse potential
  • Consider disabling GraphQL endpoints for users who do not require GraphQL access
bash
# Example: Enable rate limiting in Directus configuration
# Add to your .env or environment configuration
RATE_LIMITER_ENABLED=true
RATE_LIMITER_POINTS=50
RATE_LIMITER_DURATION=1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechDirectus

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39943: Directus Information Disclosure Flaw

  • CVE-2026-39942: Directus Privilege Escalation Vulnerability

  • CVE-2026-35408: Directus SSO Auth Bypass Vulnerability

  • CVE-2026-35413: Directus GraphQL Introspection Bypass
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