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-2022-3162

CVE-2022-3162: Kubernetes Auth Bypass Vulnerability

CVE-2022-3162 is an authorization bypass flaw in Kubernetes that allows unauthorized access to custom resources across API groups. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 17, 2026

CVE-2022-3162 Overview

CVE-2022-3162 is an authorization bypass vulnerability in Kubernetes that allows users with cluster-wide list or watch authorization on one type of namespaced custom resource to read custom resources of a different type within the same API group without proper authorization. This vulnerability affects Kubernetes clusters where multiple CustomResourceDefinitions (CRDs) share the same API group and users have partial access permissions.

Critical Impact

Unauthorized users can gain read access to sensitive custom resources they should not have permission to view, potentially exposing confidential configuration data, secrets, or operational information stored in custom resources across the cluster.

Affected Products

  • Kubernetes (multiple versions affected)
  • Kubernetes clusters with 2+ CustomResourceDefinitions sharing the same API group
  • Environments where users have partial cluster-wide list/watch permissions on custom resources

Discovery Timeline

  • 2023-03-01 - CVE-2022-3162 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-3162

Vulnerability Analysis

This authorization bypass vulnerability stems from improper access control enforcement in Kubernetes' handling of custom resources within shared API groups. When a user has been granted cluster-wide list or watch permissions on one custom resource type, the authorization system fails to properly isolate access to other custom resource types within the same API group.

For a cluster to be vulnerable, three conditions must be met simultaneously: there must be two or more CustomResourceDefinitions sharing the same API group, users must have cluster-wide list or watch authorization on at least one of those custom resources, and those same users must lack authorization to read another custom resource in the same API group. When all conditions are present, the authorization boundary between custom resource types breaks down.

Root Cause

The root cause is a path traversal weakness (CWE-22, CWE-23) in how Kubernetes validates and enforces authorization boundaries between custom resources sharing an API group. The API server does not adequately verify that list or watch requests are scoped only to the specific custom resource type the user is authorized to access, allowing requests to traverse into unauthorized resource types within the same API group context.

Attack Vector

An attacker with legitimate but limited access to a Kubernetes cluster can exploit this vulnerability through the network. The attack requires low-privilege credentials that have cluster-wide list or watch permissions on at least one custom resource. Using these permissions, the attacker can craft API requests to enumerate and read custom resources of different types within the same API group, bypassing the intended authorization controls.

The exploitation does not require user interaction and can be performed remotely through standard Kubernetes API calls. The attacker gains unauthorized read access to potentially sensitive custom resource data, though no integrity or availability impact has been identified.

Detection Methods for CVE-2022-3162

Indicators of Compromise

  • Unusual API requests for custom resources from users who should not have access to specific resource types
  • Audit log entries showing list or watch operations across multiple custom resource types from the same user account
  • Access patterns indicating enumeration of custom resources across an API group
  • Unexpected data access by service accounts with limited intended permissions

Detection Strategies

  • Enable and monitor Kubernetes audit logs for anomalous custom resource access patterns
  • Implement RBAC policy analysis to identify overly permissive cluster-wide list/watch permissions
  • Deploy runtime security monitoring to detect unauthorized resource enumeration
  • Configure alerts for users accessing custom resources outside their normal operational scope

Monitoring Recommendations

  • Regularly audit CustomResourceDefinitions to identify API groups with multiple CRD types
  • Review user and service account permissions for unnecessary cluster-wide list/watch grants
  • Monitor API server logs for cross-resource type access within shared API groups
  • Implement behavioral baselines for custom resource access patterns per user/service account

How to Mitigate CVE-2022-3162

Immediate Actions Required

  • Audit all RBAC policies to identify users with cluster-wide list or watch permissions on custom resources
  • Review CustomResourceDefinitions to understand which resources share API groups
  • Apply the principle of least privilege by restricting cluster-wide permissions to namespace-scoped where possible
  • Update Kubernetes to a patched version as documented in the security advisory

Patch Information

Kubernetes has released patches addressing this vulnerability. Administrators should consult the Kubernetes Security Announcement and the GitHub Issue Discussion for detailed patch information and affected version ranges. Organizations using Kubernetes in NetApp environments should also review the NetApp Security Advisory for additional guidance.

Workarounds

  • Segregate CustomResourceDefinitions into separate API groups where feasible to prevent cross-resource access
  • Restrict cluster-wide list and watch permissions to namespace-scoped permissions where operationally possible
  • Implement network policies to limit which users and service accounts can interact with the API server
  • Deploy admission controllers to enforce stricter RBAC policies on custom resource access
bash
# Review RBAC permissions for cluster-wide custom resource access
kubectl get clusterrolebindings -o json | jq '.items[] | select(.roleRef.kind=="ClusterRole") | {name: .metadata.name, subjects: .subjects}'

# List all CustomResourceDefinitions and their API groups
kubectl get crd -o custom-columns=NAME:.metadata.name,GROUP:.spec.group

# Audit cluster roles with list/watch permissions on custom resources
kubectl get clusterroles -o json | jq '.items[] | select(.rules[].resources | contains(["*"]) or any(. | test("customresourcedefinitions|crd"))) | .metadata.name'

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 Probability0.85%

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

  • CWE-22
  • Technical References
  • NetApp Security Advisory
  • Vendor Resources
  • GitHub Issue Discussion

  • Kubernetes Security Announcement
  • 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