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-8554

CVE-2020-8554: Kubernetes Privilege Escalation Vulnerability

CVE-2020-8554 is a privilege escalation vulnerability in Kubernetes that allows attackers to intercept traffic by manipulating ClusterIP or LoadBalancer services. This article covers technical details, impact, and mitigation.

Published: March 11, 2026

CVE-2020-8554 Overview

CVE-2020-8554 is a man-in-the-middle vulnerability affecting all versions of Kubernetes. An attacker with the ability to create a ClusterIP service and set the spec.externalIPs field can intercept traffic destined for that IP address within the cluster. Additionally, an attacker who can patch the status of a LoadBalancer service (a privileged operation that should not typically be granted to users) can set status.loadBalancer.ingress.ip to achieve a similar traffic interception effect.

Critical Impact

Authenticated attackers can intercept cluster network traffic by manipulating Kubernetes service configurations, potentially compromising sensitive data in transit and enabling further lateral movement within the cluster.

Affected Products

  • Kubernetes (all versions)
  • Oracle Communications Cloud Native Core Network Slice Selection Function 1.2.1
  • Oracle Communications Cloud Native Core Policy 1.15.0
  • Oracle Communications Cloud Native Core Service Communication Proxy 1.14.0

Discovery Timeline

  • 2021-01-21 - CVE-2020-8554 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-8554

Vulnerability Analysis

This vulnerability represents a fundamental design issue in how Kubernetes handles service IP configurations. The Kubernetes API server fails to adequately restrict the ability of authenticated users to configure external IP addresses on ClusterIP services. When a user creates or modifies a service with arbitrary values in spec.externalIPs, the Kubernetes networking layer routes traffic destined for those IP addresses to the attacker-controlled service.

The attack is particularly dangerous because it can be executed by any user with permissions to create or modify services, which is a common permission in many Kubernetes deployments. The vulnerability enables man-in-the-middle attacks against any IP address that cluster nodes can route to, including external services and internal infrastructure components.

Root Cause

The root cause is classified under CWE-283 (Unverified Ownership). Kubernetes does not verify that a user or service legitimately owns or controls the external IP addresses they specify in service configurations. This lack of ownership verification allows any authenticated user with service creation privileges to claim arbitrary IP addresses, effectively hijacking network traffic.

The design assumes trusted users within the cluster, but this assumption fails in multi-tenant environments or when service accounts are compromised. There is no built-in validation to prevent users from specifying IP addresses belonging to critical infrastructure, external services, or other tenants.

Attack Vector

The attack is network-based and requires low-privilege access to the Kubernetes API. An attacker needs only the ability to create or modify Kubernetes services, which is often granted to application developers and service accounts. The attack flow involves:

  1. The attacker identifies a target IP address they wish to intercept traffic for
  2. The attacker creates a ClusterIP service with spec.externalIPs containing the target IP
  3. Kubernetes configures iptables/IPVS rules to route traffic for that IP to the malicious service
  4. Traffic from pods and nodes in the cluster destined for the target IP is redirected to the attacker's service
  5. The attacker can inspect, modify, or drop the intercepted traffic

For LoadBalancer services, the attacker requires the additional privilege to patch service status, which is typically a more restricted operation. However, if obtained, setting status.loadBalancer.ingress.ip achieves the same traffic interception capability.

Detection Methods for CVE-2020-8554

Indicators of Compromise

  • Services created with spec.externalIPs pointing to internal infrastructure IPs or well-known external service IPs
  • Unexpected modifications to LoadBalancer service status fields by non-cloud-controller service accounts
  • Audit log entries showing service creation or modification with external IP specifications by unusual principals
  • Network traffic anomalies where expected external destinations are resolving to cluster-internal endpoints

Detection Strategies

  • Enable Kubernetes audit logging and monitor for CREATE/UPDATE operations on Service resources that include spec.externalIPs or status.loadBalancer.ingress modifications
  • Deploy admission controllers (such as OPA Gatekeeper or Kyverno) with policies that alert on or block services with externalIPs configurations
  • Implement network monitoring to detect traffic pattern changes where external IP traffic is unexpectedly routed internally
  • Review RBAC configurations to identify principals with excessive service creation or status patching privileges

Monitoring Recommendations

  • Configure SentinelOne Singularity Cloud Workload Protection to monitor Kubernetes API server activity for suspicious service configurations
  • Set up alerts for any service creation containing spec.externalIPs in production namespaces
  • Monitor kube-proxy and CNI plugin logs for unexpected iptables or IPVS rule changes
  • Implement network segmentation monitoring to detect traffic flows that deviate from expected patterns

How to Mitigate CVE-2020-8554

Immediate Actions Required

  • Audit all existing Kubernetes services for spec.externalIPs configurations and validate their legitimacy
  • Implement admission controller policies to restrict or block the use of spec.externalIPs on services
  • Review and tighten RBAC policies to limit service creation and status patching privileges to trusted principals
  • Enable Kubernetes audit logging if not already configured to track service modifications

Patch Information

This vulnerability is a design limitation in Kubernetes rather than a traditional bug. As such, there is no direct patch that fixes the issue. Kubernetes has introduced the DenyServiceExternalIPs admission plugin in later versions, which can be enabled to block services from specifying external IPs. Additionally, Oracle has released patches for affected Oracle Communications Cloud Native Core products as documented in:

  • Oracle Security Alert July 2021
  • Oracle Security Alert January 2022
  • Oracle Security Alert April 2022

For detailed technical information, see the Kubernetes Security Announcement and GitHub Issue #97076.

Workarounds

  • Enable the DenyServiceExternalIPs admission plugin by adding it to the API server --enable-admission-plugins flag
  • Deploy OPA Gatekeeper or Kyverno policies to deny services with spec.externalIPs unless explicitly approved
  • Use network policies to restrict egress traffic and limit the impact of potential traffic interception
  • Consider using a service mesh with mutual TLS to protect traffic even if routing is manipulated
bash
# Enable DenyServiceExternalIPs admission plugin
# Add to kube-apiserver command line arguments:
--enable-admission-plugins=DenyServiceExternalIPs,NodeRestriction,PodSecurityPolicy

# Example Kyverno ClusterPolicy to block externalIPs
# Save as deny-external-ips.yaml and apply with kubectl
# apiVersion: kyverno.io/v1
# kind: ClusterPolicy
# metadata:
#   name: deny-external-ips
# spec:
#   validationFailureAction: enforce
#   rules:
#   - name: deny-external-ips
#     match:
#       resources:
#         kinds:
#         - Service
#     validate:
#       message: "Services with spec.externalIPs are not allowed"
#       pattern:
#         spec:
#           X(externalIPs): "null"

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 Score5.0

  • EPSS Probability24.78%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-283

  • NVD-CWE-noinfo
  • Technical References
  • GitHub Issue #97076

  • Kubernetes Security Announcement

  • Apache Druid Commit Discussion

  • Apache Druid Commit Discussion

  • Apache Druid Commit Discussion

  • Apache Druid Commit Discussion
  • Vendor Resources
  • Oracle Security Alert July 2021

  • Oracle Security Alert April 2022

  • Oracle Security Alert January 2022
  • 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
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