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

CVE-2026-22163: Imaginationtech DDK Privilege Escalation

CVE-2026-22163 is a privilege escalation vulnerability in Imaginationtech DDK that allows malicious code to exploit the kernel module IOCTL interface for arbitrary memory writes. This article covers technical details, impact, and mitigation.

Updated: May 15, 2026

CVE-2026-22163 Overview

CVE-2026-22163 affects the Imagination Technologies DDK (Driver Development Kit) GPU kernel module. The vulnerability resides in the IOCTL interface exposed by the DDK kernel module. Malicious code with local access can misuse this interface in an unsupported way. The misuse allows subversion of the GPU to perform writes to arbitrary physical memory pages. The root cause is a missing synchronization control on a shared resource accessed concurrently, classified as [CWE-820] Missing Synchronization. Successful exploitation provides write access to kernel memory and enables local privilege escalation on affected systems.

Critical Impact

Local attackers with low privileges can leverage the GPU to write to arbitrary physical memory pages, leading to kernel compromise and full system takeover.

Affected Products

  • Imagination Technologies DDK 1.17
  • Imagination Technologies DDK 1.18, 23.2
  • Imagination Technologies DDK 24.1, 24.2

Discovery Timeline

  • 2026-03-20 - CVE-2026-22163 published to NVD
  • 2026-04-21 - Last updated in NVD database

Technical Details for CVE-2026-22163

Vulnerability Analysis

The DDK kernel module exposes an IOCTL interface used by userspace components to communicate with the GPU driver. The interface accepts requests that configure GPU operations, including memory management primitives. The vulnerability arises when malware-controlled code submits IOCTL requests that exercise the interface outside its supported usage contract. Through these crafted requests, an attacker programs the GPU to issue writes against arbitrary physical memory pages. Because the GPU operates as a Direct Memory Access (DMA) capable peripheral, those writes bypass standard CPU memory protections enforced by the kernel.

Root Cause

The defect is a missing synchronization control on a shared resource accessed concurrently by multiple execution contexts [CWE-820]. The driver utilises the shared resource without serializing access, leaving a window where an attacker can manipulate state used to validate or constrain GPU memory operations. The lack of locking allows the unsupported IOCTL usage pattern to bypass intended boundary checks. As a result, the GPU executes memory operations against physical addresses that the calling process is not authorized to touch.

Attack Vector

Exploitation requires local access and low privileges, but does not require user interaction. The attacker must execute code on the target system, typically through a malicious application or compromised process that can open the DDK device node. The attack complexity is high because triggering the race condition requires precise timing of concurrent IOCTL operations. Successful exploitation results in arbitrary physical memory writes, which an attacker uses to overwrite kernel structures, escalate privileges, or disable security controls. The scope change reflects impact extending beyond the driver to the entire kernel and system integrity.

Detection Methods for CVE-2026-22163

Indicators of Compromise

  • Unexpected processes opening the DDK GPU device node with high-frequency IOCTL calls.
  • Kernel logs showing GPU page fault anomalies or unusual DMA activity tied to userspace processes.
  • Userspace applications issuing IOCTL command codes outside the documented driver API.

Detection Strategies

  • Monitor IOCTL call patterns against the DDK device node and flag bursts consistent with race-condition exploitation attempts.
  • Correlate GPU driver crashes or kernel oops events with the originating process and parent lineage.
  • Apply behavioral analytics to identify unprivileged processes attempting privileged kernel operations following GPU interaction.

Monitoring Recommendations

  • Audit access to /dev/dri/* and DDK-specific device nodes, alerting on access by non-graphics processes.
  • Collect kernel ring buffer logs and ship them to centralized analytics for anomaly detection.
  • Track loaded kernel module versions across the fleet to identify systems running vulnerable DDK builds.

How to Mitigate CVE-2026-22163

Immediate Actions Required

  • Inventory systems running Imagination Technologies DDK versions 1.17, 1.18, 23.2, 24.1, and 24.2.
  • Apply vendor-supplied driver updates from the Imagination Tech GPU Driver Vulnerabilities advisory as soon as available.
  • Restrict access to GPU device nodes so only trusted graphics processes can issue IOCTL requests.

Patch Information

Imagination Technologies publishes fixed driver versions and remediation details in its GPU driver vulnerabilities advisory. Refer to the Imagination Tech GPU Driver Vulnerabilities page for the patched DDK release that addresses the missing synchronization defect in the kernel IOCTL handler. Deploy the patch through the platform vendor or System-on-Chip (SoC) supplier responsible for the integrated GPU stack.

Workarounds

  • Limit installation of untrusted third-party applications on systems with vulnerable DDK drivers.
  • Tighten device-node permissions so the GPU IOCTL interface is reachable only by privileged graphics services.
  • Enforce application allowlisting to prevent execution of unsigned binaries that could invoke the vulnerable interface.
bash
# Restrict access to GPU device nodes to the video group only
sudo chown root:video /dev/dri/renderD*
sudo chmod 0660 /dev/dri/renderD*

# Verify loaded DDK driver version
lsmod | grep -i pvr
dmesg | grep -i "PowerVR\|DDK"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechImaginationtech Ddk

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-820
  • Vendor Resources
  • Imagination Tech GPU Driver Vulnerabilities
  • Related CVEs
  • CVE-2026-21736: Imaginationtech DDK Privilege Escalation

  • CVE-2025-58408: Imaginationtech DDK Use After Free 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