A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-48726

CVE-2026-48726: Apache Airflow Auth Bypass Vulnerability

CVE-2026-48726 is an authentication bypass flaw in Apache Airflow that allows attackers to use JWT tokens after logout. This article covers technical details, affected versions, security impact, and mitigation.

Published: June 4, 2026

CVE-2026-48726 Overview

CVE-2026-48726 is a session management flaw in Apache Airflow's authentication layer. The logout flow for FabAuthManager and KeycloakAuthManager never reaches the revoke_token() call, leaving previously-issued JSON Web Tokens (JWTs) valid until their natural expiry. An attacker who already holds a JWT for a user that has logged out can continue invoking the Airflow API as that user. This is a residual gap in the fix for CVE-2025-57735, which addressed cookie-side invalidation but missed the provider-side revocation path. Deployments using SimpleAuthManager are not affected. The issue is categorized under [CWE-613: Insufficient Session Expiration].

Critical Impact

Stolen or leaked Airflow JWTs remain usable after the legitimate user logs out, enabling continued API access as that user until token expiry.

Affected Products

  • Apache Airflow deployments configured with FabAuthManager
  • Apache Airflow deployments configured with KeycloakAuthManager
  • Apache Airflow versions prior to 3.2.2

Discovery Timeline

  • 2026-06-01 - CVE-2026-48726 published to NVD
  • 2026-06-03 - Last updated in NVD database

Technical Details for CVE-2026-48726

Vulnerability Analysis

Apache Airflow issues JWTs to authenticated UI and API clients. When a user clicks logout, the auth manager is expected to invalidate the active session on both the client side (cookies) and the provider side by calling revoke_token(). In FabAuthManager and KeycloakAuthManager, the logout handler returns before reaching revoke_token(). The token remains a valid bearer credential against the Airflow API server until its expiry timestamp passes.

An attacker who has obtained a JWT through prior interception, log exposure, browser compromise, or a shared workstation can replay the token against the API. The API server has no record of revocation and accepts the JWT signature and claims as legitimate. Authentication context is preserved, including the logged-out user's role and Directed Acyclic Graph (DAG) permissions.

Root Cause

The FAB and Keycloak logout code paths short-circuit before invoking provider-side token revocation. The fix for CVE-2025-57735 in pull requests #57992 and #61339 handled cookie clearing but did not restore reachability of revoke_token() for these two managers. The result is a logout that appears complete in the browser while the backing token remains live.

Attack Vector

Exploitation requires the attacker to possess a previously-issued JWT for a target user. With that token, the attacker sends authenticated HTTP requests to the Airflow REST API. Useful operations include reading DAG metadata, triggering DAG runs, retrieving connection details, and exfiltrating variables. The attack succeeds even after the victim explicitly logs out of the UI, because the API server never learns the token was meant to be invalidated.

No verified public proof-of-concept code is published for this issue. Refer to the Apache Airflow Pull Request #67289 for the upstream fix and the Apache Mailing List Discussion for vendor context.

Detection Methods for CVE-2026-48726

Indicators of Compromise

  • API requests bearing a JWT for a user whose UI session has already issued a logout event.
  • API activity from a source IP or user agent that differs from the original token issuance context.
  • DAG triggers, connection reads, or variable reads occurring outside the user's normal working hours.
  • Repeated use of the same JWT past a typical interactive session lifetime.

Detection Strategies

  • Correlate Airflow webserver logout events with subsequent API authentication events using the same jti or subject claim.
  • Enable verbose audit logging on the Airflow API server and forward to a Security Information and Event Management (SIEM) platform for behavioral analysis.
  • Alert on JWT reuse from new IP addresses or user agents after a logout event.

Monitoring Recommendations

  • Ingest Airflow API access logs, Keycloak session events, and FAB auth manager logs into a centralized analytics pipeline.
  • Track JWT lifetime distributions and flag tokens that continue making calls beyond expected session duration.
  • Monitor sensitive API endpoints such as /api/v1/dags/{dag_id}/dagRuns and /api/v1/connections for anomalous access patterns.

How to Mitigate CVE-2026-48726

Immediate Actions Required

  • Upgrade apache-airflow to version 3.2.2 or later, even if you already patched for CVE-2025-57735.
  • Inventory all deployments using FabAuthManager or KeycloakAuthManager and prioritize internet-exposed instances.
  • Rotate signing keys for JWTs to invalidate all outstanding tokens issued by vulnerable releases.
  • Force re-authentication for all active users after the upgrade.

Patch Information

The fix is delivered in Apache Airflow 3.2.2. The upstream change restores reachability of revoke_token() in the FAB and Keycloak logout paths. Review the GitHub Pull Request #67289 for the code change and the Apache Airflow Security Mailing List for the official advisory.

Workarounds

  • Reduce JWT lifetime in the Airflow auth manager configuration to shrink the window of post-logout validity.
  • Restrict Airflow API exposure with network controls so that stolen tokens are unusable from outside trusted networks.
  • Temporarily switch to SimpleAuthManager in non-production environments if upgrade timelines slip and the deployment model permits it.
bash
# Upgrade Apache Airflow to the patched release
pip install --upgrade "apache-airflow==3.2.2"

# Restart Airflow components to apply the new auth manager code
airflow webserver --daemon
airflow scheduler --daemon

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-613
  • Technical References
  • CVE Record CVE-2025-57735
  • Vendor Resources
  • GitHub Pull Request

  • Apache Mailing List Discussion
  • Related CVEs
  • CVE-2026-49298: Apache Airflow Auth Bypass Vulnerability

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

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

  • CVE-2026-41084: Apache Airflow Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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