A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-42541

CVE-2026-42541: Kubewarden Information Disclosure Flaw

CVE-2026-42541 is an information disclosure vulnerability in Kubewarden that allows attackers to enumerate RBAC permissions across Kubernetes clusters. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-42541 Overview

CVE-2026-42541 is a missing authorization vulnerability [CWE-862] in Kubewarden, a policy engine for Kubernetes. The flaw resides in the can_i host callback exposed to policy authors. An attacker with privileged AdmissionPolicy or AdmissionPolicyGroup create permissions can craft a policy that invokes can_i to issue arbitrary SubjectAccessReview (SAR) requests using policy-server privileges. The callback fails to enforce the context-aware allow-list, allowing reconnaissance of RBAC permissions for any user or service account across the cluster.

Critical Impact

Authenticated attackers with policy create permissions can enumerate cluster-wide RBAC permissions, learning whether specific identities can perform sensitive actions such as get secrets, create pods, or bind clusterroles.

Affected Products

  • Kubewarden policy engine for Kubernetes
  • Kubewarden adm-controller component
  • Kubewarden policy-server

Discovery Timeline

  • 2026-05-12 - CVE-2026-42541 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42541

Vulnerability Analysis

Kubewarden allows policies to query the cluster for contextual data through host callbacks. The can_i callback is designed to evaluate whether a subject can perform an action, mirroring the behavior of kubectl auth can-i. Policies must declare context-aware resource grants to use such callbacks, and the host should enforce those grants before issuing API calls on behalf of the policy.

The vulnerable code path does not enforce the context-aware allow-list check for can_i. Instead, it forwards the request directly to the callback handler, which executes a real SubjectAccessReview request against the Kubernetes API using the policy-server's service account credentials. Because policy-server typically holds broad permissions to perform SARs, the policy gains the ability to enumerate authorization decisions for any subject in any namespace.

The issue is classified as information disclosure and reconnaissance. The attacker does not directly read secrets or workload data through this flaw. They learn which identities possess which permissions, which is valuable for planning lateral movement and privilege escalation within the cluster.

Root Cause

The root cause is a missing authorization check [CWE-862] in the policy host callback dispatcher. The can_i callback bypasses the validation logic that enforces the policy's declared context-aware resources, creating a policy-level authorization gap.

Attack Vector

Exploitation requires an authenticated principal with permissions to create AdmissionPolicy or AdmissionPolicyGroup resources, which is not the default in most clusters. The attacker writes or deploys a malicious policy that calls can_i with chosen subjects, verbs, resources, and namespaces. When Kubewarden evaluates the policy, the policy-server submits SAR requests on the attacker's behalf and returns the authorization decisions to the policy logic. The attacker then exfiltrates the enumerated permission map through policy outputs or logs. See the GitHub Security Advisory GHSA-wqcw-g35j-j578 for technical details.

Detection Methods for CVE-2026-42541

Indicators of Compromise

  • Unexpected SubjectAccessReview API calls originating from the Kubewarden policy-server service account at high volume or across many namespaces.
  • Newly created AdmissionPolicy or AdmissionPolicyGroup resources from non-administrative identities, particularly those referencing untrusted policy module sources.
  • Policy-server logs showing can_i host callback invocations against subjects unrelated to the policy's documented purpose.

Detection Strategies

  • Audit Kubernetes API server logs for SubjectAccessReview create events tied to the policy-server service account and correlate with policy deployment events.
  • Inventory all installed Kubewarden policies and review their source modules for can_i callback usage against unexpected subjects or resources.
  • Monitor RBAC changes that grant admissionpolicies.policies.kubewarden.io or admissionpolicygroups.policies.kubewarden.io create verbs to non-admin principals.

Monitoring Recommendations

  • Enable Kubernetes audit logging at the Metadata level for authorization.k8s.io/v1 resources and ship logs to a centralized analytics platform.
  • Baseline normal policy-server SAR request volume and alert on statistically significant deviations.
  • Track creation, modification, and deletion of Kubewarden policy resources as security-relevant events.

How to Mitigate CVE-2026-42541

Immediate Actions Required

  • Upgrade Kubewarden components to the patched releases referenced in the vendor advisory.
  • Restrict RBAC permissions for creating AdmissionPolicy and AdmissionPolicyGroup resources to trusted cluster administrators only.
  • Review existing policies for unexpected can_i callback usage and remove or replace untrusted policies.

Patch Information

The vulnerability is fixed in updated Kubewarden releases. Refer to the Kubewarden GitHub Security Advisory GHSA-wqcw-g35j-j578 for the specific fixed versions and upgrade instructions for the adm-controller and policy-server components.

Workarounds

  • Limit policy creation permissions to a small set of trusted operators using strict RBAC bindings until the patch is deployed.
  • Run policy-server with the minimum service account privileges required, reducing the scope of any SAR enumeration.
  • Source Kubewarden policies only from trusted, signed registries and validate policy module contents before deployment.
bash
# Configuration example: restrict policy creation via RBAC
kubectl get rolebindings,clusterrolebindings --all-namespaces -o json | \
  jq '.items[] | select(.roleRef.name | test("kubewarden|admin"))'

# Audit current AdmissionPolicy resources for can_i usage
kubectl get admissionpolicies,admissionpolicygroups --all-namespaces -o yaml | \
  grep -i 'can_i\|subjectaccessreview'

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechKubewarden

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-29773: Kubewarden Privilege Escalation Flaw
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