<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>CVE Daily – Apache Airflow</title>
  <link>https://cvedaily.com/pages/tags/apache-airflow.html</link>
  <atom:link href="https://cvedaily.com/feed-tags/apache-airflow.xml" rel="self" type="application/rss+xml"/>
  <description>CVE Daily – Apache Airflow</description>
  <language>en</language>
  <lastBuildDate>Wed, 03 Jun 2026 21:26:36 +0000</lastBuildDate>
  <item>
    <title>[High] CVE-2026-49298 – A bug in Apache Airflow's KubernetesExecutor caused JWT tokens used by worker po...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-49298</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-49298</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-49298</strong></p>
  <p>A bug in Apache Airflow's KubernetesExecutor caused JWT tokens used by worker pods to authenticate against the Execution API to be passed to the worker container as command-line arguments visible in the pod spec. An authenticated UI/API user with Kubernetes read-only access to the cluster (e.g. `pods/get` in the Airflow namespace) could harvest the JWT from `kubectl describe pod` output and then…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-538</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-49298">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-49267 – Apache Airflow's EmailOperator and the underlying `airflow.utils.email` helpers ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-49267</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-49267</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-49267</strong></p>
  <p>Apache Airflow's EmailOperator and the underlying `airflow.utils.email` helpers established SMTP STARTTLS connections without verifying the remote certificate when the deployment used `[email] smtp_starttls=True` without `[email] smtp_ssl`. An attacker positioned between the worker and the configured SMTP server (network MITM — typical hostile-network attack-surface for environments where the SMT…</p>
  <p><strong>CVSS:</strong> 5.9 · <strong>CWE:</strong> CWE-295</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-49267">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-48726 – A bug in Apache Airflow's auth manager logout handling left previously-issued JW...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-48726</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-48726</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-48726</strong></p>
  <p>A bug in Apache Airflow's auth manager logout handling left previously-issued JWT tokens valid after the user clicked logout in the UI: the logout flow for `FabAuthManager` and `KeycloakAuthManager` did not actually reach the underlying `revoke_token()` call, so the JWT remained accepted by the API server until its natural expiry. An attacker holding a previously-issued JWT for a logged-out user…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-613</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-48726">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-46764 – The Event Log detail endpoint `GET /api/v2/eventLogs/{event_log_id}` in Apache A...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-46764</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-46764</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-46764</strong></p>
  <p>The Event Log detail endpoint `GET /api/v2/eventLogs/{event_log_id}` in Apache Airflow fetched audit-log rows directly by numeric ID after only the generic Audit Log permission check, while the collection endpoint `GET /api/v2/eventLogs` applied per-Dag scoping. An authenticated UI/API user with audit-log read permission for one Dag could retrieve audit-log entries for any other Dag by guessing o…</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-639</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-46764">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Low] CVE-2026-45426 – Exploitation requires the attacker to already be an authenticated Airflow worker...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-45426</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-45426</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:19 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk low">Low</span> CVE-2026-45426</strong></p>
  <p>Exploitation requires the attacker to already be an authenticated Airflow worker holding a valid Log-server JWT issued for at least one Dag. Apache Airflow's Log server authorized JWT tokens against Dag IDs by applying Python's `str.lstrip()` to the requested path segment when verifying the JWT's `sub` claim. `str.lstrip()` strips any of a *set* of characters from the left (not a prefix), so a JW…</p>
  <p><strong>CVSS:</strong> 3.1 · <strong>CWE:</strong> CWE-863</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-45426">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-45360 – Apache Airflow's scheduler-side deadline-reference decoder (`SerializedCustomRef...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-45360</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-45360</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:19 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-45360</strong></p>
  <p>Apache Airflow's scheduler-side deadline-reference decoder (`SerializedCustomReference.deserialize_reference`) imported and dispatched arbitrary class paths drawn from DAG-author-controlled serialized state without an allowlist or plugin-registry gate. A DAG author whose code reaches the scheduler — the default on single-host deployments where the DAG bundle is importable from the scheduler proce…</p>
  <p><strong>CVSS:</strong> 7.3 · <strong>CWE:</strong> CWE-502</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-45360">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-42360 – A bug in Apache Airflow's rendered-template field handling caused nested sensiti...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-42360</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-42360</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:19 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-42360</strong></p>
  <p>A bug in Apache Airflow's rendered-template field handling caused nested sensitive-key masking (e.g. nested `password` / `token` / `secret` / `api_key` keys inside a JSON template structure) to be bypassed when the rendered field exceeded `[core] max_templated_field_length`: Airflow stringified the structure before redaction, losing the nested key context, and persisted the plaintext value into `…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42360">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-42359 – A bug in Apache Airflow's XCom PATCH endpoint `PATCH /api/v2/xcomEntries/{key}` ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-42359</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-42359</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-42359</strong></p>
  <p>A bug in Apache Airflow's XCom PATCH endpoint `PATCH /api/v2/xcomEntries/{key}` allowed an authenticated UI/API user with XCom write permission on a Dag to set XCom entries under reserved key names (e.g. `return_value`) that the matching POST endpoint already validated against `FORBIDDEN_XCOM_KEYS`. The endpoint also accepted serialized payload shapes the triggerer's deserializer treats as code;…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-502</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42359">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-42358 – A bug in Apache Airflow's Variable response masker caused nested-key redaction (...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-42358</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-42358</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-42358</strong></p>
  <p>A bug in Apache Airflow's Variable response masker caused nested-key redaction (triggered by secret-suffixed key names like `password`, `token`, `secret`, `api_key`) to be bypassed when the JSON value's nesting depth exceeded the shared secrets masker's recursion limit: the masker returned the original nested item before checking the sensitive key name. An authenticated UI/API user with Variable…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42358">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2026-42252 – Apache Airflow's official documentation at `core-concepts/dag-run.html` ("Passin...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-42252</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-42252</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2026-42252</strong></p>
  <p>Apache Airflow's official documentation at `core-concepts/dag-run.html` ("Passing Parameters when triggering Dags") showed a verbatim `BashOperator(bash_command="echo value: {{ dag_run.conf['conf1'] }}")` example without any quoting / sanitization warning. Dag authors who copied the pattern verbatim into deployments where users had `Dag.can_trigger` permission on the affected Dag (typical multi-t…</p>
  <p><strong>CVSS:</strong> 9.1 · <strong>CWE:</strong> CWE-1336</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42252">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-41084 – A bug in Apache Airflow's bulk Task Instances API (`PATCH/DELETE /api/v2/dags/{d...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41084</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41084</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-41084</strong></p>
  <p>A bug in Apache Airflow's bulk Task Instances API (`PATCH/DELETE /api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances`) evaluated authorization against the `dag_id` resolved from the URL path while operating on the `dag_id` / `dag_run_id` extracted from request-body entity fields. An authenticated UI/API user with edit permission on one Dag could mutate Task Instance state in any other Dag by…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-639</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41084">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-41017 – Apache Airflow's `JWTRefreshMiddleware` set the JWT auth cookie without the `Sec...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41017</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41017</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-41017</strong></p>
  <p>Apache Airflow's `JWTRefreshMiddleware` set the JWT auth cookie without the `Secure` flag, so deployments running the Airflow API server behind an HTTPS-terminating reverse proxy (e.g. nginx / Envoy / a managed load balancer that terminates TLS and forwards plaintext to the API server, the default cloud-native topology) would have the user's session JWT replayed over any cleartext HTTP request to…</p>
  <p><strong>CVSS:</strong> 5.9 · <strong>CWE:</strong> CWE-614</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41017">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-41014 – The partitioned_dag_runs endpoints in the Airflow UI enforced only asset-level a...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41014</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41014</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-41014</strong></p>
  <p>The partitioned_dag_runs endpoints in the Airflow UI enforced only asset-level access control, not per-Dag authorization. An authenticated UI/API user with global Asset:read permission could enumerate partition run state, schedule configuration, and asset wiring for Dags they were not authorized to read. Affects deployments that rely on per-Dag read scoping while granting users broader Asset acce…</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41014">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Low] CVE-2026-40963 – The structure_data endpoint in the Airflow UI returned external dependency graph...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-40963</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-40963</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk low">Low</span> CVE-2026-40963</strong></p>
  <p>The structure_data endpoint in the Airflow UI returned external dependency graph nodes for linked Dags without checking whether the caller had read permission on those linked Dags. An authenticated UI/API user authorized for one Dag could enumerate linked Dag IDs and dependency metadata for other Dags they were not authorized to read. Affects deployments that rely on per-Dag read scoping to keep…</p>
  <p><strong>CVSS:</strong> 3.1 · <strong>CWE:</strong> CWE-285</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-40963">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-40961 – A bug in the login redirect route in Apache Airflow allowed authenticated users ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-40961</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-40961</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-40961</strong></p>
  <p>A bug in the login redirect route in Apache Airflow allowed authenticated users to craft URLs that bypassed the `is_safe_url` check, enabling redirection from a trusted Airflow domain to an attacker-controlled origin. Users are advised to upgrade to `apache-airflow` 3.2.2 or later. As a defense-in-depth mitigation, deployment operators can place Airflow behind a reverse proxy that strips off-doma…</p>
  <p><strong>CVSS:</strong> 7.2 · <strong>CWE:</strong> CWE-601</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-40961">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-40861 – A Dag author could either (a) create a symlink under their task's log directory ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-40861</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-40861</guid>
    <pubDate>Mon, 01 Jun 2026 09:16:17 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-40861</strong></p>
  <p>A Dag author could either (a) create a symlink under their task's log directory pointing to an arbitrary file readable by the API server process (read-path attack — e.g. `/etc/passwd` or `airflow.cfg`) or (b) supply a `task_id` containing `..` sequences accepted by the Task SDK's `KEY_REGEX` (write-path attack), and in both cases the FileTaskHandler resolves the log path outside the configured `b…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-59</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-40861">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-45192 – A bug in the GET `/api/v2/connections/{connection_id}` REST API endpoint in Apac...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-45192</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-45192</guid>
    <pubDate>Mon, 01 Jun 2026 08:16:20 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-45192</strong></p>
  <p>A bug in the GET `/api/v2/connections/{connection_id}` REST API endpoint in Apache Airflow allowed an authenticated UI/API user with Connection-read permission to retrieve secrets stored in a Connection's `extra` JSON blob under field names not present in the redaction allowlist (`DEFAULT_SENSITIVE_FIELDS`) — for example, official Slack-provider credential field names were returned in plaintext.…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-45192">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-46745 – Apache Airflow FAB Auth Manager contains an LDAP filter injection vulnerability ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-46745</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-46745</guid>
    <pubDate>Mon, 25 May 2026 11:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-46745</strong></p>
  <p>Apache Airflow FAB Auth Manager contains an LDAP filter injection vulnerability (CWE-90) that allows unauthenticated attackers to exfiltrate directory data or bypass authentication. Upgrade to apache-airflow-providers-fab 3.6.4 or later. If immediate upgrade is not possible, disable LDAP authentication until the provider can be updated.</p>
  <p><strong>CVSS:</strong> 5.3 · <strong>CWE:</strong> CWE-90</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-46745">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-45361 – Apache Airflow providers-google's `ComputeEngineSSHHook` disables SSH host-key v...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-45361</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-45361</guid>
    <pubDate>Mon, 25 May 2026 10:16:15 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-45361</strong></p>
  <p>Apache Airflow providers-google's `ComputeEngineSSHHook` disables SSH host-key verification by default, exposing SSH traffic between an Airflow worker and a Compute Engine VM to in-path network attackers who can intercept or modify the session. Users are advised to upgrade to `apache-airflow-providers-google` 22.0.0 or later.</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-322</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-45361">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-42526 – In the AWS Secrets Manager and SSM Parameter Store secrets backends of `apache-a...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-42526</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-42526</guid>
    <pubDate>Tue, 19 May 2026 20:16:19 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-42526</strong></p>
  <p>In the AWS Secrets Manager and SSM Parameter Store secrets backends of `apache-airflow-providers-amazon` prior to 9.28.0, the team-scoping logic could resolve a `conn_id` containing a `/` (e.g. `"my_team/conn"`) to the same path as another team's team-scoped secret when the caller had no team context. A privileged caller without team context could therefore retrieve another team's secret by craft…</p>
  <p><strong>CVSS:</strong> 5.3 · <strong>CWE:</strong> CWE-863</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-42526">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-43826 – The OpenSearch logging provider, when configured with a `host` URL that embeds c...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-43826</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-43826</guid>
    <pubDate>Mon, 11 May 2026 09:16:26 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-43826</strong></p>
  <p>The OpenSearch logging provider, when configured with a `host` URL that embeds credentials (for example `https://user:password@server.example.com:9200`), wrote the full host URL — including the embedded credentials — into task logs. Any user with task-log read permission could harvest the backend credentials. Users are advised to upgrade to `apache-airflow-providers-opensearch` 1.9.1 or later and…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-532</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-43826">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-41018 – The Elasticsearch logging provider, when configured with a `host` URL that embed...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41018</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41018</guid>
    <pubDate>Mon, 11 May 2026 09:16:25 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-41018</strong></p>
  <p>The Elasticsearch logging provider, when configured with a `host` URL that embeds credentials (for example `https://user:password@server.example.com:9200`), wrote the full host URL — including the embedded credentials — into task logs. Any user with task-log read permission could harvest the backend credentials. Users are advised to upgrade to `apache-airflow-providers-elasticsearch` 6.5.3 or lat…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-532</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41018">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-41016 – Apache Airflow's SMTP provider `SmtpHook` called Python's `smtplib.SMTP.starttls...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-41016</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-41016</guid>
    <pubDate>Thu, 30 Apr 2026 10:16:01 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-41016</strong></p>
  <p>Apache Airflow's SMTP provider `SmtpHook` called Python's `smtplib.SMTP.starttls()` without an SSL context, so no certificate validation was performed on the TLS upgrade. A man-in-the-middle between the Airflow worker and the SMTP server could present a self-signed certificate, complete the STARTTLS upgrade, and capture the SMTP credentials sent during the subsequent `login()` call. Users are adv…</p>
  <p><strong>CVSS:</strong> 5.9 · <strong>CWE:</strong> CWE-295</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-41016">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-40948 – The Keycloak authentication manager in `apache-airflow-providers-keycloak` did n...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-40948</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-40948</guid>
    <pubDate>Sat, 18 Apr 2026 14:16:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-40948</strong></p>
  <p>The Keycloak authentication manager in `apache-airflow-providers-keycloak` did not generate or validate the OAuth 2.0 `state` parameter on the login / login-callback flow, and did not use PKCE. An attacker with a Keycloak account in the same realm could deliver a crafted callback URL to a victim's browser and cause the victim to be logged into the attacker's Airflow session (login-CSRF / session…</p>
  <p><strong>CVSS:</strong> 5.4 · <strong>CWE:</strong> CWE-352</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-40948">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Low] CVE-2026-32690 – Secrets in Variables saved as JSON dictionaries were not properly redacted - in ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-32690</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-32690</guid>
    <pubDate>Sat, 18 Apr 2026 07:16:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk low">Low</span> CVE-2026-32690</strong></p>
  <p>Secrets in Variables saved as JSON dictionaries were not properly redacted - in case thee variables were retrieved by the user the secrets stored as nested fields were not masked.  If you do not store variables with sensitive values in JSON form, you are not affected. Otherwise please upgrade to Apache Airflow 3.2.0 that has the fix implemented</p>
  <p><strong>CVSS:</strong> 3.7 · <strong>CWE:</strong> CWE-668</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-32690">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-30912 – In case of SQL errors, exception/stack trace of errors was exposed in API even i...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-30912</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-30912</guid>
    <pubDate>Sat, 18 Apr 2026 07:16:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-30912</strong></p>
  <p>In case of SQL errors, exception/stack trace of errors was exposed in API even if "api/expose_stack_traces" was set to false. That could lead to exposing additional information to potential attacker. Users are recommended to upgrade to Apache Airflow 3.2.0, which fixes the issue.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-668</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-30912">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-25917 – Dag Authors, who normally should not be able to execute code in the webserver co...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-25917</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-25917</guid>
    <pubDate>Sat, 18 Apr 2026 07:16:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-25917</strong></p>
  <p>Dag Authors, who normally should not be able to execute code in the webserver context could craft XCom payload causing the webserver to execute arbitrary code. Since Dag Authors are already highly trusted, severity of this issue is Low.  Users are recommended to upgrade to Apache Airflow 3.2.0, which fixes the issue.</p>
  <p><strong>CVSS:</strong> 7.2 · <strong>CWE:</strong> CWE-502</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-25917">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-33858 – Dag Authors, who normally should not be able to execute code in the webserver co...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-33858</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-33858</guid>
    <pubDate>Mon, 13 Apr 2026 15:17:33 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-33858</strong></p>
  <p>Dag Authors, who normally should not be able to execute code in the webserver context could craft XCom payload causing the webserver to execute arbitrary code. Since Dag Authors are already highly trusted, severity of this issue is Low.   Users are recommended to upgrade to Apache Airflow 3.2.0, which resolves this issue.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-502</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-33858">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-66236 – Before Airflow 3.2.0, it was unclear that secure Airflow deployments require the...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-66236</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-66236</guid>
    <pubDate>Mon, 13 Apr 2026 15:17:05 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-66236</strong></p>
  <p>Before Airflow 3.2.0, it was unclear that secure Airflow deployments require the Deployment Manager to take appropriate actions and pay attention to security details and security model of Airflow. Some assumptions the Deployment Manager could make were not clear or explicit enough, even though Airflow's intentions and security model of Airflow did not suggest different assumptions. The overall se…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-532</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-66236">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-34538 – Apache Airflow versions 3.0.0 through 3.1.8 DagRun wait endpoint returns XCom re...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-34538</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-34538</guid>
    <pubDate>Thu, 09 Apr 2026 10:16:22 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-34538</strong></p>
  <p>Apache Airflow versions 3.0.0 through 3.1.8 DagRun wait endpoint returns XCom result values even to users who only have DAG Run read permissions, such as the Viewer role.This behavior conflicts with the FAB RBAC model, which treats XCom as a separate protected resource, and with the security model documentation that defines the Viewer role as read-only.  Airflow uses the FAB Auth Manager to manag…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-668</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-34538">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-32794 – Improper Certificate Validation vulnerability in Apache Airflow Provider for Dat...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-32794</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-32794</guid>
    <pubDate>Mon, 30 Mar 2026 22:16:18 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-32794</strong></p>
  <p>Improper Certificate Validation vulnerability in Apache Airflow Provider for Databricks. Provider code did not validate certificates for connections to Databricks back-end which could result in a man-of-a-middle attack that traffic is intercepted and manipulated or credentials exfiltrated w/o notice.  This issue affects Apache Airflow Provider for Databricks: from 1.10.0 before 1.12.0.  Users are…</p>
  <p><strong>CVSS:</strong> 4.8 · <strong>CWE:</strong> CWE-295</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-32794">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-30911 – Apache Airflow versions 3.1.0 through 3.1.7 missing authorization vulnerability ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-30911</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-30911</guid>
    <pubDate>Tue, 17 Mar 2026 11:16:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-30911</strong></p>
  <p>Apache Airflow versions 3.1.0 through 3.1.7 missing authorization vulnerability in the Execution API's Human-in-the-Loop (HITL) endpoints that allows any authenticated task instance to read, approve, or reject HITL workflows belonging to any other task instance.   Users are recommended to upgrade to Apache Airflow 3.1.8 or later, which resolves this issue.</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-30911">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2026-28779 – Apache Airflow versions 3.1.0 through 3.1.7 session token (_token) in cookies is...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-28779</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-28779</guid>
    <pubDate>Tue, 17 Mar 2026 11:16:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2026-28779</strong></p>
  <p>Apache Airflow versions 3.1.0 through 3.1.7 session token (_token) in cookies is set to path=/ regardless of the configured [webserver] base_url or [api] base_url. This allows any application co-hosted under the same domain to capture valid Airflow session tokens from HTTP request headers, allowing full session takeover without attacking Airflow itself.  Users are recommended to upgrade to Apache…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-668</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-28779">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-28563 – Apache Airflow versions 3.1.0 through 3.1.7 /ui/dependencies endpoint returns th...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-28563</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-28563</guid>
    <pubDate>Tue, 17 Mar 2026 11:16:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-28563</strong></p>
  <p>Apache Airflow versions 3.1.0 through 3.1.7 /ui/dependencies endpoint returns the full DAG dependency graph without filtering by authorized DAG IDs. This allows an authenticated user with only DAG Dependencies permission to enumerate DAGs they are not authorized to view.   Users are recommended to upgrade to Apache Airflow 3.1.8 or later, which resolves this issue.</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-732</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-28563">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-26929 – Apache Airflow versions 3.0.0 through 3.1.7 FastAPI DagVersion listing API does ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-26929</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-26929</guid>
    <pubDate>Tue, 17 Mar 2026 11:16:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-26929</strong></p>
  <p>Apache Airflow versions 3.0.0 through 3.1.7 FastAPI DagVersion listing API does not apply per-DAG authorization filtering when the request is made with dag_id set to "~" (wildcard for all DAGs). As a result, version metadata of DAGs that the requester is not authorized to access is returned.   Users are recommended to upgrade to Apache Airflow 3.1.8 or later, which resolves this issue.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-732</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-26929">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-24098 – Apache Airflow versions 3.0.0 - 3.1.7, has vulnerability that allows authenticat...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-24098</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-24098</guid>
    <pubDate>Mon, 09 Feb 2026 11:16:14 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-24098</strong></p>
  <p>Apache Airflow versions 3.0.0 - 3.1.7, has vulnerability that allows authenticated UI users with permission to one or more specific Dags to view import errors generated by other Dags they did not have access to.   Users are advised to upgrade to 3.1.7 or later, which resolves this issue</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-24098">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2026-22922 – Apache Airflow versions 3.1.0 through 3.1.6 contain an authorization flaw that c...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2026-22922</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2026-22922</guid>
    <pubDate>Mon, 09 Feb 2026 11:16:13 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2026-22922</strong></p>
  <p>Apache Airflow versions 3.1.0 through 3.1.6 contain an authorization flaw that can allow an authenticated user with custom permissions limited to task access to view task logs without having task log access.   Users are recommended to upgrade to Apache Airflow 3.1.7 or later, which resolves this issue.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-648</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2026-22922">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-68675 – In Apache Airflow versions before 3.1.6, and 2.11.1 the proxies and proxy fields...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-68675</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-68675</guid>
    <pubDate>Fri, 16 Jan 2026 11:16:03 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-68675</strong></p>
  <p>In Apache Airflow versions before 3.1.6, and 2.11.1 the proxies and proxy fields within a Connection may include proxy URLs containing embedded authentication information. These fields were not treated as sensitive by default and therefore were not automatically masked in log output. As a result, when such connections are rendered or printed to logs, proxy credentials embedded in these fields cou…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-532</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-68675">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-68438 – In Apache Airflow versions before 3.1.6, when rendered template fields in a Dag ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-68438</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-68438</guid>
    <pubDate>Fri, 16 Jan 2026 11:16:03 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-68438</strong></p>
  <p>In Apache Airflow versions before 3.1.6, when rendered template fields in a Dag exceed [core] max_templated_field_length, sensitive values could be exposed in cleartext in the Rendered Templates UI. This occurred because serialization of those fields used a secrets masker instance that did not include user-registered mask_secret() patterns, so secrets were not reliably masked before truncation an…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-68438">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-67895 – Edge3 Worker RPC RCE on Airflow 2.

This issue affects Apache Airflow Providers ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-67895</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-67895</guid>
    <pubDate>Wed, 17 Dec 2025 12:15:46 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-67895</strong></p>
  <p>Edge3 Worker RPC RCE on Airflow 2.  This issue affects Apache Airflow Providers Edge3: before 2.0.0 - and only if you installed and configured it on Airflow 2.    The Edge3 provider support in Airflow 2 has been always development-only and not officially released, however if you installed and configured Edge3 provider in Airflow 2, it implicitly enabled non-public (normally) API which was used to…</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-669</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-67895">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2025-66388 – A vulnerability in Apache Airflow allowed authenticated UI users to view secret ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-66388</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-66388</guid>
    <pubDate>Mon, 15 Dec 2025 12:15:40 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2025-66388</strong></p>
  <p>A vulnerability in Apache Airflow allowed authenticated UI users to view secret values in rendered templates due to secrets not being properly redacted, potentially exposing secrets to users without the appropriate authorization.  Users are recommended to upgrade to version 3.1.4, which fixes this issue.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-201</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-66388">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2025-54831 – Apache Airflow 3 introduced a change to the handling of sensitive information in...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-54831</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-54831</guid>
    <pubDate>Fri, 26 Sep 2025 08:15:38 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2025-54831</strong></p>
  <p>Apache Airflow 3 introduced a change to the handling of sensitive information in Connections. The intent was to restrict access to sensitive connection fields to Connection Editing Users, effectively applying a "write-only" model for sensitive values.   In Airflow 3.0.3, this model was unintentionally violated: sensitive connection information could be viewed by users with READ permissions throug…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-213</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-54831">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-54415 – dag-factory is a library for Apache Airflow® to construct DAGs declaratively via...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-54415</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-54415</guid>
    <pubDate>Sat, 26 Jul 2025 04:16:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-54415</strong></p>
  <p>dag-factory is a library for Apache Airflow® to construct DAGs declaratively via configuration files. In versions 0.23.0a8 and below, a high-severity vulnerability has been identified in the cicd.yml workflow within the astronomer/dag-factory GitHub repository. The workflow, specifically when triggered by pull_request_target, is susceptible to exploitation, allowing an attacker to execute arbitra…</p>
  <p><strong>CVSS:</strong> 9.1 · <strong>CWE:</strong> CWE-78</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-54415">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2025-50213 – Failure to Sanitize Special Elements into a Different Plane (Special Element Inj...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-50213</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-50213</guid>
    <pubDate>Tue, 24 Jun 2025 08:15:24 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2025-50213</strong></p>
  <p>Failure to Sanitize Special Elements into a Different Plane (Special Element Injection) vulnerability in Apache Airflow Providers Snowflake.  This issue affects Apache Airflow Providers Snowflake: before 6.4.0.  Sanitation of table and stage parameters were added in CopyFromExternalStageToSnowflakeOperator to prevent SQL injection Users are recommended to upgrade to version 6.4.0, which fixes the…</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-75</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-50213">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2025-30473 – Improper Neutralization of Special Elements used in an SQL Command ('SQL Injecti...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-30473</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-30473</guid>
    <pubDate>Mon, 07 Apr 2025 09:15:16 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2025-30473</strong></p>
  <p>Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Apache Airflow Common SQL Provider.  When using the partition clause in SQLTableCheckOperator as parameter (which was a recommended pattern), Authenticated UI User could inject arbitrary SQL command when triggering DAG exposing partition_clause to the user. This allowed the DAG Triggering user to…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-89</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-30473">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2025-27018 – Improper Neutralization of Special Elements used in an SQL Command ('SQL Injecti...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2025-27018</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2025-27018</guid>
    <pubDate>Wed, 19 Mar 2025 09:15:14 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2025-27018</strong></p>
  <p>Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Apache Airflow MySQL Provider.  When user triggered a DAG with dump_sql or load_sql functions they could pass a table parameter from a UI, that could cause SQL injection by running SQL that was not intended. It could lead to data corruption, modification and others. This issue affects Apache Airf…</p>
  <p><strong>CVSS:</strong> 6.3 · <strong>CWE:</strong> CWE-89</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2025-27018">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-45033 – Insufficient Session Expiration vulnerability in Apache Airflow Fab Provider.

T...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-45033</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-45033</guid>
    <pubDate>Wed, 08 Jan 2025 09:15:07 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-45033</strong></p>
  <p>Insufficient Session Expiration vulnerability in Apache Airflow Fab Provider.  This issue affects Apache Airflow Fab Provider: before 1.5.2.  When user password has been changed with admin CLI, the sessions for that user have not been cleared, leading to insufficient session expiration, thus logged users could continue to be logged in even after the password was changed. This only happened when t…</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-613</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-45033">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-45784 – Apache Airflow versions before 2.10.3 contain a vulnerability that could expose ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-45784</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-45784</guid>
    <pubDate>Fri, 15 Nov 2024 09:15:14 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-45784</strong></p>
  <p>Apache Airflow versions before 2.10.3 contain a vulnerability that could expose sensitive configuration variables in task logs. This vulnerability allows DAG authors to unintentionally or intentionally log sensitive configuration variables. Unauthorized users could access these logs, potentially exposing critical data that could be exploited to compromise the security of the Airflow deployment. I…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-1295</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-45784">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-45498 – Example DAG: example_inlet_event_extra.py shipped with Apache Airflow version 2...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-45498</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-45498</guid>
    <pubDate>Sat, 07 Sep 2024 08:15:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-45498</strong></p>
  <p>Example DAG: example_inlet_event_extra.py shipped with Apache Airflow version 2.10.0 has a vulnerability that allows an authenticated attacker with only DAG trigger permission to execute arbitrary commands. If you used that example as the base of your DAGs - please review if you have not copied the dangerous example; see  https://github.com/apache/airflow/pull/41873  for more information. We reco…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-116</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-45498">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-45034 – Apache Airflow versions before 2.10.1 have a vulnerability that allows DAG autho...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-45034</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-45034</guid>
    <pubDate>Sat, 07 Sep 2024 08:15:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-45034</strong></p>
  <p>Apache Airflow versions before 2.10.1 have a vulnerability that allows DAG authors to add local settings to the DAG folder and get it executed by the scheduler, where the scheduler is not supposed to execute code submitted by the DAG author.  Users are advised to upgrade to version 2.10.1 or later, which has fixed the vulnerability.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-250</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-45034">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-41937 – Apache Airflow, versions before 2.10.0, have a vulnerability that allows the dev...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-41937</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-41937</guid>
    <pubDate>Wed, 21 Aug 2024 16:15:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-41937</strong></p>
  <p>Apache Airflow, versions before 2.10.0, have a vulnerability that allows the developer of a malicious provider to execute a cross-site scripting attack when clicking on a provider documentation link. This would require the provider to be installed on the web server and the user to click the provider link. Users should upgrade to 2.10.0 or later, which fixes this vulnerability.</p>
  <p><strong>CVSS:</strong> 6.1 · <strong>CWE:</strong> CWE-79</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-41937">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2024-42447 – Insufficient Session Expiration vulnerability in Apache Airflow Providers FAB.

...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-42447</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-42447</guid>
    <pubDate>Mon, 05 Aug 2024 08:15:56 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2024-42447</strong></p>
  <p>Insufficient Session Expiration vulnerability in Apache Airflow Providers FAB.  This issue affects Apache Airflow Providers FAB: 1.2.1 (when used with Apache Airflow 2.9.3) and FAB 1.2.0 for all Airflow versions. The FAB provider prevented the user from logging out.    * FAB provider 1.2.1 only affected Airflow 2.9.3 (earlier and later versions of Airflow are not affected)  * FAB provider 1.2.0 a…</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-613</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-42447">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-39877 – Apache Airflow 2.4.0, and versions before 2.9.3, has a vulnerability that allows...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-39877</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-39877</guid>
    <pubDate>Wed, 17 Jul 2024 08:15:02 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-39877</strong></p>
  <p>Apache Airflow 2.4.0, and versions before 2.9.3, has a vulnerability that allows authenticated DAG authors to craft a doc_md parameter in a way that could execute arbitrary code in the scheduler context, which should be forbidden according to the Airflow Security model. Users should upgrade to version 2.9.3 or later which has removed the vulnerability.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-94</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-39877">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-39863 – Apache Airflow versions before 2.9.3 have a vulnerability that allows an authent...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-39863</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-39863</guid>
    <pubDate>Wed, 17 Jul 2024 08:15:01 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-39863</strong></p>
  <p>Apache Airflow versions before 2.9.3 have a vulnerability that allows an authenticated attacker to inject a malicious link when installing a provider. Users are recommended to upgrade to version 2.9.3, which fixes this issue.</p>
  <p><strong>CVSS:</strong> 5.4 · <strong>CWE:</strong> CWE-79</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-39863">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-25142 – Use of Web Browser Cache Containing Sensitive Information vulnerability in Apach...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-25142</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-25142</guid>
    <pubDate>Fri, 14 Jun 2024 09:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-25142</strong></p>
  <p>Use of Web Browser Cache Containing Sensitive Information vulnerability in Apache Airflow.   Airflow did not return "Cache-Control" header for dynamic content, which in case of some browsers could result in potentially storing sensitive data in local cache of the browser.  This issue affects Apache Airflow: before 2.9.2.  Users are recommended to upgrade to version 2.9.2, which fixes the issue.</p>
  <p><strong>CVSS:</strong> 5.5 · <strong>CWE:</strong> CWE-525</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-25142">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-32077 – Apache Airflow version 2.9.0 has a vulnerability that allows an authenticated at...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-32077</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-32077</guid>
    <pubDate>Tue, 14 May 2024 16:17:01 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-32077</strong></p>
  <p>Apache Airflow version 2.9.0 has a vulnerability that allows an authenticated attacker to inject malicious data into the task instance logs.  Users are recommended to upgrade to version 2.9.1, which fixes this issue.</p>
  <p><strong>CVSS:</strong> 5.4 · <strong>CWE:</strong> CWE-79</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-32077">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Low] CVE-2024-29733 – Improper Certificate Validation vulnerability in Apache Airflow FTP Provider.

T...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-29733</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-29733</guid>
    <pubDate>Sun, 21 Apr 2024 18:15:45 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk low">Low</span> CVE-2024-29733</strong></p>
  <p>Improper Certificate Validation vulnerability in Apache Airflow FTP Provider.  The FTP hook lacks complete certificate validation in FTP_TLS connections, which can potentially be leveraged. Implementing proper certificate validation by passing context=ssl.create_default_context() during FTP_TLS instantiation is used as mitigation to validate the certificates properly.  This issue affects Apache A…</p>
  <p><strong>CVSS:</strong> 2.7 · <strong>CWE:</strong> CWE-295</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-29733">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-29735 – Improper Preservation of Permissions vulnerability in Apache Airflow.This issue ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-29735</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-29735</guid>
    <pubDate>Tue, 26 Mar 2024 17:15:47 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-29735</strong></p>
  <p>Improper Preservation of Permissions vulnerability in Apache Airflow.This issue affects Apache Airflow from 2.8.2 through 2.8.3.  Airflow's local file task handler in Airflow incorrectly set permissions for all parent folders of log folder, in default configuration adding write access to Unix group of the folders. In the case Airflow is run with the root user (not recommended) it added group writ…</p>
  <p><strong>CVSS:</strong> 5.3 · <strong>CWE:</strong> CWE-281</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-29735">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2024-28746 – Apache Airflow, versions 2.8.0 through 2.8.2, has a vulnerability that allows an...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-28746</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-28746</guid>
    <pubDate>Thu, 14 Mar 2024 09:15:47 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2024-28746</strong></p>
  <p>Apache Airflow, versions 2.8.0 through 2.8.2, has a vulnerability that allows an authenticated user with limited permissions to access resources such as variables, connections, etc from the UI which they do not have permission to access.   Users of Apache Airflow are recommended to upgrade to version 2.8.3 or newer to mitigate the risk associated with this vulnerability</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-281</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-28746">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-26280 – Apache Airflow, versions before 2.8.2, has a vulnerability that allows authentic...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-26280</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-26280</guid>
    <pubDate>Fri, 01 Mar 2024 11:15:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-26280</strong></p>
  <p>Apache Airflow, versions before 2.8.2, has a vulnerability that allows authenticated Ops and Viewers users to view all information on audit logs, including dag names and usernames they were not permitted to view. With 2.8.2 and newer, Ops and Viewer users do not have audit log permission by default, they need to be explicitly granted permissions to see the logs. Only admin users have audit log pe…</p>
  <p><strong>CVSS:</strong> 4.7 · <strong>CWE:</strong> CWE-276</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-26280">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2024-27906 – Apache Airflow, versions before 2.8.2, has a vulnerability that allows authentic...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2024-27906</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2024-27906</guid>
    <pubDate>Thu, 29 Feb 2024 11:15:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2024-27906</strong></p>
  <p>Apache Airflow, versions before 2.8.2, has a vulnerability that allows authenticated users to view DAG code and import errors of DAGs they do not have permission to view through the API and the UI.  Users of Apache Airflow are recommended to upgrade to version 2.8.2 or newer to mitigate the risk associated with this vulnerability</p>
  <p><strong>CVSS:</strong> 5.9 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2024-27906">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-50944 – Apache Airflow, versions before 2.8.1, have a vulnerability that allows an authe...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-50944</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-50944</guid>
    <pubDate>Wed, 24 Jan 2024 13:15:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-50944</strong></p>
  <p>Apache Airflow, versions before 2.8.1, have a vulnerability that allows an authenticated user to access the source code of a DAG to which they don't have access. This vulnerability is considered low since it requires an authenticated user to exploit it. Users are recommended to upgrade to version 2.8.1, which fixes this issue.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-862</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-50944">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-50943 – Apache Airflow, versions before 2.8.1, have a vulnerability that allows a potent...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-50943</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-50943</guid>
    <pubDate>Wed, 24 Jan 2024 13:15:07 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-50943</strong></p>
  <p>Apache Airflow, versions before 2.8.1, have a vulnerability that allows a potential attacker to poison the XCom data by bypassing the protection of "enable_xcom_pickling=False" configuration setting resulting in poisoned data after XCom deserialization. This vulnerability is considered low since it requires a DAG author to exploit it. Users are recommended to upgrade to version 2.8.1 or later, wh…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-502</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-50943">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-50783 – Apache Airflow, versions before 2.8.0, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-50783</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-50783</guid>
    <pubDate>Thu, 21 Dec 2023 10:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-50783</strong></p>
  <p>Apache Airflow, versions before 2.8.0, is affected by a vulnerability that allows an authenticated user without the variable edit permission, to update a variable. This flaw compromises the integrity of variable management, potentially leading to unauthorized data modification. Users are recommended to upgrade to 2.8.0, which fixes this issue</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-284</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-50783">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-49920 – Apache Airflow, version 2.7.0 through 2.7.3, has a vulnerability that allows an ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-49920</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-49920</guid>
    <pubDate>Thu, 21 Dec 2023 10:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-49920</strong></p>
  <p>Apache Airflow, version 2.7.0 through 2.7.3, has a vulnerability that allows an attacker to trigger a DAG in a GET request without CSRF validation. As a result, it was possible for a malicious website opened in the same browser - by the user who also had Airflow UI opened - to trigger the execution of DAGs without the user's consent. Users are advised to upgrade to version 2.8.0 or later which is…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-352</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-49920">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-48291 – Apache Airflow, in versions prior to 2.8.0, contains a security vulnerability th...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-48291</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-48291</guid>
    <pubDate>Thu, 21 Dec 2023 10:15:36 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-48291</strong></p>
  <p>Apache Airflow, in versions prior to 2.8.0, contains a security vulnerability that allows an authenticated user with limited access to some DAGs, to craft a request that could give the user write access to various DAG resources for DAGs that the user had no access to, thus, enabling the user to clear DAGs they shouldn't.  This is a missing fix for CVE-2023-42792 in Apache Airflow 2.7.2   Users of…</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-668</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-48291">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-47265 – Apache Airflow, versions 2.6.0 through 2.7.3 has a stored XSS vulnerability that...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-47265</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-47265</guid>
    <pubDate>Thu, 21 Dec 2023 10:15:35 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-47265</strong></p>
  <p>Apache Airflow, versions 2.6.0 through 2.7.3 has a stored XSS vulnerability that allows a DAG author to add an unbounded and not-sanitized javascript in the parameter description field of the DAG. This Javascript can be executed on the client side of any of the user who looks at the tasks in the browser sandbox. While this issue does not allow to exit the browser sandbox or manipulation of the se…</p>
  <p><strong>CVSS:</strong> 5.4 · <strong>CWE:</strong> CWE-79</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-47265">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-47037 – We failed to apply CVE-2023-40611 in 2.7.1 and this vulnerability was marked as ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-47037</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-47037</guid>
    <pubDate>Sun, 12 Nov 2023 14:15:25 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-47037</strong></p>
  <p>We failed to apply CVE-2023-40611 in 2.7.1 and this vulnerability was marked as fixed then.   Apache Airflow, versions before 2.7.3, is affected by a vulnerability that allows authenticated and DAG-view authorized Users to modify some DAG run detail values when submitting notes. This could have them alter details such as configuration parameters, start date, etc.   Users should upgrade to version…</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-863</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-47037">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-42781 – Apache Airflow, versions before 2.7.3, has a vulnerability that allows an author...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-42781</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-42781</guid>
    <pubDate>Sun, 12 Nov 2023 14:15:25 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-42781</strong></p>
  <p>Apache Airflow, versions before 2.7.3, has a vulnerability that allows an authorized user who has access to read specific DAGs only, to read information about task instances in other DAGs.  This is a different issue than CVE-2023-42663 but leading to similar outcome. Users of Apache Airflow are advised to upgrade to version 2.7.3 or newer to mitigate the risk associated with this vulnerability.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-42781">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-46215 – Insertion of Sensitive Information into Log File vulnerability in Apache Airflow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-46215</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-46215</guid>
    <pubDate>Sat, 28 Oct 2023 08:15:07 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-46215</strong></p>
  <p>Insertion of Sensitive Information into Log File vulnerability in Apache Airflow Celery provider, Apache Airflow.  Sensitive information logged as clear text when rediss, amqp, rpc protocols are used as Celery result backend Note: the vulnerability is about the information exposed in the logs not about accessing the logs.  This issue affects Apache Airflow Celery provider: from 3.3.0 through 3.4.…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-532</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-46215">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-46288 – Exposure of Sensitive Information to an Unauthorized Actor vulnerability in Apac...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-46288</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-46288</guid>
    <pubDate>Mon, 23 Oct 2023 19:15:11 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-46288</strong></p>
  <p>Exposure of Sensitive Information to an Unauthorized Actor vulnerability in Apache Airflow.This issue affects Apache Airflow from 2.4.0 to 2.7.0.  Sensitive configuration information has been exposed to authenticated users with the ability to read configuration via Airflow REST API for configuration even when the expose_config option is set to non-sensitive-only. The expose_config option is False…</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-46288">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-45348 – Apache Airflow, versions 2.7.0 and 2.7.1, is affected by a vulnerability that al...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-45348</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-45348</guid>
    <pubDate>Sat, 14 Oct 2023 10:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-45348</strong></p>
  <p>Apache Airflow, versions 2.7.0 and 2.7.1, is affected by a vulnerability that allows an authenticated user to retrieve sensitive configuration information when the "expose_config" option is set to "non-sensitive-only". The `expose_config` option is False by default. It is recommended to upgrade to a version that is not affected.</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45348">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-42792 – Apache Airflow, in versions prior to 2.7.2, contains a security vulnerability th...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-42792</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-42792</guid>
    <pubDate>Sat, 14 Oct 2023 10:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-42792</strong></p>
  <p>Apache Airflow, in versions prior to 2.7.2, contains a security vulnerability that allows an authenticated user with limited access to some DAGs, to craft a request that could give the user write access to various DAG resources for DAGs that the user had no access to, thus, enabling the user to clear DAGs they shouldn't.  Users of Apache Airflow are strongly advised to upgrade to version 2.7.2 or…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-668</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-42792">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-42780 – Apache Airflow, versions prior to 2.7.2, contains a security vulnerability that ...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-42780</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-42780</guid>
    <pubDate>Sat, 14 Oct 2023 10:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-42780</strong></p>
  <p>Apache Airflow, versions prior to 2.7.2, contains a security vulnerability that allows authenticated users of Airflow to list warnings for all DAGs, even if the user had no permission to see those DAGs. It would reveal the dag_ids and the stack-traces of import errors for those DAGs with import errors. Users of Apache Airflow are advised to upgrade to version 2.7.2 or newer to mitigate the risk a…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-42780">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-42663 – Apache Airflow, versions before 2.7.2, has a vulnerability that allows an author...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-42663</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-42663</guid>
    <pubDate>Sat, 14 Oct 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-42663</strong></p>
  <p>Apache Airflow, versions before 2.7.2, has a vulnerability that allows an authorized user who has access to read specific DAGs only, to read information about task instances in other DAGs. Users of Apache Airflow are advised to upgrade to version 2.7.2 or newer to mitigate the risk associated with this vulnerability.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-42663">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-41267 – In the Apache Airflow HDFS Provider, versions prior to 4.1.1, a documentation in...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-41267</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-41267</guid>
    <pubDate>Thu, 14 Sep 2023 08:15:07 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-41267</strong></p>
  <p>In the Apache Airflow HDFS Provider, versions prior to 4.1.1, a documentation info pointed users to an install incorrect pip package. As this package name was unclaimed, in theory, an attacker could claim this package and provide code that would be executed when this package was installed. The Airflow team has since taken ownership of the package (neutralizing the risk), and fixed the doc strings…</p>
  <p><strong>CVSS:</strong> 7.8 · <strong>CWE:</strong> CWE-829</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-41267">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-40712 – Apache Airflow, versions before 2.7.1, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-40712</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-40712</guid>
    <pubDate>Tue, 12 Sep 2023 12:15:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-40712</strong></p>
  <p>Apache Airflow, versions before 2.7.1, is affected by a vulnerability that allows authenticated users who have access to see the task/dag in the UI, to craft a URL, which could lead to unmasking the secret configuration of the task that otherwise would be masked in the UI.  Users are strongly advised to upgrade to version 2.7.1 or later which has removed the vulnerability.</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-40712">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-40611 – Apache Airflow, versions before 2.7.1, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-40611</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-40611</guid>
    <pubDate>Tue, 12 Sep 2023 12:15:08 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-40611</strong></p>
  <p>Apache Airflow, versions before 2.7.1, is affected by a vulnerability that allows authenticated and DAG-view authorized Users to modify some DAG run detail values when submitting notes. This could have them alter details such as configuration parameters, start date, etc.  Users should upgrade to version 2.7.1 or later which has removed the vulnerability.</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-863</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-40611">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-40195 – Deserialization of Untrusted Data, Inclusion of Functionality from Untrusted Con...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-40195</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-40195</guid>
    <pubDate>Mon, 28 Aug 2023 08:15:14 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-40195</strong></p>
  <p>Deserialization of Untrusted Data, Inclusion of Functionality from Untrusted Control Sphere vulnerability in Apache Software Foundation Apache Airflow Spark Provider.  When the Apache Spark provider is installed on an Airflow deployment, an Airflow user that is authorized to configure Spark hooks can effectively run arbitrary code on the Airflow node by pointing it at a malicious Spark server. Pr…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-502</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-40195">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-27604 – Apache Airflow Sqoop Provider, versions before 4.0.0, is affected by a vulnerabi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-27604</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-27604</guid>
    <pubDate>Mon, 28 Aug 2023 08:15:14 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-27604</strong></p>
  <p>Apache Airflow Sqoop Provider, versions before 4.0.0, is affected by a vulnerability that allows an attacker pass parameters with the connections, which makes it possible to implement RCE attacks via ‘sqoop import --connect’, obtain airflow server permissions, etc. The attacker needs to be logged in and have authorization (permissions) to create/edit connections.   It is recommended to upgrade to…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-27604">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-40273 – The session fixation vulnerability allowed the authenticated user to continue ac...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-40273</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-40273</guid>
    <pubDate>Wed, 23 Aug 2023 16:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-40273</strong></p>
  <p>The session fixation vulnerability allowed the authenticated user to continue accessing Airflow webserver even after the password of the user has been reset by the admin - up until the expiry of the session of the user. Other than manually cleaning the session database (for database session backend), or changing the secure_key and restarting the webserver, there were no mechanisms to force-logout…</p>
  <p><strong>CVSS:</strong> 8.0 · <strong>CWE:</strong> CWE-384</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-40273">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-39441 – Apache Airflow SMTP Provider before 1.3.0, Apache Airflow IMAP Provider before 3...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-39441</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-39441</guid>
    <pubDate>Wed, 23 Aug 2023 16:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-39441</strong></p>
  <p>Apache Airflow SMTP Provider before 1.3.0, Apache Airflow IMAP Provider before 3.3.0, and Apache Airflow before 2.7.0 are affected by the Validation of OpenSSL Certificate vulnerability.  The default SSL context with SSL library did not check a server's X.509 certificate.  Instead, the code accepted any certificate, which could result in the disclosure of mail server credentials or mail contents…</p>
  <p><strong>CVSS:</strong> 5.9 · <strong>CWE:</strong> CWE-295</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-39441">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-37379 – Apache Airflow, in versions prior to 2.7.0, contains a security vulnerability th...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-37379</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-37379</guid>
    <pubDate>Wed, 23 Aug 2023 16:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-37379</strong></p>
  <p>Apache Airflow, in versions prior to 2.7.0, contains a security vulnerability that can be exploited by an authenticated user possessing Connection edit privileges. This vulnerability allows the user to access connection information and exploit the test connection feature by sending many requests, leading to a denial of service (DoS) condition on the server. Furthermore, malicious actors can lever…</p>
  <p><strong>CVSS:</strong> 8.1 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-37379">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-40272 – Apache Airflow Spark Provider, versions before 4.1.3, is affected by a vulnerabi...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-40272</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-40272</guid>
    <pubDate>Thu, 17 Aug 2023 14:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-40272</strong></p>
  <p>Apache Airflow Spark Provider, versions before 4.1.3, is affected by a vulnerability that allows an attacker to pass in malicious parameters when establishing a connection giving an opportunity to read files on the Airflow server. It is recommended to upgrade to a version that is not affected.</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-40272">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-39553 – Improper Input Validation vulnerability in Apache Software Foundation Apache Air...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-39553</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-39553</guid>
    <pubDate>Fri, 11 Aug 2023 08:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-39553</strong></p>
  <p>Improper Input Validation vulnerability in Apache Software Foundation Apache Airflow Drill Provider.  Apache Airflow Drill Provider is affected by a vulnerability that allows an attacker to pass in malicious parameters when establishing a connection with DrillHook giving an opportunity to read files on the Airflow server. This issue affects Apache Airflow Drill Provider: before 2.4.3. It is recom…</p>
  <p><strong>CVSS:</strong> 7.5 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-39553">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-39508 – Execution with Unnecessary Privileges, : Exposure of Sensitive Information to an...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-39508</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-39508</guid>
    <pubDate>Sat, 05 Aug 2023 07:15:43 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-39508</strong></p>
  <p>Execution with Unnecessary Privileges, : Exposure of Sensitive Information to an Unauthorized Actor vulnerability in Apache Software Foundation Apache Airflow.The "Run Task" feature enables authenticated user to bypass some of the restrictions put in place. It allows to execute code in the webserver context as well as allows to bypas limitation of access the user has to certain DAGs. The "Run Tas…</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-39508">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-37415 – Improper Input Validation vulnerability in Apache Software Foundation Apache Air...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-37415</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-37415</guid>
    <pubDate>Thu, 13 Jul 2023 08:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-37415</strong></p>
  <p>Improper Input Validation vulnerability in Apache Software Foundation Apache Airflow Apache Hive Provider.  Patching on top of CVE-2023-35797 Before 6.1.2 the proxy_user option can also inject semicolon.  This issue affects Apache Airflow Apache Hive Provider: before 6.1.2.  It is recommended updating provider version to 6.1.2 in order to avoid this vulnerability.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-37415">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-36543 – Apache Airflow, versions before 2.6.3, has a vulnerability where an authenticate...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-36543</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-36543</guid>
    <pubDate>Wed, 12 Jul 2023 10:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-36543</strong></p>
  <p>Apache Airflow, versions before 2.6.3, has a vulnerability where an authenticated user can use crafted input to make the current request hang. It is recommended to upgrade to a version that is not affected</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-1333</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-36543">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-35908 – Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-35908</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-35908</guid>
    <pubDate>Wed, 12 Jul 2023 10:15:10 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-35908</strong></p>
  <p>Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allows unauthorized read access to a DAG through the URL. It is recommended to upgrade to a version that is not affected</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-863</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-35908">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-22888 – Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-22888</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-22888</guid>
    <pubDate>Wed, 12 Jul 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-22888</strong></p>
  <p>Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allows an attacker to cause a service disruption by manipulating the run_id parameter. This vulnerability is considered low since it requires an authenticated user to exploit it. It is recommended to upgrade to a version that is not affected</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-22888">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-22887 – Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-22887</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-22887</guid>
    <pubDate>Wed, 12 Jul 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-22887</strong></p>
  <p>Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allows an attacker to perform unauthorized file access outside the intended directory structure by manipulating the run_id parameter. This vulnerability is considered low since it requires an authenticated user to exploit it. It is recommended to upgrade to a version that is not affected</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-22</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-22887">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2022-46651 – Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allow...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2022-46651</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2022-46651</guid>
    <pubDate>Wed, 12 Jul 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2022-46651</strong></p>
  <p>Apache Airflow, versions before 2.6.3, is affected by a vulnerability that allows an unauthorized actor to gain access to sensitive information in Connection edit view. This vulnerability is considered low since it requires someone with access to Connection resources specifically updating the connection to exploit it. Users should upgrade to version 2.6.3 or later which has removed the vulnerabil…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2022-46651">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2023-35797 – Improper Input Validation vulnerability in Apache Software Foundation Apache Air...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-35797</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-35797</guid>
    <pubDate>Mon, 03 Jul 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2023-35797</strong></p>
  <p>Improper Input Validation vulnerability in Apache Software Foundation Apache Airflow Hive Provider. This issue affects Apache Airflow Apache Hive Provider: before 6.1.1.  Before version 6.1.1 it was possible to bypass the security check to RCE via principal parameter. For this to be exploited it requires access to modifying the connection details.  It is recommended updating provider version to 6…</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-35797">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-22886 – Improper Input Validation vulnerability in Apache Software Foundation Apache Air...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-22886</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-22886</guid>
    <pubDate>Thu, 29 Jun 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-22886</strong></p>
  <p>Improper Input Validation vulnerability in Apache Software Foundation Apache Airflow JDBC Provider. Airflow JDBC Provider Connection’s [Connection URL] parameters had no restrictions, which made it possible to implement RCE attacks via different type JDBC drivers, obtain airflow server permission. This issue affects Apache Airflow JDBC Provider: before 4.0.0.</p>
  <p><strong>CVSS:</strong> 8.8 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-22886">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-35798 – Input Validation vulnerability in Apache Software Foundation Apache Airflow ODBC...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-35798</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-35798</guid>
    <pubDate>Tue, 27 Jun 2023 12:15:13 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-35798</strong></p>
  <p>Input Validation vulnerability in Apache Software Foundation Apache Airflow ODBC Provider, Apache Software Foundation Apache Airflow MSSQL Provider.This vulnerability is considered low since it requires DAG code to use `get_sqlalchemy_connection` and someone with access to connection resources specifically updating the connection to exploit it.  This issue affects Apache Airflow ODBC Provider: be…</p>
  <p><strong>CVSS:</strong> 4.3 · <strong>CWE:</strong> CWE-20</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-35798">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-34395 – Improper Neutralization of Argument Delimiters in a Command ('Argument Injection...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-34395</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-34395</guid>
    <pubDate>Tue, 27 Jun 2023 12:15:13 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-34395</strong></p>
  <p>Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') vulnerability in Apache Software Foundation Apache Airflow ODBC Provider. In OdbcHook, A privilege escalation vulnerability exists in a system due to controllable ODBC driver parameters that allow the loading of arbitrary dynamic-link libraries, resulting in command execution. Starting version 4.0.0 driver can be s…</p>
  <p><strong>CVSS:</strong> 7.8 · <strong>CWE:</strong> CWE-88</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-34395">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-35005 – In Apache Airflow, some potentially sensitive values were being shown to the use...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-35005</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-35005</guid>
    <pubDate>Mon, 19 Jun 2023 09:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-35005</strong></p>
  <p>In Apache Airflow, some potentially sensitive values were being shown to the user in certain situations.  This vulnerability is mitigated by the fact configuration is not shown in the UI by default (only if `[webserver] expose_config` is set to `non-sensitive-only`), and not all uncensored values are actually sentitive.   This issue affects Apache Airflow: from 2.5.0 before 2.6.2. Users are recom…</p>
  <p><strong>CVSS:</strong> 6.5 · <strong>CWE:</strong> CWE-200</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-35005">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[High] CVE-2023-33234 – Arbitrary code execution in Apache Airflow CNCF Kubernetes provider version 5.0...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-33234</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-33234</guid>
    <pubDate>Tue, 30 May 2023 11:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk high">High</span> CVE-2023-33234</strong></p>
  <p>Arbitrary code execution in Apache Airflow CNCF Kubernetes provider version 5.0.0 allows user to change xcom sidecar image and resources via Airflow connection.  In order to exploit this weakness, a user would already need elevated permissions (Op or Admin) to change the connection object in this manner.  Operators should upgrade to provider version 7.0.0 which has removed the vulnerability.</p>
  <p><strong>CVSS:</strong> 7.2 · <strong>CWE:</strong> CWE-74</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-33234">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Critical] CVE-2023-25754 – Privilege Context Switching Error vulnerability in Apache Software Foundation Ap...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-25754</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-25754</guid>
    <pubDate>Mon, 08 May 2023 12:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk critical">Critical</span> CVE-2023-25754</strong></p>
  <p>Privilege Context Switching Error vulnerability in Apache Software Foundation Apache Airflow.This issue affects Apache Airflow: before 2.6.0.</p>
  <p><strong>CVSS:</strong> 9.8 · <strong>CWE:</strong> CWE-270</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-25754">View on NVD</a></p>
]]>
    </description>
  </item>
  <item>
    <title>[Medium] CVE-2023-29247 – Task instance details page in the UI is vulnerable to a stored XSS.This issue af...</title>
    <link>https://nvd.nist.gov/vuln/detail/CVE-2023-29247</link>
    <guid isPermaLink="true">https://nvd.nist.gov/vuln/detail/CVE-2023-29247</guid>
    <pubDate>Mon, 08 May 2023 10:15:09 +0000</pubDate>
    <description>
<![CDATA[
  <p><strong><span class="badge risk medium">Medium</span> CVE-2023-29247</strong></p>
  <p>Task instance details page in the UI is vulnerable to a stored XSS.This issue affects Apache Airflow: before 2.6.0.</p>
  <p><strong>CVSS:</strong> 5.4 · <strong>CWE:</strong> CWE-79</p>
  <p><a href="https://nvd.nist.gov/vuln/detail/CVE-2023-29247">View on NVD</a></p>
]]>
    </description>
  </item>
</channel>
</rss>
