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

CVE-2026-26929: Apache Airflow Auth Bypass Vulnerability

CVE-2026-26929 is an authorization bypass flaw in Apache Airflow that exposes unauthorized DAG metadata when using wildcard requests. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 20, 2026

CVE-2026-26929 Overview

CVE-2026-26929 is an authorization bypass vulnerability in Apache Airflow versions 3.0.0 through 3.1.7. The FastAPI DagVersion listing API fails to apply per-DAG authorization filtering when requests are made with the dag_id parameter set to ~ (a wildcard representing all DAGs). This allows authenticated users to retrieve version metadata for DAGs they are not authorized to access, potentially exposing sensitive workflow information and organizational data.

Critical Impact

Authenticated users can bypass per-DAG authorization controls to access version metadata of all DAGs in the system, including those they should not have visibility into, leading to potential information disclosure of sensitive workflow configurations and operational data.

Affected Products

  • Apache Airflow versions 3.0.0 through 3.1.7
  • Apache Airflow FastAPI DagVersion listing API endpoint
  • Systems using per-DAG access control policies

Discovery Timeline

  • 2026-03-17 - CVE-2026-26929 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2026-26929

Vulnerability Analysis

This vulnerability represents a broken access control flaw (CWE-732: Incorrect Permission Assignment for Critical Resource) in Apache Airflow's FastAPI implementation. The issue stems from the DagVersion listing API's failure to properly validate authorization when processing wildcard queries.

When an authenticated user sends a request to the DagVersion API with dag_id=~, the system interprets this as a request for all DAGs but bypasses the per-DAG authorization checks that would normally filter results based on the requester's permissions. This allows users with access to at least one DAG to enumerate and retrieve version metadata for all DAGs in the system, regardless of their actual authorization level.

The vulnerability requires network access and authenticated credentials, but exploitation is straightforward once an attacker has basic system access. The impact is primarily confidentiality-focused, as attackers can view DAG version information but cannot modify or execute unauthorized workflows.

Root Cause

The root cause lies in the FastAPI DagVersion listing endpoint's handling of the wildcard character (~) for the dag_id parameter. When processing this special character, the authorization middleware fails to iterate through and filter each DAG based on the requester's permissions. Instead, it returns all DAG version metadata without applying the per-DAG access control policies that are enforced for specific dag_id queries.

This represents an inconsistency between how authorization is handled for single-DAG requests versus bulk/wildcard requests, creating a privilege escalation path through the wildcard functionality.

Attack Vector

The attack vector is network-based and requires low-privilege authenticated access to the Apache Airflow instance. An attacker with valid credentials and access to at least one DAG can exploit this vulnerability by:

  1. Authenticating to the Apache Airflow web interface or API
  2. Sending a request to the DagVersion listing API with dag_id set to ~
  3. Receiving version metadata for all DAGs in the system, including those outside their authorization scope

The vulnerability can be exploited through standard HTTP requests to the FastAPI endpoint. The attacker sends a crafted API request where the dag_id parameter contains the wildcard character, causing the server to return unfiltered results. For detailed technical implementation, refer to the GitHub Pull Request containing the fix.

Detection Methods for CVE-2026-26929

Indicators of Compromise

  • API requests to the DagVersion listing endpoint containing dag_id=~ from users who should not have access to all DAGs
  • Unusual patterns of DAG metadata queries from single user accounts
  • Access logs showing wildcard queries followed by targeted actions on previously unknown DAGs

Detection Strategies

  • Monitor API access logs for requests to /api/v1/dags/~/dagVersions or similar endpoints containing the wildcard character
  • Implement alerting on API requests where dag_id=~ is used by non-administrative users
  • Audit user access patterns to detect reconnaissance activities involving bulk DAG enumeration
  • Review application logs for discrepancies between user permissions and accessed DAG metadata

Monitoring Recommendations

  • Enable detailed logging for all FastAPI DagVersion API requests including parameters and requester identity
  • Configure SIEM rules to detect wildcard character usage in dag_id parameters
  • Implement user behavior analytics to identify anomalous DAG access patterns
  • Monitor for increased API activity that may indicate systematic enumeration of DAG resources

How to Mitigate CVE-2026-26929

Immediate Actions Required

  • Upgrade Apache Airflow to version 3.1.8 or later immediately
  • Audit access logs for any historical exploitation attempts using the wildcard dag_id parameter
  • Review DAG access control configurations to ensure proper per-DAG authorization policies are in place
  • Verify that sensitive DAG configurations have not been accessed by unauthorized users

Patch Information

Apache has released version 3.1.8 which resolves this authorization bypass vulnerability. The fix ensures that per-DAG authorization filtering is properly applied even when wildcard queries are used. Organizations should upgrade to Apache Airflow 3.1.8 or later as soon as possible.

For technical details on the fix implementation, see the GitHub Pull Request. Additional information is available in the Apache Mailing List Thread and the OpenWall OSS-Security Post.

Workarounds

  • Implement network-level access controls to restrict API access to trusted users and systems pending upgrade
  • Deploy a web application firewall (WAF) rule to block or alert on requests containing dag_id=~ to the DagVersion API
  • Restrict user accounts to minimum necessary privileges while the vulnerability remains unpatched
  • Consider temporarily disabling the DagVersion listing API if not operationally required
bash
# Example: Nginx configuration to block wildcard dag_id requests pending upgrade
location /api/v1/dags/ {
    if ($args ~* "dag_id=~") {
        return 403;
    }
    proxy_pass http://airflow_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechApache Airflow

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-732
  • Technical References
  • GitHub Pull Request

  • Apache Mailing List Thread

  • OpenWall OSS-Security Post
  • Related CVEs
  • CVE-2026-28779: Apache Airflow Auth Bypass Vulnerability

  • CVE-2026-30911: Apache Airflow Auth Bypass Vulnerability

  • CVE-2026-25604: Apache Airflow Amazon Auth Bypass Flaw

  • CVE-2026-22922: Apache Airflow Auth Bypass Vulnerability
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