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
    • 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-2021-25735

CVE-2021-25735: Kubernetes Auth Bypass Vulnerability

CVE-2021-25735 is an authentication bypass flaw in Kubernetes kube-apiserver that allows node updates to bypass Validating Admission Webhooks. This article covers technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-25735 Overview

A security issue was discovered in kube-apiserver that could allow node updates to bypass a Validating Admission Webhook. Clusters are only affected by this vulnerability if they run a Validating Admission Webhook for Nodes that denies admission based at least partially on the old state of the Node object. The Validating Admission Webhook does not observe some previous fields, creating an authorization bypass condition that could compromise cluster security controls.

Critical Impact

Attackers with elevated privileges can bypass node validation controls, potentially allowing unauthorized modifications to node configurations and compromising cluster integrity.

Affected Products

  • Kubernetes kube-apiserver
  • Kubernetes clusters running Validating Admission Webhooks for Nodes
  • Kubernetes deployments where admission decisions depend on old node state

Discovery Timeline

  • 2021-09-06 - CVE-2021-25735 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-25735

Vulnerability Analysis

This vulnerability affects the Kubernetes kube-apiserver component, specifically in how it handles node update operations in conjunction with Validating Admission Webhooks. The root issue is an authorization bypass where the admission webhook fails to observe certain previous fields during node update operations.

When a Validating Admission Webhook is configured to make admission decisions based on the old state of a Node object, the webhook may not receive complete information about the previous state. This creates a race condition-like scenario where an attacker can craft node updates that appear legitimate to the webhook but actually bypass intended security controls.

The vulnerability is particularly concerning for organizations that rely on custom admission policies to enforce node configuration compliance, label restrictions, or security taints. An attacker with high privileges could exploit this gap to modify node attributes that should be protected by admission controls.

Root Cause

The vulnerability stems from incomplete field observation in the Validating Admission Webhook mechanism. When processing node updates, the kube-apiserver does not properly expose all relevant previous field values to the admission webhook, preventing the webhook from making fully informed admission decisions. This is classified under CWE-372 (Incomplete Internal State Distinction), indicating improper handling of state information during authorization checks.

Attack Vector

The attack requires network access to the Kubernetes API server and high-level privileges (such as cluster-admin or permissions to update node resources). An attacker would craft a node update request that exploits the blind spots in the admission webhook's visibility into the old node state. The webhook, unable to see the full context of the change, may approve modifications that should be denied based on the organization's security policies.

The attack could be used to:

  • Remove security-relevant labels or taints from nodes
  • Modify node configurations that admission policies were designed to protect
  • Bypass compliance controls enforced through admission webhooks

Detection Methods for CVE-2021-25735

Indicators of Compromise

  • Unexpected modifications to node labels, taints, or annotations that should be protected by admission policies
  • Audit log entries showing node update operations that bypassed expected webhook denials
  • Discrepancies between intended node configurations and actual cluster state
  • Webhook denial logs that don't correlate with actual node update rejections

Detection Strategies

  • Review Kubernetes audit logs for node update operations, particularly those from privileged accounts
  • Monitor admission webhook logs for unusual patterns or missing denial decisions
  • Implement secondary validation checks that compare node state before and after updates
  • Deploy SentinelOne Kubernetes Workload Protection to detect anomalous API server activity

Monitoring Recommendations

  • Enable detailed audit logging for node resources with RequestReceived and ResponseComplete stages
  • Configure alerting for node modifications that don't trigger expected admission webhook responses
  • Implement drift detection to identify node configuration changes that violate organizational policies
  • Monitor for attempts to modify security-sensitive node attributes such as taints and tolerations

How to Mitigate CVE-2021-25735

Immediate Actions Required

  • Upgrade Kubernetes to a patched version as specified in the Kubernetes security announcements
  • Review and audit all Validating Admission Webhooks that make decisions based on node state
  • Implement additional validation logic that does not rely solely on comparing old and new node states
  • Restrict permissions for node update operations to only necessary service accounts

Patch Information

Kubernetes has addressed this vulnerability in subsequent releases. Organizations should consult the GitHub Kubernetes Issue #100096 and the Kubernetes Security Announcement for specific version guidance and patch details. Upgrading to the latest stable release of your Kubernetes minor version is strongly recommended.

Workarounds

  • Redesign admission webhooks to make decisions based solely on the new node state rather than comparing old and new states
  • Implement out-of-band validation using controllers that periodically reconcile node configurations
  • Use additional authorization mechanisms such as OPA Gatekeeper policies that don't rely on old state comparison
  • Restrict RBAC permissions for node updates to minimize the attack surface
bash
# Configuration example
# Review node update permissions in your cluster
kubectl auth can-i update nodes --as=system:serviceaccount:default:default

# Audit recent node modifications
kubectl get events --field-selector reason=NodeUpdate -A

# List all validating webhooks affecting nodes
kubectl get validatingwebhookconfigurations -o json | jq '.items[] | select(.webhooks[].rules[].resources[] == "nodes")'

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

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability15.58%

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

  • NVD-CWE-Other
  • Technical References
  • Kubernetes Security Announcement
  • Vendor Resources
  • GitHub Kubernetes Issue #100096
  • 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