{"id":52566,"date":"2026-05-08T13:40:34","date_gmt":"2026-05-08T13:40:34","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=52566"},"modified":"2026-05-08T13:40:34","modified_gmt":"2026-05-08T13:40:34","slug":"apache-airflow-databricks-provider-certificate-verification-bypass","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=52566","title":{"rendered":"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:04:09&#8243;,&#8221;description&#8221;:&#8221;The Apache Airflow Databricks Provider package disables TLS certificate verification when communicating with the Kubernetes API server during federated token exchange. Both the synchronous and asynchronous code paths use verify=False \/ ssl=False,&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-08T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-08T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220578&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-32794&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-32794: TLS Certificate Verification Bypass in Apache Airflow Databricks Provider\\n    \\n    [![CVE](https:\/\/img.shields.io\/badge\/CVE&#8211;2026&#8211;32794-orange)](https:\/\/www.cve.org\/CVERecord?id=CVE-2026-32794)\\n    [![Platform](https:\/\/img.shields.io\/badge\/Platform-pip-blue)](https:\/\/pypi.org\/project\/apache-airflow-providers-databricks\/)\\n    [![CWE](https:\/\/img.shields.io\/badge\/CWE&#8211;295-Improper%20Certificate%20Validation-purple)](https:\/\/cwe.mitre.org\/data\/definitions\/295.html)\\n    \\n    **Keywords:** TLS, certificate verification, MITM, Kubernetes, Databricks, OAuth, CWE-295, Apache Airflow\\n    \\n    &#8212;\\n    \\n    ## Table of Contents\\n    \\n    &#8211; [Overview](#overview)\\n    &#8211; [Vulnerability Details](#vulnerability-details)\\n    &#8211; [Technical Analysis](#technical-analysis)\\n    &#8211; [Attack Chain](#attack-chain)\\n    &#8211; [Impact](#impact)\\n    &#8211; [Remediation](#remediation)\\n    &#8211; [Timeline](#timeline)\\n    &#8211; [References](#references)\\n    &#8211; [Contact](#contact)\\n    &#8211; [Disclaimer](#disclaimer)\\n    \\n    &#8212;\\n    \\n    ## Overview\\n    \\n    The [apache-airflow-providers-databricks](https:\/\/github.com\/apache\/airflow) package disables TLS certificate verification when communicating with the Kubernetes API server during federated token exchange. Both the synchronous and asynchronous code paths use `verify=False` \/ `ssl=False`, allowing any attacker with network access within the K8s cluster to MITM the connection and steal both the in-cluster service account JWT and the Databricks OAuth token.\\n    \\n    The code comments claim \\&#8221;K8s in-cluster uses self-signed certs,\\&#8221; but this is incorrect. Kubernetes provides a CA bundle at `\/var\/run\/secrets\/kubernetes.io\/serviceaccount\/ca.crt` specifically for this purpose.\\n    \\n    &#8212;\\n    \\n    ## Vulnerability Details\\n    \\n    | Field | Value |\\n    |&#8212;&#8212;-|&#8212;&#8212;-|\\n    | **CVE** | [CVE-2026-32794](https:\/\/www.cve.org\/CVERecord?id=CVE-2026-32794) |\\n    | **CWE** | [CWE-295: Improper Certificate Validation](https:\/\/cwe.mitre.org\/data\/definitions\/295.html) |\\n    | **Package** | apache-airflow-providers-databricks (pip) |\\n    | **Affected Versions** | All versions with K8s token exchange |\\n    | **Patched Version** | Pending ([PR #63704](https:\/\/github.com\/apache\/airflow\/pull\/63704)) |\\n    | **Component** | `providers\/databricks\/src\/airflow\/providers\/databricks\/hooks\/databricks_base.py` |\\n    \\n    &#8212;\\n    \\n    ## Technical Analysis\\n    \\n    ### Vulnerable Code\\n    \\n    **Line 699 (sync path) &#8211; `_get_k8s_token_request_api()`:**\\n    \\n    &#8220;`python\\n    resp = requests.post(\\n        token_request_url,\\n        headers={\\n            \\&#8221;Authorization\\&#8221;: f\\&#8221;Bearer {in_cluster_token}\\&#8221;,\\n            \\&#8221;Content-Type\\&#8221;: \\&#8221;application\/json\\&#8221;,\\n        },\\n        json=self._build_k8s_token_request_payload(audience, expiration_seconds),\\n        verify=False,  # K8s in-cluster uses self-signed certs\\n        timeout=self.token_timeout_seconds,\\n    )\\n    &#8220;`\\n    \\n    **Line 764 (async path) &#8211; `_a_get_k8s_token_request_api()`:**\\n    \\n    &#8220;`python\\n    async with self._session.post(\\n        token_request_url,\\n        &#8230;\\n        ssl=False,  # K8s in-cluster uses self-signed certs\\n    )\\n    &#8220;`\\n    \\n    ### The Core Issue\\n    \\n    The comment says \\&#8221;K8s in-cluster uses self-signed certs\\&#8221; but Kubernetes provides a trusted CA bundle at a well-known path. The correct approach is to use that CA bundle for verification rather than disabling TLS entirely.\\n    \\n    ### Secure Pattern\\n    \\n    &#8220;`python\\n    K8S_CA_CERT_PATH = \\&#8221;\/var\/run\/secrets\/kubernetes.io\/serviceaccount\/ca.crt\\&#8221;\\n    \\n    # Sync\\n    resp = requests.post(token_request_url, &#8230;, verify=K8S_CA_CERT_PATH)\\n    \\n    # Async\\n    ssl_ctx = ssl.create_default_context(cafile=K8S_CA_CERT_PATH)\\n    async with self._session.post(token_request_url, &#8230;, ssl=ssl_ctx)\\n    &#8220;`\\n    \\n    &#8212;\\n    \\n    ## Attack Chain\\n    \\n    &#8220;`\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+\\n    |  1. ATTACKER GAINS POD ACCESS                            |\\n    |     Compromised container or network namespace access     |\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+\\n                                |\\n                                v\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+\\n    |  2. MITM THE TOKEN EXCHANGE                              |\\n    |     ARP spoof \/ DNS hijack within cluster network         |\\n    |     Serve self-signed cert (accepted due to verify=False) |\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+\\n                                |\\n                                v\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+\\n    |  3. INTERCEPT CREDENTIALS                                |\\n    |     &#8211; K8s service account JWT (Authorization header)      |\\n    |     &#8211; Databricks OAuth token (response body)              |\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+\\n                                |\\n                                v\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+\\n    |  4. LATERAL MOVEMENT                                     |\\n    |     Use stolen tokens for K8s API + Databricks access     |\\n    +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+\\n    &#8220;`\\n    \\n    &#8212;\\n    \\n    ## Impact\\n    \\n    | Aspect | Description |\\n    |&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;-|\\n    | **Direct Impact** | MITM interception of K8s JWT and Databricks OAuth tokens |\\n    | **Attack Surface** | Any pod within the same cluster network |\\n    | **Credential Theft** | Both K8s service account and Databricks tokens exposed |\\n    | **Lateral Movement** | Stolen tokens enable access to both K8s API and Databricks workspace |\\n    | **Affected Users** | Any Airflow deployment using Databricks provider with K8s token exchange |\\n    \\n    &#8212;\\n    \\n    ## Remediation\\n    \\n    **Fix PR:** [apache\/airflow#63704](https:\/\/github.com\/apache\/airflow\/pull\/63704)\\n    \\n    The fix replaces `verify=False` with `verify=K8S_CA_CERT_PATH` using the standard Kubernetes in-cluster CA bundle, and replaces `ssl=False` with a properly configured SSL context.\\n    \\n    &#8212;\\n    \\n    ## Timeline\\n    \\n    | Date | Event |\\n    |&#8212;&#8212;|&#8212;&#8212;-|\\n    | 2026-03-15 | Vulnerability reported to security@airflow.apache.org |\\n    | 2026-03-15 | Jarek Potiuk (Airflow committer) acknowledged the report |\\n    | 2026-03-16 | CVE-2026-32794 allocated; fix PR #63704 opened |\\n    \\n    &#8212;\\n    \\n    ## References\\n    \\n    &#8211; [CVE-2026-32794](https:\/\/www.cve.org\/CVERecord?id=CVE-2026-32794)\\n    &#8211; [Fix PR: apache\/airflow#63704](https:\/\/github.com\/apache\/airflow\/pull\/63704)\\n    &#8211; [CWE-295: Improper Certificate Validation](https:\/\/cwe.mitre.org\/data\/definitions\/295.html)\\n    &#8211; [Apache Airflow Security Policy](https:\/\/github.com\/apache\/airflow\/security\/policy)\\n    \\n    &#8212;\\n    \\n    ## Contact\\n    \\n    &#8211; **Website:** [snailsploit.com](https:\/\/snailsploit.com)\\n    &#8211; **GitHub:** [@SnailSploit](https:\/\/github.com\/SnailSploit)\\n    &#8211; **LinkedIn:** [\/in\/kaiaizen](https:\/\/linkedin.com\/in\/kaiaizen)\\n    \\n    &#8212;\\n    \\n    ## Disclaimer\\n    \\n    This advisory is published for educational and defensive purposes under responsible disclosure principles. The information provided is intended to help developers and security teams understand and remediate the vulnerability. Do not use this information for unauthorized testing or malicious purposes.\\n    \\n    \\u003c!&#8211; snailsploit-backlink:start &#8211;\\u003e\\n    \\n    &#8212;\\n    \\n    ## \ud83d\udcda Documentation \\u0026 Author\\n    \\n    This project&#8217;s full writeup, methodology, and related research lives at:\\n    \\n    **[https:\/\/snailsploit.com\/cves](https:\/\/snailsploit.com\/cves)**\\n    \\n    Created by **Kai Aizen** \u2014 independent offensive security researcher.\\n    \\n    [snailsploit.com](https:\/\/snailsploit.com) \u00b7 [Research](https:\/\/snailsploit.com\/research) \u00b7 [Frameworks](https:\/\/snailsploit.com\/frameworks) \u00b7 [GitHub](https:\/\/github.com\/SnailSploit) \u00b7 [LinkedIn](https:\/\/linkedin.com\/in\/kaiaizen) \u00b7 [ResearchGate](https:\/\/www.researchgate.net\/profile\/Kai-Aizen-2) \u00b7 [X\/Twitter](https:\/\/x.com\/SnailSploit)\\n    \\n    \\u003e *Same attack. Different substrate.*\\n    \\n    \\u003c!&#8211; snailsploit-backlink:end &#8211;\\u003e&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/220578&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:4.8,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:H\/PR:N\/UI:N\/S:U\/C:L\/I:L\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/220578\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:04:09&#8243;,&#8221;description&#8221;:&#8221;The Apache Airflow Databricks Provider package disables TLS certificate verification when communicating with the Kubernetes API server during federated token exchange. Both the synchronous and&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,75,12,21,13,53,7,11,5],"class_list":["post-52566","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-48","tag-exploit","tag-medium","tag-news","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=52566\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:04:09&#8243;,&#8221;description&#8221;:&#8221;The Apache Airflow Databricks Provider package disables TLS certificate verification when communicating with the Kubernetes API server during federated token exchange. Both the synchronous and...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=52566\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-08T13:40:34+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578\",\"datePublished\":\"2026-05-08T13:40:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566\"},\"wordCount\":1208,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-4.8\",\"exploit\",\"MEDIUM\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=52566#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566\",\"name\":\"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-08T13:40:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=52566\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52566#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=52566","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:04:09&#8243;,&#8221;description&#8221;:&#8221;The Apache Airflow Databricks Provider package disables TLS certificate verification when communicating with the Kubernetes API server during federated token exchange. Both the synchronous and...","og_url":"https:\/\/zero.redgem.net\/?p=52566","og_site_name":"zero redgem","article_published_time":"2026-05-08T13:40:34+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=52566#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=52566"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578","datePublished":"2026-05-08T13:40:34+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=52566"},"wordCount":1208,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-4.8","exploit","MEDIUM","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=52566#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=52566","url":"https:\/\/zero.redgem.net\/?p=52566","name":"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-08T13:40:34+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=52566#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=52566"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=52566#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Apache Airflow Databricks Provider Certificate Verification Bypass_PACKETSTORM:220578"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/52566","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=52566"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/52566\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=52566"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=52566"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=52566"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}