Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2020-8562

CVE-2020-8562: Kubernetes Auth Bypass Vulnerability

CVE-2020-8562 is an authentication bypass vulnerability in Kubernetes that allows attackers to circumvent proxy IP restrictions and access private control plane networks. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 4, 2026

CVE-2020-8562 Overview

CVE-2020-8562 is a DNS rebinding vulnerability in Kubernetes that allows authenticated users to bypass network proxy restrictions and potentially access private networks on the control plane. This vulnerability exists due to a Time-of-Check Time-of-Use (TOCTOU) race condition in how Kubernetes validates DNS resolution responses.

As mitigations to a prior 2019 report and CVE-2020-8555, Kubernetes implements protections to prevent proxied connections from accessing link-local (169.254.0.0/16) or localhost (127.0.0.0/8) networks when making user-driven connections to Services, Pods, Nodes, or StorageClass service providers. However, the implementation performs DNS name resolution twice: once for validation and once for the actual connection. A non-standard DNS server returning different non-cached responses can enable attackers to bypass these restrictions.

Critical Impact

Authenticated users with certain privileges can bypass network proxy IP restrictions and access private networks on the Kubernetes control plane, potentially exposing sensitive internal services.

Affected Products

  • Kubernetes versions prior to patched releases
  • Kubernetes 1.21.0
  • All Kubernetes deployments using proxied connections with non-standard DNS configurations

Discovery Timeline

  • 2022-02-01 - CVE CVE-2020-8562 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-8562

Vulnerability Analysis

This vulnerability is classified as CWE-367 (Time-of-Check Time-of-Use), a race condition vulnerability that occurs when Kubernetes performs two separate DNS resolution operations without proper synchronization. The root cause lies in the architectural decision to validate DNS responses separately from the actual connection establishment.

When a user initiates a proxied connection to Services, Pods, Nodes, or StorageClass service providers, Kubernetes first resolves the DNS name and validates that the resulting IP addresses are not within restricted ranges (link-local 169.254.0.0/16 or localhost 127.0.0.0/8). If the validation passes, Kubernetes then performs a second DNS resolution to establish the actual connection. This creates a window of opportunity for exploitation.

The attack requires network-level access and an authenticated user with low privileges. Additionally, the attacker must have control over or access to a malicious DNS server that can return different IP addresses for consecutive queries to the same hostname.

Root Cause

The fundamental issue is the TOCTOU race condition in the DNS validation logic. Kubernetes treats DNS resolution as a stateless operation but relies on the assumption that the same hostname will resolve to the same IP address between the validation check and the actual connection. This assumption breaks down when dealing with DNS servers that implement DNS rebinding or return non-cached, varying responses.

The validation step correctly blocks restricted IP ranges, but the second unvalidated DNS lookup for the actual connection can return a different IP address pointing to localhost or link-local addresses, effectively bypassing the security controls.

Attack Vector

The attack exploits the gap between DNS validation and connection establishment. An attacker with authenticated access to the Kubernetes API can craft requests that target a hostname controlled by a malicious DNS server. The attack proceeds as follows:

  1. The attacker sets up or leverages a DNS server configured to return alternating IP addresses
  2. On the first query (validation), the DNS server returns a legitimate, non-restricted IP
  3. Kubernetes validates this IP and approves the connection request
  4. On the second query (connection), the DNS server returns a restricted IP (e.g., 127.0.0.1 or 169.254.x.x)
  5. Kubernetes establishes a connection to the restricted address, bypassing the intended security controls

This technique, commonly known as DNS rebinding, allows attackers to access internal services on the control plane that would otherwise be inaccessible through normal API interactions.

Detection Methods for CVE-2020-8562

Indicators of Compromise

  • Unusual DNS query patterns showing the same hostname resolving to different IP addresses in rapid succession
  • API server logs showing proxied connections to link-local or localhost addresses
  • Unexpected network traffic originating from the API server to internal addresses (127.0.0.0/8 or 169.254.0.0/16)
  • Audit logs indicating user-driven connections to Services, Pods, or Nodes with suspicious hostnames

Detection Strategies

  • Monitor Kubernetes API server audit logs for unusual proxy connection patterns to internal services
  • Implement DNS query logging and analyze for potential rebinding attacks targeting Kubernetes infrastructure
  • Deploy network monitoring to detect unexpected connections from control plane components to localhost or link-local addresses
  • Review authentication and authorization logs for privileged operations involving proxied connections

Monitoring Recommendations

  • Enable comprehensive Kubernetes audit logging to capture all proxy-related API calls
  • Configure DNS logging on cluster DNS servers to identify suspicious resolution patterns
  • Implement network segmentation monitoring to detect lateral movement attempts within the control plane
  • Establish baseline network behavior for control plane components and alert on deviations

How to Mitigate CVE-2020-8562

Immediate Actions Required

  • Review the Kubernetes Security Announcement for specific patching guidance
  • Audit cluster access to ensure only trusted users have permissions that allow proxied connections
  • Review DNS infrastructure for non-standard configurations that could enable rebinding attacks
  • Implement network policies to restrict control plane outbound connections

Patch Information

Organizations should consult the official Kubernetes GitHub Issue for detailed information on available patches and affected versions. The NetApp Security Advisory also provides guidance for environments using NetApp products with Kubernetes.

Apply patches according to your Kubernetes version:

  • Upgrade to the latest patched version of your Kubernetes release branch
  • Review release notes for security fixes related to proxy connection handling

Workarounds

  • Implement network segmentation to isolate the Kubernetes control plane from sensitive internal networks
  • Use network policies to block outbound connections from API servers to localhost and link-local ranges at the infrastructure level
  • Deploy a trusted DNS resolver that does not support non-cached varying responses for the same hostname
  • Restrict user permissions to minimize the number of users who can initiate proxied connections
bash
# Example network policy to restrict control plane outbound connections
# Apply at infrastructure/firewall level
# Block API server connections to restricted IP ranges:
# - Block 127.0.0.0/8 (localhost)
# - Block 169.254.0.0/16 (link-local)
# Consult your network infrastructure documentation for specific implementation

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechKubernetes

  • SeverityLOW

  • CVSS Score3.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-367
  • Technical References
  • Kubernetes Security Announcement

  • NetApp Security Advisory
  • Vendor Resources
  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2023-2728: Kubernetes Auth Bypass Vulnerability

  • CVE-2024-3177: Kubernetes Auth Bypass Vulnerability

  • CVE-2023-1944: Kubernetes Minikube Auth Bypass Vulnerability

  • CVE-2023-1260: Kubernetes Kube-apiserver Auth Bypass Flaw
Default Legacy - Prefooter | 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