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

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

CVE-2026-23063 is a use-after-free vulnerability in the Linux kernel's uacce queue management that can cause NULL pointer access during concurrent operations. This article covers technical details, impact, and mitigation.

Published: February 6, 2026

CVE-2026-23063 Overview

A race condition vulnerability has been identified in the Linux kernel's UACCE (Unified/User-space-access-intended Accelerator Framework) subsystem. The vulnerability exists in the queue release mechanism, where directly calling put_queue cannot guarantee that resources of uacce_queue have been fully released beforehand. This can lead to a NULL pointer dereference when uacce_fops_release and uacce_remove execute concurrently, particularly during forced poweroff scenarios while accelerators are still active.

Critical Impact

Local attackers can potentially cause system instability or denial of service through NULL pointer dereference when accelerator resources are improperly released during concurrent operations.

Affected Products

  • Linux kernel with UACCE subsystem enabled
  • Systems using user-space accelerator frameworks
  • Virtualization environments utilizing hardware accelerators

Discovery Timeline

  • February 4, 2026 - CVE CVE-2026-23063 published to NVD
  • February 5, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23063

Vulnerability Analysis

The vulnerability stems from improper state management in the UACCE queue handling code. When executing poweroff -f in a virtualized environment while accelerators are still operational, a race condition can occur between uacce_fops_release and uacce_remove. This race condition allows uacce_put_queue within uacce_fops_release to access a NULL ops pointer, leading to a NULL pointer dereference.

The UACCE subsystem defines queue states as follows:

  • UACCE_Q_ZOMBIE: Initial state
  • UACCE_Q_INIT: After opening uacce device
  • UACCE_Q_STARTED: After start is issued via ioctl

The vulnerability occurs because the original implementation did not properly check these states before accessing queue resources, leading to potential use of freed or NULL pointers during concurrent operations.

Root Cause

The root cause is a missing state synchronization mechanism in the queue release path. The original code directly called put_queue for the UACCE_CMD_PUT_Q command without ensuring that all dependent resources were properly released. This lack of proper state management allows a race window where one execution path may free resources while another path still attempts to access them.

Attack Vector

The vulnerability is exploitable locally by triggering concurrent queue release operations. An attacker with local access can potentially exploit this race condition by:

  1. Initiating accelerator operations through the UACCE interface
  2. Forcing a system poweroff or triggering concurrent device removal
  3. Exploiting the timing window where uacce_fops_release accesses freed ops pointer

The vulnerability manifests in the uacce_put_queue function when it attempts to dereference the ops pointer that may have already been freed by a concurrent uacce_remove operation. The fix introduces a stop_queue operation for the UACCE_CMD_PUT_Q command and defers the put_queue operation to the final resource release, with proper state checks to prevent accessing freed pointers.

Detection Methods for CVE-2026-23063

Indicators of Compromise

  • Kernel panic messages referencing NULL pointer dereference in UACCE-related functions
  • System logs showing unexpected accelerator device removal during active operations
  • Crash dumps indicating race conditions in uacce_fops_release or uacce_remove
  • Unexpected system instability when using hardware accelerators in virtualized environments

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors in the UACCE subsystem
  • Implement kernel tracing on UACCE queue state transitions
  • Deploy crash analysis tools to identify race condition patterns in accelerator operations
  • Use kernel debugging features to track uacce_queue lifecycle events

Monitoring Recommendations

  • Enable kernel auditing for accelerator device operations
  • Configure system monitoring to alert on unexpected kernel panics or crashes
  • Implement log aggregation to correlate accelerator-related events across virtualized environments
  • Deploy runtime integrity monitoring to detect abnormal kernel behavior

How to Mitigate CVE-2026-23063

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix commits
  • Consider disabling UACCE functionality if hardware accelerators are not required
  • Implement graceful shutdown procedures to avoid forced poweroff while accelerators are active
  • Monitor systems for signs of exploitation attempts

Patch Information

The vulnerability has been addressed through multiple kernel commits that introduce proper state management for UACCE queue release operations. The fix adds a stop_queue operation for the UACCE_CMD_PUT_Q command and includes state checks to prevent accessing freed pointers.

Patched commits are available:

  • Kernel Git Commit 26c08da
  • Kernel Git Commit 43f233e
  • Kernel Git Commit 47634d7
  • Kernel Git Commit 92e4f11

Workarounds

  • Disable UACCE kernel module if hardware accelerators are not in use: modprobe -r uacce
  • Implement controlled shutdown procedures that ensure accelerator operations complete before system poweroff
  • Use virtualization configurations that gracefully handle accelerator device removal
  • Restrict local access to systems with UACCE-enabled accelerators to trusted users only
bash
# Configuration example
# Disable UACCE module at boot time
echo "blacklist uacce" >> /etc/modprobe.d/blacklist.conf

# Verify UACCE module status
lsmod | grep uacce

# If already loaded, remove the module (if no active users)
modprobe -r uacce

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 Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • 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