The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-26055

CVE-2026-26055: Yoke ATC Auth Bypass Vulnerability

CVE-2026-26055 is an authentication bypass vulnerability in Yoke Air Traffic Controller that allows unauthorized pods to execute WASM modules without proper authorization. This article covers technical details, affected versions, and mitigations.

Published: February 13, 2026

CVE-2026-26055 Overview

CVE-2026-26055 is an authentication bypass vulnerability affecting the Air Traffic Controller (ATC) component of Yoke, a Helm-inspired infrastructure-as-code (IaC) package deployer. The ATC webhook endpoints lack proper authentication mechanisms, allowing any pod within the cluster network to directly send AdmissionReview requests to the webhook, bypassing Kubernetes API Server authentication. This enables attackers to trigger WASM module execution in the ATC controller context without proper authorization.

Critical Impact

Unauthorized pods can bypass Kubernetes API Server authentication and trigger arbitrary WASM module execution in the ATC controller context, potentially compromising the integrity of infrastructure deployments.

Affected Products

  • Yoke version 0.19.0 and earlier
  • Air Traffic Controller (ATC) component
  • Yoke deployments with ATC webhook endpoints exposed within cluster networks

Discovery Timeline

  • February 12, 2026 - CVE-2026-26055 published to NVD
  • February 12, 2026 - Last updated in NVD database

Technical Details for CVE-2026-26055

Vulnerability Analysis

This vulnerability is classified under CWE-306 (Missing Authentication for Critical Function). The Air Traffic Controller component in Yoke serves as a Kubernetes admission webhook that processes AdmissionReview requests. Normally, these requests should originate exclusively from the Kubernetes API Server, which handles authentication and authorization before forwarding requests.

The root issue is that the ATC webhook endpoints accept and process AdmissionReview requests from any source within the cluster network without verifying that the request originated from the Kubernetes API Server. This architectural flaw means that any pod with network access to the ATC service can craft and submit AdmissionReview requests directly, completely bypassing the intended authentication flow.

Root Cause

The vulnerability stems from missing authentication mechanisms on the ATC webhook endpoints. The implementation assumes that only the Kubernetes API Server will send requests to these endpoints, without implementing any verification of the request source. This violates the principle of defense in depth, as the webhook should independently verify that incoming requests are legitimate regardless of network-level controls.

Attack Vector

An attacker who has compromised any pod within the cluster network, or who can deploy a malicious pod, can exploit this vulnerability through the following attack flow:

  1. The attacker identifies the ATC webhook service endpoint within the cluster
  2. The attacker crafts a malicious AdmissionReview request with arbitrary admission data
  3. The request is sent directly to the ATC webhook, bypassing the Kubernetes API Server
  4. The ATC controller processes the request and executes the associated WASM module
  5. The attacker achieves unauthorized code execution in the ATC controller context

This is a network-based attack vector that requires no user interaction and can be executed with low complexity. The impact is primarily to the integrity of the system, as attackers can trigger unauthorized WASM module execution.

Detection Methods for CVE-2026-26055

Indicators of Compromise

  • Unexpected AdmissionReview requests originating from pods other than the Kubernetes API Server
  • Unusual WASM module execution patterns in ATC controller logs
  • Network connections to the ATC webhook service from non-kube-apiserver sources

Detection Strategies

  • Monitor network traffic to ATC webhook endpoints and alert on connections from sources other than the Kubernetes API Server
  • Implement audit logging for all AdmissionReview requests processed by the ATC controller
  • Deploy network policies that restrict access to the ATC webhook service and alert on policy violations
  • Review ATC controller logs for unusual request patterns or unexpected WASM module executions

Monitoring Recommendations

  • Enable detailed request logging on the ATC webhook service to capture source IP addresses and request metadata
  • Set up alerting for any AdmissionReview requests that don't match expected Kubernetes API Server characteristics
  • Monitor for new or unexpected pods attempting to communicate with the ATC service

How to Mitigate CVE-2026-26055

Immediate Actions Required

  • Review cluster network policies and restrict network access to the ATC webhook endpoints to only the Kubernetes API Server
  • Audit existing deployments for signs of exploitation
  • Consider temporarily disabling the ATC component if not critical to operations until a patch is applied
  • Implement Kubernetes NetworkPolicies to limit pod-to-pod communication with the ATC service

Patch Information

For the latest patch information and security updates, refer to the GitHub Security Advisory (GHSA-965m-v4cc-6334). Organizations should upgrade Yoke to a version newer than 0.19.0 once a patched version becomes available.

Workarounds

  • Implement Kubernetes NetworkPolicies to restrict which pods can communicate with the ATC webhook service
  • Configure network segmentation to isolate the ATC webhook endpoints from general cluster traffic
  • Consider implementing a service mesh with mutual TLS (mTLS) to authenticate traffic to the ATC webhook
  • Deploy an authentication proxy in front of the ATC webhook to verify request sources
yaml
# Example NetworkPolicy to restrict access to ATC webhook
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: atc-webhook-restrict
  namespace: yoke-system
spec:
  podSelector:
    matchLabels:
      app: atc-webhook
  policyTypes:
    - Ingress
  ingress:
    - from:
        - namespaceSelector:
            matchLabels:
              kubernetes.io/metadata.name: kube-system
          podSelector:
            matchLabels:
              component: kube-apiserver
      ports:
        - protocol: TCP
          port: 443

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechYoke

  • SeverityHIGH

  • CVSS Score7.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-26056: Yoke IaC Package Deployer RCE Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English