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
    • 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-23350

CVE-2026-23350: Linux Kernel Use-After-Free Vulnerability

CVE-2026-23350 is a use-after-free vulnerability in the Linux kernel's drm/xe/queue component that can cause invalid memory references. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23350 Overview

A use after free vulnerability has been identified in the Linux kernel's Intel Xe DRM graphics driver, specifically in the execution queue management subsystem. The vulnerability occurs when the fini (finalization) function is not called during execution queue creation failure, leading to incomplete cleanup of queue resources from the Graphics micro-controller (GuC) list.

When an execution queue fails to initialize properly, the cleanup path skips the removal of the queue from the GuC list (which is part of guc_id allocation). This results in a damaged queue reference remaining in the exec_queue_lookup list, which can later lead to invalid memory references when the stale pointer is accessed.

Critical Impact

A damaged queue stored in the exec_queue_lookup list leads to invalid memory references, potentially causing system instability, denial of service, or exploitable memory corruption conditions.

Affected Products

  • Linux Kernel (drm/xe driver)
  • Systems with Intel Xe Graphics hardware

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23350 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23350

Vulnerability Analysis

The vulnerability resides in the Linux kernel's Intel Xe DRM driver, specifically in the execution queue initialization and error handling paths. The Xe driver manages GPU execution queues that interface with Intel's GuC (Graphics micro-controller) firmware for workload scheduling.

When queue init is called to set up an execution queue, several resources are allocated including a guc_id which registers the queue with the GuC firmware. If queue creation fails after partial initialization, the error path was not calling the corresponding fini function. This left the queue in an inconsistent state where:

  1. The guc_id remained allocated and registered with the GuC
  2. The queue reference persisted in the exec_queue_lookup list
  3. Other resources may have been freed, creating dangling pointer conditions

When subsequent operations attempt to access the queue through the lookup list, they encounter invalid memory references to partially or fully deallocated structures.

Root Cause

The root cause is improper resource lifecycle management in the execution queue error handling path. The principle that "every call to queue init should have a corresponding fini call" was violated during error conditions. The fix ensures that __xe_exec_queue_fini() is called to properly release the guc_id before any internal Logical Ring Contexts (LRCs) are freed. Additionally, xe_lrc_put() was modified to safely handle NULL parameters, similar to other kernel deallocation functions.

Attack Vector

This is a local vulnerability that could be triggered by:

  1. A local user with access to the graphics subsystem causing queue creation failures
  2. Resource exhaustion scenarios that force queue initialization failures
  3. Malformed requests to the DRM subsystem that trigger the vulnerable error path

While the attack vector is local and exploitation complexity may be high, successful exploitation could lead to kernel memory corruption, privilege escalation, or denial of service conditions on systems with Intel Xe graphics hardware.

Detection Methods for CVE-2026-23350

Indicators of Compromise

  • Kernel oops or panics referencing drm/xe/queue or xe_exec_queue functions
  • System log entries indicating invalid memory access in Xe graphics driver components
  • Unexpected GPU driver crashes or hangs during graphics-intensive operations
  • Memory corruption warnings in kernel ring buffer (dmesg) related to the Xe subsystem

Detection Strategies

  • Monitor kernel logs for use-after-free warnings from KASAN (Kernel Address Sanitizer) if enabled
  • Watch for anomalous crashes in the DRM/Xe driver subsystem that indicate memory corruption
  • Deploy kernel-level monitoring for invalid memory access patterns in graphics driver code paths
  • Use SentinelOne Singularity Platform to detect kernel-level exploitation attempts and memory corruption indicators

Monitoring Recommendations

  • Enable kernel debugging features like KASAN on development and test systems to catch memory safety violations
  • Implement syslog monitoring for patterns matching Xe driver crashes or memory errors
  • Configure alerting for GPU driver instability that may indicate exploitation attempts
  • Deploy endpoint detection solutions capable of monitoring kernel-level behavior anomalies

How to Mitigate CVE-2026-23350

Immediate Actions Required

  • Update affected Linux kernel installations to patched versions that include the fix
  • Review systems with Intel Xe graphics hardware for signs of driver instability
  • Consider disabling or restricting access to the Xe graphics driver on critical systems until patching is complete
  • Monitor affected systems for unusual kernel behavior or crashes related to graphics operations

Patch Information

The Linux kernel development team has released patches addressing this vulnerability. The fix ensures proper finalization is called during queue creation failures by reusing __xe_exec_queue_fini() and making xe_lrc_put() NULL-safe.

Patch commits:

  • Primary fix: Kernel Git Commit 99f9b534
  • Additional changes: Kernel Git Commit fae65b8a

The patch was cherry-picked from commit 393e5fea6f7d7054abc2c3d97a4cfe8306cd6079.

Workarounds

  • Restrict local user access to the graphics subsystem using appropriate permissions and policies
  • Disable the Intel Xe DRM driver (xe.ko) on systems where it is not required
  • Use alternative graphics drivers if available for affected hardware
  • Implement access controls to limit which users can interact with DRM device nodes
bash
# Configuration example - Disable Xe driver loading
echo "blacklist xe" >> /etc/modprobe.d/blacklist.conf
update-initramfs -u

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/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Changes

  • Kernel Git Commit Fixes
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23458: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23435: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23456: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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