GHSA-2r5m-76wx-56gx
Severity by source
AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
Primary rating from Vendor (CNA) · only source for this CVE.
CVSS VectorVendor
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
Lifecycle Timeline
6Blast Radius
ecosystem impact- 8 pypi packages depend on apache-airflow (4 direct, 4 indirect)
Ecosystem-wide dependent count for version 3.2.2.
Description PRE-NVD
AnalysisAI
Arbitrary Python module import in Apache Airflow versions prior to 3.2.2 occurs when the scheduler deserializes custom DeadlineReference objects, because the prior implementation called import_string() directly on an attacker-controllable __class_path field. Rated CVSS 7.3 with low confidentiality/integrity/availability impact, this issue has no public exploit identified at time of analysis and EPSS estimates exploitation probability at 0.02% (6th percentile).
Technical ContextAI
Apache Airflow's serialization layer (airflow/serialization/definitions/deadline.py) reconstructs custom DeadlineReference subclasses from serialized DAG/deadline metadata. Before the fix, deserialize_reference() called airflow._shared.module_loading.import_string(reference_data['__class_path']), which performs a Python import of any dotted module path supplied in the serialized payload. This is a classic CWE-502 (Deserialization of Untrusted Data) weakness: importing a module executes its top-level code, so an attacker who can influence the class_path string can trigger side effects of arbitrary importable modules within the scheduler process - including modules whose import has destructive side effects, opens network connections, or otherwise affects Python state. The patch (PR #66737) replaces the unrestricted import_string call with find_registered_custom_deadline_reference(), which only resolves classes that have been explicitly enrolled via a new AirflowPlugin.deadline_references registry, matching the existing pattern Airflow uses for custom timetables and partition mappers.
RemediationAI
Upgrade Apache Airflow to version 3.2.2 or later, which replaces the unrestricted import_string() call in deadline deserialization with a plugin-registry lookup (see PR https://github.com/apache/airflow/pull/66737 and the Apache announcement at https://lists.apache.org/thread/q227dghjwgfz8xsxrf2pwpz4wk43zm83). After upgrading, any custom DeadlineReference subclasses must be explicitly registered via the new deadline_references attribute on an AirflowPlugin, or scheduler-side deserialization will raise DeadlineReferenceNotRegistered - operators using custom deadline references should plan a small refactor to add the plugin entry. Where immediate upgrade is not possible, restrict who can author DAGs and who can write to the Airflow metadata database to trusted users only, audit existing serialized deadline payloads for unexpected __class_path values, and consider running schedulers in a sandboxed Python environment to limit the side effects of arbitrary imports; these workarounds reduce exposure but do not close the import primitive itself.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing
Same weakness CWE-502 – Deserialization of Untrusted Data
View allSame technique Deserialization
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-33587