CVE-2026-68968
Błąd autoryzacji w Apache Airflow pozwala użytkownikom na manipulację backfillami innych Dagów.
Apache Airflow's Backfill API authorized a request against a Dag id supplied by the caller whenever the `backfill_id` path segment failed to parse. The authorization dependency parsed it with `int()` while the route handler parsed it as pydantic's `NonNegativeInt`, which accepts values `int()` rejects (`1.0` coerces to `1`); FastAPI resolves dependencies before endpoint validation, so the two acted on different Dags. An authenticated user holding edit permission on any single Dag could therefore read, pause and cancel backfills belonging to any other Dag, including moving another Dag's queued runs to `failed`. No non-default configuration is required and backfill ids are sequential, so finding a target is trivial. Users are advised to upgrade to apache-airflow 3.3.1 or later, which parses the backfill id with the same type the routes declare.
| Źródło | Wartość |
|---|---|
| NVD – CVSS | 7.5 |
| CISA KEV (aktywnie wykorzystywane) | Nie |
| FIRST EPSS (prawdopodobieństwo exploita) | 0.4% |
| Opublikowano (NVD) | 2026-08-12 16:17:19 UTC |
| Ostatnia modyfikacja (NVD) | 2026-09-16 15:17:41 UTC |
- https://github.com/apache/airflow/pull/70889 ([email protected]) [Issue Tracking, Patch]
- https://lists.apache.org/thread/f9zmw6xs5b4syhwzbl6fsxm4kf2632ol ([email protected]) [Mailing List]
- http://www.openwall.com/lists/oss-security/2026/08/12/12 (af854a3a-2127-422b-91ae-364da2661108) [Mailing List]