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

CVE-2026-22165: WebGPU Use-After-Free Vulnerability

CVE-2026-22165 is a use-after-free flaw in WebGPU GPU GLES rendering that allows attackers to trigger crashes and potentially escalate privileges on certain platforms. This post covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-22165 Overview

CVE-2026-22165 is a use-after-free [CWE-416] vulnerability in the GPU GLES user-space shared library. A web page containing crafted WebGPU content loaded into the GPU GLES render process can trigger a write use-after-free crash. On platforms where the graphics workload process runs with system privileges, the flaw can enable further device-level exploitation.

The issue is documented in the Imagination Technologies Driver Vulnerabilities advisory. The attack vector is network-based, requires low privileges, and needs no user interaction beyond visiting a malicious page.

Critical Impact

A successful write use-after-free in the GPU GLES library can corrupt memory in a system-privileged graphics process, providing a stepping stone to broader device compromise.

Affected Products

  • Imagination Technologies GPU drivers exposing GLES user-space shared library
  • Devices using affected PowerVR / Imagination GPU GLES render stack
  • Systems where the GPU graphics workload process runs with system privileges

Discovery Timeline

  • 2026-05-01 - CVE-2026-22165 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-22165

Vulnerability Analysis

The vulnerability is a write use-after-free in the GPU GLES user-space shared library. The render process accepts WebGPU command streams from a browsing context. When the page submits unusual WebGPU content, an object inside the GLES library is freed while a writable reference to it remains live. A subsequent write through the stale pointer corrupts memory the allocator has reassigned.

Use-after-free conditions in graphics drivers are useful primitives for attackers. The freed slot can be reclaimed with attacker-controlled data through additional GPU resource allocations. Writing through the dangling pointer then overwrites adjacent metadata or function pointers.

Because the GPU GLES render process is reachable from any web page using WebGPU, the attack surface extends to drive-by browser content. The integrity and availability impact is high, while confidentiality impact is rated none in the advisory scoring.

Root Cause

The root cause is incorrect lifetime management of an object referenced by GLES rendering state when processing atypical WebGPU draw or resource commands. The library frees backing memory while a code path continues to issue writes to that memory.

Attack Vector

A remote attacker hosts a web page with crafted WebGPU shaders or command sequences. When a victim using a vulnerable browser on an affected GPU driver loads the page, the WebGPU content is dispatched to the GPU GLES render process. The malformed sequence triggers the free-then-write pattern in the shared library. On platforms where this process holds system privileges, the resulting memory corruption can be chained into privilege escalation or device-level code execution.

No verified public exploit code is available. Refer to the Imagination Technologies advisory for vendor technical details.

Detection Methods for CVE-2026-22165

Indicators of Compromise

  • Repeated crashes or restarts of the GPU GLES render process correlated with browser activity
  • Unexpected child processes spawned from the graphics service or browser GPU sandbox
  • Anomalous writes to memory regions backing GLES driver objects observed in crash dumps
  • Browser tabs originating from untrusted domains immediately preceding GPU process faults

Detection Strategies

  • Monitor operating system crash telemetry for faults in the GPU GLES user-space library and correlate with the loaded browser tab origin
  • Hunt for browser child processes that perform unexpected file, network, or privilege operations after WebGPU usage
  • Inspect WebGPU traffic patterns at proxy or browser telemetry layers for unusually large or malformed command buffers from untrusted origins

Monitoring Recommendations

  • Centralize endpoint crash reports and graphics driver logs into a SIEM for correlation across the fleet
  • Alert on post-crash behavioral chains such as system-privilege process creation following a GPU render fault
  • Track browser and GPU driver versions across managed devices to identify unpatched hosts

How to Mitigate CVE-2026-22165

Immediate Actions Required

  • Apply the GPU driver update referenced in the Imagination Technologies advisory as soon as it is available for your platform
  • Update browsers to the latest version that incorporates upstream WebGPU and GPU process hardening
  • Inventory devices using Imagination / PowerVR GPU drivers and prioritize patch deployment on systems where the graphics process runs with system privileges

Patch Information

Consult the Imagination Technologies Driver Vulnerabilities page for the fixed driver versions and integrator guidance. Device manufacturers must ship the updated driver through their normal firmware or OS update channel.

Workarounds

  • Disable WebGPU in managed browsers until the driver patch is deployed, using enterprise browser policy controls
  • Restrict navigation to untrusted sites on devices that cannot receive a timely driver update
  • Where supported, run the GPU graphics workload under a reduced-privilege account rather than as a system-privileged process
bash
# Example: disable WebGPU via Chromium enterprise policy on Linux
cat <<'EOF' | sudo tee /etc/chromium/policies/managed/disable-webgpu.json
{
  "DefaultWebGpuSetting": 2,
  "WebGpuEnabled": false
}
EOF

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Imagination Technologies Driver Vulnerabilities
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE 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