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-2021-25736

CVE-2021-25736: Kubernetes Traffic Forwarding Vulnerability

CVE-2021-25736 is a traffic forwarding flaw in Kubernetes kube-proxy on Windows that can redirect LoadBalancer traffic to local processes. This post covers the technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-25736 Overview

CVE-2021-25736 is an Improper Access Control vulnerability affecting Kubernetes kube-proxy on Windows platforms. The vulnerability occurs when kube-proxy unintentionally forwards traffic to local processes listening on the same port (spec.ports[*].port) as a LoadBalancer Service when the LoadBalancer controller does not set the status.loadBalancer.ingress[].ip field. This can lead to unauthorized information disclosure as network traffic intended for the LoadBalancer may be redirected to unintended local processes.

Critical Impact

Attackers with low privileges can potentially intercept sensitive network traffic through unintended traffic forwarding on Windows-based Kubernetes clusters, leading to high confidentiality impact across scope boundaries.

Affected Products

  • Kubernetes Kubernetes (multiple versions)
  • Microsoft Windows (when used as Kubernetes node operating system)
  • Clusters using LoadBalancer Services without properly configured status.loadBalancer.ingress[].ip field

Discovery Timeline

  • 2023-10-30 - CVE-2021-25736 published to NVD
  • 2025-06-12 - Last updated in NVD database

Technical Details for CVE-2021-25736

Vulnerability Analysis

This vulnerability stems from improper process interpreter handling (CWE-114) in the Windows implementation of kube-proxy. When a LoadBalancer Service is configured in a Kubernetes cluster running on Windows nodes, kube-proxy is responsible for routing network traffic appropriately. However, when the LoadBalancer controller fails to populate the status.loadBalancer.ingress[].ip field, kube-proxy may incorrectly route incoming traffic to local processes that happen to be listening on the same port defined in spec.ports[*].port.

The attack requires network access and low privileges, but the complexity is high as specific conditions must be met: the cluster must be running on Windows, using LoadBalancer Services, and the LoadBalancer controller must not set the ingress IP field. When successfully exploited, the vulnerability affects resources beyond the vulnerable component's security scope, potentially exposing sensitive data intended for the LoadBalancer to unauthorized local processes.

Root Cause

The root cause lies in the Windows-specific kube-proxy implementation's handling of LoadBalancer Service traffic routing. When the status.loadBalancer.ingress[].ip field is empty or unset, the kube-proxy fails to properly validate the destination before forwarding traffic. This creates a condition where traffic can be inadvertently routed to any local process listening on the matching port number, bypassing the intended LoadBalancer routing logic.

Attack Vector

The attack vector is network-based, requiring the attacker to have low-level privileges within the cluster. The exploitation scenario involves:

  1. An attacker identifies a Windows-based Kubernetes cluster using LoadBalancer Services
  2. The attacker verifies that the LoadBalancer controller does not set the status.loadBalancer.ingress[].ip field
  3. A malicious or compromised local process is configured to listen on the same port as the target LoadBalancer Service
  4. Network traffic intended for the LoadBalancer Service is intercepted by the malicious local process
  5. Sensitive information from the redirected traffic is captured, leading to confidentiality breach

Clusters where the LoadBalancer controller properly sets the status.loadBalancer.ingress[].ip field are unaffected by this vulnerability.

Detection Methods for CVE-2021-25736

Indicators of Compromise

  • Unexpected local processes listening on ports matching LoadBalancer Service configurations
  • Anomalous network traffic patterns on Windows Kubernetes nodes where traffic is routed to local processes instead of LoadBalancer endpoints
  • LoadBalancer Services with empty status.loadBalancer.ingress[].ip fields in Windows-based clusters
  • Unusual process activity on ports typically reserved for LoadBalancer Services

Detection Strategies

  • Monitor Kubernetes Service configurations for LoadBalancer types with missing or empty status.loadBalancer.ingress[].ip fields using kubectl get svc -o yaml
  • Implement network traffic analysis on Windows nodes to detect traffic redirection anomalies
  • Deploy runtime security monitoring to identify unexpected processes binding to LoadBalancer Service ports
  • Use SentinelOne Singularity for Kubernetes to detect suspicious network behavior and unauthorized process activity on cluster nodes

Monitoring Recommendations

  • Configure alerts for LoadBalancer Service creation events where the ingress IP field remains unset after controller processing
  • Implement continuous monitoring of local process port bindings on Windows Kubernetes nodes
  • Enable audit logging for kube-proxy operations to track traffic routing decisions
  • Deploy network segmentation monitoring to detect cross-scope traffic that may indicate exploitation

How to Mitigate CVE-2021-25736

Immediate Actions Required

  • Verify all LoadBalancer Services in Windows-based Kubernetes clusters have properly configured status.loadBalancer.ingress[].ip fields
  • Audit LoadBalancer controller configurations to ensure they properly populate ingress IP addresses
  • Review and restrict which processes can bind to ports matching LoadBalancer Service configurations
  • Consider migrating critical LoadBalancer workloads to Linux-based nodes until patching is complete

Patch Information

Kubernetes has addressed this vulnerability through code changes. Administrators should review the GitHub Pull Request #99958 for patch details and update to patched Kubernetes versions. Additional information is available in the Kubernetes Security Announcement. NetApp users should also reference the NetApp Security Advisory for product-specific guidance.

Workarounds

  • Ensure your LoadBalancer controller is configured to always set the status.loadBalancer.ingress[].ip field for all LoadBalancer Services
  • Implement network policies to restrict traffic flow on Windows nodes and prevent unauthorized process access to LoadBalancer ports
  • Consider using NodePort or ClusterIP service types as alternatives where LoadBalancer functionality is not strictly required
  • Deploy admission controllers to validate LoadBalancer Service configurations before deployment
bash
# Verify LoadBalancer Service configuration
kubectl get svc -A -o jsonpath='{range .items[?(@.spec.type=="LoadBalancer")]}{.metadata.namespace}/{.metadata.name}: {.status.loadBalancer.ingress[*].ip}{"\n"}{end}'

# Check for services with missing ingress IP (potential vulnerability exposure)
kubectl get svc -A -o json | jq '.items[] | select(.spec.type=="LoadBalancer") | select(.status.loadBalancer.ingress == null or .status.loadBalancer.ingress[].ip == null) | .metadata.name'

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechKubernetes

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.08%

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

  • CWE-114
  • Technical References
  • GitHub Pull Request

  • Kubernetes Security Announcement

  • NetApp Security Advisory
  • Related CVEs
  • CVE-2025-1767: Kubernetes gitRepo Volume Vulnerability

  • CVE-2026-3864: Kubernetes NFS CSI Path Traversal Flaw

  • CVE-2024-9486: Kubernetes Image Builder Privilege Escalation

  • CVE-2025-1974: Kubernetes ingress-nginx Controller RCE Flaw
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