Deserialization in Apache Airflow
CVE-2026-58076
Apache Airflow's serialization layer reconstructed exception nodes by calling `import_string()` on a class name taken from the serialized blob and instantiating it with arguments from the same blob, with no restriction on what could be imported. An operator's `executor_config` reaches that branch, so a Dag author could place a value there that causes an arbitrary callable to be imported and invoked -- for example `subprocess.check_output`, or `builtins.eval` on the `builtins`-prefixed variant. The code runs in the **Scheduler**, which reconstructs serialized Dags in its normal loop with no request involved, and in the **API server**, on any authenticated read of the Dag such as `GET /api/v2/dags/{dag_id}/details`. Both are components the Airflow security model states must never execute Dag-author code, and both hold the metadata database credentials and the JWT signing secret. No non-default configuration is required. This is a **different sink from CVE-2026-33264**, which covered only the trigger branch of the same deserializer: deployments that upgraded in response to that advisory are still affected through the exception branch and must upgrade again. Users are advised to upgrade to apache-airflow 3.3.1 or later, which restricts the imported class to a subclass of `BaseException`.
Vulnerability class: Insecure Deserialization
Published · last modified .
CVSS v3 metric
CVSS v3 base score 8.8 (High). Vector: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H.
EPSS exploit prediction
EPSS: 0.009 (58.8th percentile), scored .
Very low probability of exploitation in the next 30 days; routine patching cadence is appropriate. 59th percentile — 58.8% of CVEs in the catalogue have a lower EPSS than this one. How to read EPSS.
EPSS over last 30 days · oldest: 0.005 · newest: 0.009 · change: +0.004
Affected products
- Apache Airflow
- Apache Software Foundation Airflow — versions 3.0.0
Weakness classification (CWE)
References
- github.com/apache/airflow/pull/68511 (Patch, patch, Issue Tracking)
- www.cve.org/CVERecord (related, Not Applicable)
- lists.apache.org/thread/t81p688t15jozxsng8521o60nh2kfsos (vendor-advisory, Mailing List, Vendor Advisory)
Frequently asked questions
- What is CVE-2026-58076?
- CVE-2026-58076 is a high-severity vulnerability in Apache Airflow, classified under Deserialization of Untrusted Data. CVSS score: 8.8/10. Published 2026-08-12.
- How severe is CVE-2026-58076?
- High severity. CVSS v3 base score is 8.8 out of 10.