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-2025-30473

CVE-2025-30473: Apache Airflow Common SQL Provider SQLi

CVE-2025-30473 is a SQL injection vulnerability in Apache Airflow Common SQL Provider that allows authenticated users to execute arbitrary SQL commands. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-30473 Overview

CVE-2025-30473 is a SQL Injection vulnerability affecting Apache Airflow Common SQL Provider. When using the partition clause in SQLTableCheckOperator as a parameter (which was a recommended pattern), authenticated UI users could inject arbitrary SQL commands when triggering DAGs that expose the partition_clause to the user. This vulnerability allows DAG triggering users to escalate privileges and execute arbitrary SQL commands that they would not normally have permission to run.

Critical Impact

Authenticated users can inject arbitrary SQL commands through the partition clause parameter, leading to privilege escalation and unauthorized database access.

Affected Products

  • Apache Airflow Common SQL Provider versions before 1.24.1

Discovery Timeline

  • April 7, 2025 - CVE-2025-30473 published to NVD
  • April 11, 2025 - Last updated in NVD database

Technical Details for CVE-2025-30473

Vulnerability Analysis

This vulnerability stems from improper neutralization of special elements used in SQL commands (CWE-89). The SQLTableCheckOperator component in Apache Airflow Common SQL Provider accepts a partition_clause parameter that was intended to allow users to specify partition filters for database table checks. However, when this parameter is exposed to UI users during DAG triggering, the input is not properly sanitized before being incorporated into SQL queries.

An authenticated user with DAG triggering permissions can craft malicious input containing SQL syntax that will be executed by the database with elevated privileges. This creates a significant privilege escalation vector, as users can execute database operations beyond their intended access level.

Root Cause

The root cause is insufficient input validation and sanitization of the partition_clause parameter in the SQLTableCheckOperator. The parameter value is concatenated directly into SQL queries without proper escaping or parameterization, allowing attackers to break out of the intended query structure and inject arbitrary SQL commands.

Attack Vector

The attack requires network access and low-privilege authentication to the Apache Airflow UI. An attacker with valid credentials who has permission to trigger DAGs can exploit this vulnerability by:

  1. Identifying a DAG that uses SQLTableCheckOperator with an exposed partition_clause parameter
  2. Triggering the DAG through the web UI
  3. Providing a malicious payload in the partition clause field that contains SQL injection syntax
  4. The injected SQL commands execute with the database connection's privileges

The vulnerability is particularly dangerous because it allows users to bypass normal authorization controls and execute database commands they would not otherwise have access to perform.

Detection Methods for CVE-2025-30473

Indicators of Compromise

  • Unusual SQL query patterns in database logs associated with Airflow connections
  • DAG trigger events containing suspicious characters or SQL keywords in partition parameters
  • Unexpected database operations or data modifications coinciding with DAG executions
  • Authentication logs showing repeated DAG triggers from the same user with varying partition parameters

Detection Strategies

  • Monitor Airflow audit logs for DAG triggers with unusual or excessively long partition clause values
  • Implement database query logging and alert on queries containing multiple statements or unexpected DDL/DML operations
  • Deploy Web Application Firewall (WAF) rules to detect SQL injection patterns in Airflow UI requests
  • Review database access logs for operations that don't match expected DAG behavior

Monitoring Recommendations

  • Enable verbose logging for the Common SQL Provider to capture query parameters
  • Set up alerting for failed SQL syntax errors that may indicate injection attempts
  • Monitor for privilege escalation attempts in database audit logs
  • Correlate Airflow task execution logs with database activity to identify anomalies

How to Mitigate CVE-2025-30473

Immediate Actions Required

  • Upgrade Apache Airflow Common SQL Provider to version 1.24.1 or later immediately
  • Audit existing DAGs that use SQLTableCheckOperator with exposed partition_clause parameters
  • Review database logs for signs of past exploitation
  • Temporarily restrict DAG triggering permissions to trusted users until patching is complete

Patch Information

Apache has released version 1.24.1 of the Apache Airflow Common SQL Provider which fixes this vulnerability. The fix is available in the GitHub Pull Request #48098. Additional details are available in the Apache Mailing List Thread.

To upgrade, run the following command:

bash
pip install apache-airflow-providers-common-sql>=1.24.1

Workarounds

  • Remove user-facing exposure of the partition_clause parameter in DAG configurations
  • Implement input validation at the DAG level to restrict allowed characters in partition clauses
  • Use database roles with minimal required privileges for Airflow connections
  • Consider implementing a proxy layer that validates and sanitizes SQL parameters before execution
bash
# Configuration example
# Upgrade the Common SQL Provider package
pip install --upgrade apache-airflow-providers-common-sql>=1.24.1

# Verify the installed version
pip show apache-airflow-providers-common-sql | grep Version

# Restart Airflow services after upgrade
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
  • TypeSQLI

  • Vendor/TechApache Airflow

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • OpenWall OSS-Security Update

  • OpenWall OSS-Security Update

  • OpenWall OSS-Security Update

  • OpenWall OSS-Security Update
  • Vendor Resources
  • GitHub Pull Request

  • Apache Mailing List Thread
  • Related CVEs
  • CVE-2026-25917: Apache Airflow RCE Vulnerability

  • CVE-2026-30898: Apache Airflow Privilege Escalation Flaw

  • CVE-2026-30912: Apache Airflow Information Disclosure Flaw

  • CVE-2026-32690: Apache Airflow 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