๐Ÿ” CVE Alert

CVE-2026-68968

UNKNOWN 0.0

Apache Airflow: Authorization bypass in the Backfill API through conflicting interpretations of the backfill id

CVSS Score
0.0
EPSS Score
0.0%
EPSS Percentile
0th

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.

CWE CWE-436
Vendor apache software foundation
Product apache airflow
Published Aug 12, 2026
Last Updated Aug 12, 2026
Stay Ahead of the Next One

Get instant alerts for apache software foundation apache airflow

Be the first to know when new unknown vulnerabilities affecting apache software foundation apache airflow are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

Affected Versions

Apache Software Foundation / Apache Airflow
0 < 3.3.1

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/apache/airflow/pull/70889 lists.apache.org: https://lists.apache.org/thread/f9zmw6xs5b4syhwzbl6fsxm4kf2632ol openwall.com: http://www.openwall.com/lists/oss-security/2026/08/12/12

Credits

Jarek Potiuk