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-2026-41068

CVE-2026-41068: Kyverno Privilege Escalation Vulnerability

CVE-2026-41068 is a privilege escalation flaw in Kyverno that enables namespace admins to bypass RBAC and access ConfigMaps across any namespace. This article covers technical details, affected versions, impact, and mitigation.

Published: April 30, 2026

CVE-2026-41068 Overview

CVE-2026-41068 is an Authorization Bypass vulnerability in Kyverno, a policy engine designed for cloud native platform engineering teams. The vulnerability exists in Kyverno's ConfigMap context loader, which fails to validate the configMap.namespace field. This allows a namespace administrator to read ConfigMaps from any namespace using Kyverno's privileged service account, resulting in a complete RBAC bypass in multi-tenant Kubernetes clusters.

This vulnerability is particularly concerning because it represents an incomplete fix for CVE-2026-22039, which addressed cross-namespace privilege escalation in Kyverno's apiCall context by validating the URLPath field. However, the ConfigMap context loader was overlooked and contains an identical vulnerability pattern.

Critical Impact

Namespace administrators can bypass Kubernetes RBAC controls to access sensitive ConfigMap data from any namespace in multi-tenant clusters, potentially exposing credentials, configuration secrets, and other sensitive information.

Affected Products

  • Kyverno versions prior to 1.17.2

Discovery Timeline

  • April 24, 2026 - CVE-2026-41068 published to NVD
  • April 27, 2026 - Last updated in NVD database

Technical Details for CVE-2026-41068

Vulnerability Analysis

The vulnerability stems from CWE-863 (Incorrect Authorization), where the ConfigMap context loader in Kyverno accepts arbitrary namespace values without proper validation. When a Kyverno policy includes a ConfigMap context entry, the configMap.namespace field can be set to any namespace in the cluster. Kyverno's service account, which typically has elevated cluster-wide permissions to enforce policies, will then retrieve the ConfigMap from the specified namespace without verifying whether the policy author has legitimate access rights to that namespace.

This creates a privilege escalation vector in multi-tenant Kubernetes environments where namespace isolation is a critical security boundary. An attacker with namespace admin privileges in their own namespace can craft a Kyverno policy that references ConfigMaps in other namespaces (such as kube-system or namespaces belonging to other tenants), effectively using Kyverno as a proxy to bypass RBAC restrictions.

Root Cause

The root cause is missing authorization validation in the ConfigMap context loader (pkg/engine/context/loaders/configmap.go). The original implementation did not track or enforce the policy's namespace context when loading ConfigMaps, allowing cross-namespace access. The vulnerable configMapLoader struct lacked a policyNamespace field to restrict ConfigMap access to the policy's own namespace for namespaced policies.

Attack Vector

The attack vector is network-based and requires low privileges (namespace admin). An attacker exploits this by creating a Kyverno ClusterPolicy or namespaced Policy with a context entry that references a ConfigMap in a target namespace:

  1. Attacker identifies a target ConfigMap containing sensitive data in another namespace
  2. Attacker creates a Kyverno policy in their controlled namespace
  3. The policy includes a ConfigMap context entry with namespace set to the target namespace
  4. When the policy triggers, Kyverno's privileged service account retrieves the ConfigMap
  5. The attacker can access the ConfigMap data through policy evaluation results or side effects

The patch adds namespace validation to ensure namespaced policies can only access ConfigMaps within their own namespace:

go
// Security patch in pkg/engine/context/loaders/configmap.go
// Source: https://github.com/kyverno/kyverno/commit/bbf3e5c01391d612968440659028ae98e565a777

 )
 
 type configMapLoader struct {
-	ctx       context.Context //nolint:containedctx
-	logger    logr.Logger
-	entry     kyvernov1.ContextEntry
-	resolver  engineapi.ConfigmapResolver
-	enginectx enginecontext.Interface
-	data      []byte
+	ctx             context.Context //nolint:containedctx
+	logger          logr.Logger
+	entry           kyvernov1.ContextEntry
+	resolver        engineapi.ConfigmapResolver
+	enginectx       enginecontext.Interface
+	data            []byte
+	policyNamespace string
 }
 
 func NewConfigMapLoader(
go
// Security patch in pkg/engine/factories/contextloaderfactory.go
// Source: https://github.com/kyverno/kyverno/commit/bbf3e5c01391d612968440659028ae98e565a777

 ) (enginecontext.DeferredLoader, error) {
 	if entry.ConfigMap != nil {
 		if l.cmResolver != nil {
-			ldr := loaders.NewConfigMapLoader(ctx, l.logger, entry, l.cmResolver, jsonContext)
+			ldr := loaders.NewConfigMapLoader(ctx, l.logger, entry, l.cmResolver, jsonContext, l.policyNamespace)
 			return enginecontext.NewDeferredLoader(entry.Name, ldr, l.logger)
 		} else {
 			l.logger.V(3).Info("disabled loading of ConfigMap context entry", "name", entry.Name)

Detection Methods for CVE-2026-41068

Indicators of Compromise

  • Kyverno policies with ConfigMap context entries referencing namespaces other than their own
  • Unexpected ConfigMap read operations from Kyverno's service account across namespace boundaries
  • Audit logs showing Kyverno accessing ConfigMaps in sensitive namespaces like kube-system
  • New or modified policies created by namespace admins that include cross-namespace ConfigMap references

Detection Strategies

  • Enable Kubernetes audit logging and monitor for ConfigMap get or list operations by the Kyverno service account
  • Review all existing Kyverno policies for ConfigMap context entries with explicit namespace fields
  • Implement admission control policies to detect and alert on policies attempting cross-namespace ConfigMap access
  • Deploy runtime security monitoring to detect anomalous ConfigMap access patterns

Monitoring Recommendations

  • Configure alerts for any Kyverno policy creation or modification events
  • Monitor Kubernetes audit logs for cross-namespace resource access by Kyverno service accounts
  • Review RBAC bindings to identify namespace admins who could exploit this vulnerability
  • Implement regular policy audits to identify potentially malicious ConfigMap context entries

How to Mitigate CVE-2026-41068

Immediate Actions Required

  • Upgrade Kyverno to version 1.17.2 or later immediately
  • Audit all existing Kyverno policies for ConfigMap context entries with cross-namespace references
  • Review Kubernetes audit logs for signs of exploitation
  • Consider temporarily restricting policy creation permissions until the patch is applied

Patch Information

The vulnerability is fixed in Kyverno version 1.17.2. The fix adds a policyNamespace field to the ConfigMap loader, ensuring that namespaced policies can only access ConfigMaps within their own namespace. The security patch is available in commit bbf3e5c01391d612968440659028ae98e565a777.

For detailed information, see the GitHub Security Advisory and the GitHub Commit.

Workarounds

  • Restrict Kyverno policy creation to cluster administrators only using RBAC
  • Implement an admission webhook to reject policies with cross-namespace ConfigMap references
  • Remove ConfigMap read permissions from Kyverno's service account if ConfigMap context is not needed
  • Use network policies to limit Kyverno's access to the Kubernetes API server
bash
# Review existing policies for cross-namespace ConfigMap references
kubectl get clusterpolicies,policies -A -o json | jq '.items[] | select(.spec.rules[].context[]?.configMap.namespace != null) | {name: .metadata.name, namespace: .metadata.namespace}'

# Audit Kyverno service account permissions
kubectl auth can-i --list --as=system:serviceaccount:kyverno:kyverno-admission-controller -n kube-system | grep configmaps

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechKyverno

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44245: Kyverno Policy Engine XSS Vulnerability

  • CVE-2026-41485: Kyverno Policy Engine DoS Vulnerability

  • CVE-2026-41323: Kyverno Information Disclosure Flaw

  • CVE-2026-40868: Kyverno Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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