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-2020-8559

CVE-2020-8559: Kubernetes Privilege Escalation Vulnerability

CVE-2020-8559 is a privilege escalation vulnerability in Kubernetes kube-apiserver that allows attackers to escalate from node compromise to full cluster compromise. This post covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-8559 Overview

CVE-2020-8559 is an unvalidated redirect vulnerability in the Kubernetes kube-apiserver that affects multiple versions of Kubernetes. The vulnerability exists in proxied upgrade requests, where an attacker who has already compromised a node can exploit the unvalidated redirect to escalate privileges from node-level access to full cluster compromise.

Critical Impact

An attacker with node-level access can leverage this vulnerability to escalate privileges and gain complete control over the entire Kubernetes cluster, potentially compromising all workloads and sensitive data across the cluster.

Affected Products

  • Kubernetes versions v1.6 through v1.15 (all releases)
  • Kubernetes versions prior to v1.16.13
  • Kubernetes versions prior to v1.17.9
  • Kubernetes versions prior to v1.18.6

Discovery Timeline

  • 2020-07-22 - CVE-2020-8559 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-8559

Vulnerability Analysis

This vulnerability stems from an unvalidated redirect condition (CWE-601) in the Kubernetes kube-apiserver's handling of proxied upgrade requests. When the kube-apiserver proxies certain requests to backend services or nodes, it fails to properly validate redirect responses. This allows an attacker who has compromised a node to intercept and manipulate these redirect responses, ultimately tricking the kube-apiserver into making requests to arbitrary destinations.

The attack scenario requires the attacker to first gain control of a node within the Kubernetes cluster. Once node-level access is achieved, the attacker can intercept proxied requests from the kube-apiserver and respond with malicious redirect responses. Because the kube-apiserver does not validate these redirects, it follows them blindly, potentially sending authenticated requests to attacker-controlled endpoints or other cluster components.

Root Cause

The root cause of this vulnerability is the lack of proper validation of redirect responses in the kube-apiserver's proxy handling code. When processing upgrade requests (such as those used for kubectl exec, kubectl attach, or other streaming connections), the kube-apiserver trusts redirect responses from nodes without verifying that the redirect target is a legitimate and expected destination. This trust relationship allows a compromised node to abuse the redirect mechanism.

Attack Vector

The attack requires network access and involves the following sequence:

  1. The attacker first compromises a Kubernetes node through a separate vulnerability or misconfiguration
  2. With node-level access, the attacker positions themselves to intercept communications from the kube-apiserver
  3. When a legitimate user or service initiates a proxied upgrade request (e.g., kubectl exec), the attacker intercepts the request at the node level
  4. The attacker responds with a crafted redirect response pointing to a sensitive cluster endpoint or another node
  5. The kube-apiserver follows the redirect, sending authenticated requests to the attacker-specified target
  6. This allows the attacker to access resources and execute commands beyond their initial node-level scope, achieving full cluster compromise

The vulnerability requires high privileges (node compromise) and user interaction (a legitimate user must trigger a proxied request), but the potential impact is severe as it enables complete cluster takeover.

Detection Methods for CVE-2020-8559

Indicators of Compromise

  • Unusual redirect responses in kube-apiserver proxy logs indicating unexpected destination targets
  • Anomalous network traffic patterns from the kube-apiserver to unexpected endpoints within the cluster
  • Evidence of node compromise such as unauthorized processes, modified kubelet configurations, or suspicious container activity
  • Unexpected kubectl exec or kubectl attach session behaviors or failures

Detection Strategies

  • Monitor kube-apiserver audit logs for proxied requests that result in redirects to unexpected destinations
  • Implement network monitoring to detect unusual traffic patterns from the control plane to worker nodes
  • Deploy runtime security monitoring on all nodes to detect signs of node compromise
  • Review Kubernetes audit logs for suspicious exec, attach, and portforward operations

Monitoring Recommendations

  • Enable comprehensive Kubernetes audit logging with focus on proxy-related events and exec/attach operations
  • Implement alerting on kube-apiserver errors or warnings related to redirect handling
  • Deploy network segmentation and monitor east-west traffic within the cluster for anomalies
  • Use SentinelOne Singularity for Cloud to continuously monitor Kubernetes workloads and detect suspicious behavior indicative of compromise

How to Mitigate CVE-2020-8559

Immediate Actions Required

  • Upgrade Kubernetes to version v1.16.13, v1.17.9, v1.18.6, or later immediately
  • Review all nodes for signs of compromise before and after patching
  • Implement network policies to restrict communication paths within the cluster
  • Audit cluster access and ensure least-privilege principles are enforced

Patch Information

Kubernetes has released patched versions that address this vulnerability. Organizations should upgrade to the following minimum versions:

  • Kubernetes v1.16.x users: Upgrade to v1.16.13 or later
  • Kubernetes v1.17.x users: Upgrade to v1.17.9 or later
  • Kubernetes v1.18.x users: Upgrade to v1.18.6 or later

For detailed patch information, refer to the Kubernetes GitHub Issue #92914 and the Kubernetes Security Announcement.

Workarounds

  • Implement strict network policies to limit which endpoints the kube-apiserver can reach
  • Restrict access to kubectl exec, kubectl attach, and similar privileged operations using RBAC
  • Deploy additional monitoring on nodes to detect and respond to compromise attempts quickly
  • Consider using admission controllers to limit the scope and frequency of proxied requests
bash
# Example: Restrict exec/attach permissions via RBAC
# Create a ClusterRole that denies exec access
kubectl create clusterrole no-exec \
  --verb=create \
  --resource=pods/exec \
  --dry-run=client -o yaml | \
  sed 's/verbs:/verbs: []/g' > restricted-exec-role.yaml

# Apply network policy to restrict kube-apiserver egress
kubectl apply -f - <<EOF
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: restrict-apiserver-egress
  namespace: kube-system
spec:
  podSelector:
    matchLabels:
      component: kube-apiserver
  policyTypes:
  - Egress
  egress:
  - to:
    - namespaceSelector: {}
    ports:
    - protocol: TCP
      port: 10250
EOF

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechKubernetes

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability59.83%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-601
  • Technical References
  • Kubernetes Security Announcement

  • NetApp Security Advisory ntap-20200810-0004
  • Vendor Resources
  • GitHub Issue #92914
  • Related CVEs
  • CVE-2024-9486: Kubernetes Image Builder Privilege Escalation

  • CVE-2025-7342: Kubernetes Image Builder Privilege Escalation

  • CVE-2025-5187: Kubernetes Privilege Escalation Vulnerability

  • CVE-2023-3893: Kubernetes CSI Proxy Privilege Escalation
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