CVE-2023-49920:
Apache Airflow Cross-Site Request Forgery vulnerability
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.3905%
CWE
Published
12/21/2023
Updated
11/21/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
apache-airflow | pip | >= 2.7.0, < 2.8.0 | 2.8.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from the trigger endpoint accepting GET requests for DAG execution. The GitHub patch shows the critical change in views.py
where the condition was modified from checking only GET method to a more restrictive check, forcing POST-based execution. The HTML template changes (adding onclick
handlers using POST) and test adjustments (adding POST data) further confirm that GET-based triggering was the vulnerable pattern. The core vulnerability resided in the trigger view's handling of GET requests without CSRF protections.