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-44245

CVE-2026-44245: Kyverno Policy Engine XSS Vulnerability

CVE-2026-44245 is a cross-site scripting vulnerability in Kyverno that allows HTML injection through PolicyReport properties. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 17, 2026

CVE-2026-44245 Overview

CVE-2026-44245 is a Cross-Site Scripting (XSS) vulnerability [CWE-79] in Kyverno, a policy engine used by cloud native platform engineering teams. The flaw affects versions prior to 2.5.2 and resides in the PropertyCard.vue component of the policy reporter UI. The component uses Vue 3's v-html directive in the else branch of a URL check, allowing non-URL string values to flow directly into the Document Object Model (DOM) as HTML. Attackers with write access to Kubernetes PolicyReport objects can inject arbitrary HTML and JavaScript through the .results[].properties fields.

Critical Impact

Authenticated attackers with PolicyReport write access can inject HTML or JavaScript that executes in the browser of any user viewing the policy reporter UI.

Affected Products

  • Kyverno policy engine versions prior to 2.5.2
  • Kyverno policy reporter UI (PropertyCard.vue component)
  • Kubernetes clusters exposing PolicyReport objects through the affected UI

Discovery Timeline

  • 2026-05-12 - CVE-2026-44245 published to the National Vulnerability Database (NVD)
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44245

Vulnerability Analysis

The vulnerability is a stored Cross-Site Scripting flaw rooted in unsafe template rendering. Vue 3's v-html directive injects raw HTML into the DOM and intentionally disables the auto-escaping that the standard {{ }} interpolation syntax provides. Any string rendered through v-html is treated as trusted markup. When attacker-controlled data flows into this directive without sanitization, the browser parses and executes embedded scripts.

The attack vector is network-based and requires user interaction, namely a victim loading a policy report view in the UI. Successful exploitation runs script in the victim's browser session, enabling session theft, UI defacement, or pivoting to other authenticated cluster endpoints accessible from the browser.

Root Cause

The PropertyCard.vue component implements an isURL() guard that only matches strings parseable as http: or https: URLs. Values passing the guard render as anchor elements. Values failing the guard fall through to the else branch, where v-html renders them as raw HTML. Any payload that does not begin with http: or https: bypasses the guard entirely and reaches the unsafe sink.

Attack Vector

The vulnerable data originates from Kubernetes PolicyReport.results[].properties fields. These are arbitrary string maps populated by policy engines or by any principal with write access to PolicyReport objects in the cluster. An attacker with such write permissions creates or modifies a PolicyReport containing an HTML payload such as a <script> or <img onerror> tag in a property value. When an operator opens the policy reporter UI, the malicious property is rendered through v-html and the script executes in the operator's browser context.

The vulnerability mechanism is described in detail in the GitHub Security Advisory GHSA-q98m-7w8c-w388.

Detection Methods for CVE-2026-44245

Indicators of Compromise

  • PolicyReport objects whose .results[].properties values contain HTML tags, JavaScript event handlers such as onerror or onclick, or <script> elements
  • Browser console errors or unexpected network requests originating from the policy reporter UI domain
  • Audit log entries showing create or update operations on PolicyReport resources from non-policy-engine service accounts

Detection Strategies

  • Inspect PolicyReport and ClusterPolicyReport custom resources for property values that contain angle brackets, JavaScript URI schemes, or HTML entity encodings
  • Review Kubernetes audit logs for write activity to wgpolicyk8s.io resources from unexpected identities
  • Run static analysis against deployed Kyverno versions to confirm whether the PropertyCard.vuev-html sink is present

Monitoring Recommendations

  • Enable Kubernetes audit logging for PolicyReport create, update, and patch verbs and forward events to a centralized data lake
  • Alert on anomalous principals writing to PolicyReport objects, particularly user accounts rather than policy engine controllers
  • Monitor browser telemetry from administrative workstations for unexpected script execution on the policy reporter origin

How to Mitigate CVE-2026-44245

Immediate Actions Required

  • Upgrade Kyverno to version 2.5.2 or later, which removes the unsafe v-html usage in PropertyCard.vue
  • Audit existing PolicyReport and ClusterPolicyReport objects for HTML or script content and delete any malicious entries
  • Review and tighten Kubernetes role-based access control (RBAC) bindings that grant write access to PolicyReport resources

Patch Information

The vulnerability is fixed in Kyverno 2.5.2. The fix removes the v-html directive from the else branch of the URL check in PropertyCard.vue, ensuring that non-URL property values are rendered as text rather than raw HTML. See the Kyverno GitHub Security Advisory for the full advisory and commit references.

Workarounds

  • Restrict write access to PolicyReport and ClusterPolicyReport resources to trusted policy engine service accounts only
  • Block external access to the policy reporter UI and require administrator authentication behind a reverse proxy until the upgrade is applied
  • Apply Kyverno or admission policies that validate PolicyReport property values and reject entries containing HTML tags or script content
bash
# Example admission constraint: reject PolicyReport properties containing angle brackets
kubectl get policyreports.wgpolicyk8s.io -A -o json \
  | jq '.items[] | select(.results[].properties | to_entries[].value | test("[<>]")) | {ns: .metadata.namespace, name: .metadata.name}'

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechKyverno

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41485: Kyverno Policy Engine DoS Vulnerability

  • CVE-2026-41323: Kyverno Information Disclosure Flaw

  • CVE-2026-41068: Kyverno Privilege Escalation Vulnerability

  • 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