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

CVE-2026-35412: Directus Auth Bypass Vulnerability

CVE-2026-35412 is an authentication bypass flaw in Directus that allows authenticated users to overwrite arbitrary files by bypassing row-level permissions. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-35412 Overview

CVE-2026-35412 is a high-severity authorization bypass vulnerability affecting Directus, a real-time API and App dashboard for managing SQL database content. Prior to version 11.16.1, the TUS resumable upload endpoint (/files/tus) allows any authenticated user with basic file upload permissions to overwrite arbitrary existing files by UUID. This occurs because the TUS controller performs only collection-level authorization checks, verifying the user has some permission on directus_files, but never validates item-level access to the specific file being replaced.

Critical Impact

Authenticated users can bypass row-level permission rules to overwrite any file in the system, potentially leading to data integrity compromise, unauthorized content replacement, and disruption of application functionality.

Affected Products

  • Directus versions prior to 11.16.1

Discovery Timeline

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

Technical Details for CVE-2026-35412

Vulnerability Analysis

This vulnerability is classified under CWE-863 (Incorrect Authorization). The core issue stems from an inconsistency in how authorization is enforced across different file upload paths within Directus. While the standard REST upload path correctly enforces row-level permission rules such as "users can only update their own files," the TUS resumable upload endpoint at /files/tus bypasses these granular controls entirely.

The TUS protocol implementation in Directus only performs collection-level authorization, checking whether a user has generic permissions on the directus_files collection. This means any authenticated user with basic file upload capabilities can exploit this endpoint to overwrite files belonging to other users or system files by simply knowing or guessing the target file's UUID.

Root Cause

The root cause is an incomplete authorization implementation in the TUS controller. The controller verifies that the requesting user has some level of access to the directus_files collection but fails to perform item-level permission validation. This architectural oversight allows the TUS endpoint to operate outside the standard access control framework that protects individual file resources.

Attack Vector

An attacker with valid credentials and basic file upload permissions can exploit this vulnerability by sending a TUS upload request targeting an arbitrary file UUID. The attack is network-accessible with low complexity and requires no user interaction. The attacker crafts a TUS PATCH request to /files/tus/{target-file-uuid} with replacement file content. Since the TUS controller does not verify ownership or item-level permissions, the target file is overwritten regardless of the original owner or configured access restrictions.

The exploitation flow involves:

  1. Obtaining valid authentication credentials with basic file upload permissions
  2. Identifying or enumerating target file UUIDs (potentially through other API endpoints or information disclosure)
  3. Sending a TUS upload request to replace the target file with attacker-controlled content
  4. The malicious content overwrites the original file, bypassing all row-level permission rules

For technical details and proof-of-concept information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-35412

Indicators of Compromise

  • Unusual TUS upload activity targeting file UUIDs not owned by the requesting user
  • Unexpected modifications to files in the directus_files collection
  • Audit log entries showing file overwrites via /files/tus endpoint by users who should not have access to those files
  • Multiple TUS PATCH requests targeting different file UUIDs from a single authenticated session

Detection Strategies

  • Monitor API access logs for abnormal patterns of TUS endpoint usage, particularly requests targeting files owned by different users
  • Implement file integrity monitoring on critical Directus-managed files to detect unauthorized modifications
  • Audit user permissions and compare against actual file modification activity to identify authorization bypass attempts
  • Enable verbose logging on the /files/tus endpoint to capture detailed request information for forensic analysis

Monitoring Recommendations

  • Configure alerting for TUS upload requests where the requesting user does not match the file owner
  • Implement anomaly detection for sudden increases in file modification activity through the TUS endpoint
  • Review Directus audit logs regularly for signs of unauthorized file access patterns
  • Deploy network-level monitoring to track traffic patterns to the /files/tus endpoint

How to Mitigate CVE-2026-35412

Immediate Actions Required

  • Upgrade Directus to version 11.16.1 or later immediately
  • Review recent file modifications to identify any unauthorized changes that may have occurred prior to patching
  • Audit user permissions and remove unnecessary file upload capabilities from accounts that do not require them
  • Consider temporarily disabling the TUS endpoint if immediate patching is not possible

Patch Information

This vulnerability is fixed in Directus version 11.16.1. The patch implements proper item-level authorization checks in the TUS controller, ensuring that row-level permission rules are enforced consistently across all upload paths. Organizations should upgrade to 11.16.1 or later to remediate this vulnerability. For detailed information, see the GitHub Security Advisory.

Workarounds

  • Restrict access to the /files/tus endpoint at the reverse proxy or web application firewall level until patching is complete
  • Implement additional network segmentation to limit which users can reach the TUS endpoint
  • Review and tighten user permissions to minimize the number of accounts with file upload capabilities
  • Consider implementing additional application-level logging to track all TUS endpoint activity for post-incident analysis
bash
# Example: Block TUS endpoint at nginx reverse proxy level (temporary workaround)
location /files/tus {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechDirectus

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35408: Directus SSO Auth Bypass Vulnerability

  • CVE-2026-35410: Directus Open Redirect Vulnerability

  • CVE-2026-22032: Directus SAML Auth Bypass Vulnerability

  • CVE-2026-39943: Directus Information Disclosure Flaw
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