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

CVE-2026-35413: Directus GraphQL Introspection Bypass

CVE-2026-35413 is an information disclosure vulnerability in Directus that allows bypassing GraphQL introspection controls, exposing schema details to unauthorized users. This article covers technical details, affected versions, and patches.

Published: April 10, 2026

CVE-2026-35413 Overview

CVE-2026-35413 is an information disclosure vulnerability in Directus, a real-time API and App dashboard for managing SQL database content. When GRAPHQL_INTROSPECTION=false is configured, Directus correctly blocks standard GraphQL introspection queries (__schema, __type). However, the server_specs_graphql resolver on the /graphql/system endpoint returns an equivalent SDL (Schema Definition Language) representation of the schema and was not subject to the same restriction. This allowed the introspection control to be bypassed, exposing schema structure including collection names, field names, types, and relationships to unauthenticated users at the public permission level, and to authenticated users at their permitted permission level.

Critical Impact

Attackers can bypass GraphQL introspection controls to enumerate the complete database schema structure, potentially revealing sensitive information about the application's data model and relationships.

Affected Products

  • Directus versions prior to 11.16.1

Discovery Timeline

  • 2026-04-06 - CVE-2026-35413 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-35413

Vulnerability Analysis

This vulnerability falls under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The core issue lies in an inconsistent security control implementation within Directus's GraphQL subsystem. While administrators can disable GraphQL introspection to hide schema details from potential attackers, the server_specs_graphql resolver provides an alternative path to obtain the same information.

The /graphql/system endpoint exposes a resolver that returns the complete GraphQL schema in SDL format. This endpoint was not included in the introspection restriction logic, creating a bypass that effectively negates the security benefit of disabling introspection. The vulnerability requires network access but no authentication or user interaction to exploit at the public permission level.

Root Cause

The root cause is an incomplete implementation of the introspection restriction feature. When the GRAPHQL_INTROSPECTION=false configuration option was introduced, the standard introspection mechanisms (__schema and __type queries) were properly blocked. However, the server_specs_graphql resolver, which provides an equivalent SDL representation of the schema, was not included in this restriction. This oversight created an alternative pathway to obtain schema information that circumvents the intended security control.

Attack Vector

An attacker can exploit this vulnerability by sending a GraphQL query to the /graphql/system endpoint targeting the server_specs_graphql resolver. Even when introspection is explicitly disabled in the Directus configuration, this resolver will return the complete GraphQL schema in SDL format.

The exposed schema information includes:

  • Collection names (database table structures)
  • Field names and their data types
  • Relationships between collections
  • Query and mutation definitions

This information can be leveraged to map out the entire data model of the application, identify sensitive collections, and craft targeted attacks against specific endpoints or data structures.

Detection Methods for CVE-2026-35413

Indicators of Compromise

  • Unusual query patterns targeting the /graphql/system endpoint
  • Requests specifically querying the server_specs_graphql resolver
  • Multiple unauthenticated requests to GraphQL endpoints from unknown sources
  • Log entries showing schema enumeration activity when introspection is disabled

Detection Strategies

  • Monitor GraphQL endpoint access logs for queries to server_specs_graphql
  • Implement alerting for unauthenticated access to the /graphql/system endpoint
  • Review application logs for patterns indicating schema reconnaissance
  • Deploy web application firewall rules to detect GraphQL introspection bypass attempts

Monitoring Recommendations

  • Enable detailed logging on all GraphQL endpoints including /graphql/system
  • Set up alerts for any access to server_specs_graphql resolver when introspection is disabled
  • Monitor for bulk or scripted requests to GraphQL system endpoints
  • Review access patterns from IP addresses that query schema-related resolvers

How to Mitigate CVE-2026-35413

Immediate Actions Required

  • Upgrade Directus to version 11.16.1 or later immediately
  • Review access logs for any prior exploitation of this vulnerability
  • Assess whether sensitive schema information may have been exposed
  • Consider restricting network access to the /graphql/system endpoint until patched

Patch Information

This vulnerability is fixed in Directus version 11.16.1. The patch ensures that the server_specs_graphql resolver respects the GRAPHQL_INTROSPECTION=false configuration setting, preventing unauthorized schema disclosure through this alternative pathway. For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Upgrade to Directus 11.16.1 as the primary mitigation
  • Implement network-level access controls to restrict access to /graphql/system endpoint
  • Use a reverse proxy or WAF to block requests to the server_specs_graphql resolver
  • Restrict API access to authenticated users only if public access is not required
bash
# Example: Block access to server_specs_graphql via nginx
location /graphql/system {
    # Deny access to the system GraphQL endpoint for unauthenticated users
    # Combine with authentication requirements as needed
    if ($request_body ~* "server_specs_graphql") {
        return 403;
    }
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechDirectus

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

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

  • CVE-2026-35442: Directus Information Disclosure Flaw

  • CVE-2026-26185: Directus Information Disclosure Flaw

  • CVE-2026-39942: Directus Privilege Escalation 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