Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23305

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

CVE-2026-23305 is a use-after-free flaw in the Linux kernel's accel/rocket driver that causes out-of-bounds memory access. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23305 Overview

A vulnerability has been identified in the Linux kernel's accel/rocket driver involving improper error path handling in the rocket_probe function. When rocket_core_init() fails (such as with EPROBE_DEFER), the driver fails to properly unwind by decrementing the counter that was incremented and, if this is the first core that failed to probe, fails to remove the rocket DRM device with rocket_device_fini(). This improper unwinding results in out-of-bounds memory accesses.

Critical Impact

Improper error path unwinding in the Linux kernel rocket driver can lead to out-of-bounds memory accesses, potentially causing kernel instability, memory corruption, or denial of service conditions.

Affected Products

  • Linux kernel with accel/rocket driver enabled
  • Systems utilizing DRM acceleration with the rocket driver
  • Linux distributions with affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-23305

Vulnerability Analysis

The vulnerability exists in the rocket_probe function within the Linux kernel's acceleration subsystem (accel/rocket). During device probe operations, a counter is incremented before calling rocket_core_init(). If this initialization function fails—commonly returning EPROBE_DEFER when a required resource is temporarily unavailable—the error handling path does not properly decrement the counter or clean up the DRM device state.

This creates an inconsistent state where the kernel maintains incorrect reference counts and device state information. The mismatch between the actual hardware/resource state and the kernel's internal tracking leads to out-of-bounds array accesses when subsequent operations attempt to reference cores or devices based on the corrupted counter values.

The improper unwinding logic contrasts with the correct cleanup sequence implemented in rocket_remove(), which properly handles counter decrementation and device finalization in the correct order.

Root Cause

The root cause is missing cleanup logic in the error path of the rocket_probe function. When rocket_core_init() fails, the function returns without:

  1. Decrementing the core counter that was incremented before the initialization attempt
  2. Calling rocket_device_fini() when this is the first core failing to probe, leaving the DRM device in an inconsistent state

This violates the principle that initialization and cleanup paths should be symmetric, leading to resource tracking inconsistencies.

Attack Vector

The vulnerability is triggered when the rocket_core_init() function encounters an error condition during driver probe operations. While the attack vector is not definitively established, the vulnerability could be triggered through:

  1. Forcing probe deferral conditions by manipulating resource availability
  2. Creating conditions that cause repeated probe failures
  3. Exploiting timing windows during driver initialization

The out-of-bounds memory accesses resulting from the corrupted counter state could potentially be leveraged to read or write kernel memory, though exploitation complexity would be high due to the specific conditions required.

Detection Methods for CVE-2026-23305

Indicators of Compromise

  • Kernel log messages indicating probe failures or deferrals in the rocket/accel driver
  • Unexpected DRM device state or missing devices after probe operations
  • Memory corruption warnings or kernel oops related to the rocket driver
  • Kernel crash dumps showing out-of-bounds accesses in rocket driver code paths

Detection Strategies

  • Monitor kernel logs for rocket_core_init failure messages and EPROBE_DEFER returns
  • Implement kernel address sanitizer (KASAN) to detect out-of-bounds memory accesses
  • Use kernel debugging tools to track reference counter anomalies in driver subsystems
  • Deploy runtime verification tools to monitor driver probe/remove symmetry

Monitoring Recommendations

  • Enable enhanced kernel logging for the DRM and acceleration subsystems
  • Configure alerting for kernel oops or panics originating from rocket driver components
  • Implement automated kernel log analysis for probe failure patterns
  • Monitor system stability metrics during driver load/unload operations

How to Mitigate CVE-2026-23305

Immediate Actions Required

  • Apply the kernel patches from the official kernel git repository
  • Reboot systems after patching to ensure the fix is active
  • If the rocket driver is not required, consider blacklisting the module temporarily
  • Review and update to a patched kernel version as soon as available from your distribution

Patch Information

The Linux kernel maintainers have released fixes for this vulnerability. The patches ensure proper unwinding in the error path by decrementing the counter and calling rocket_device_fini() when appropriate. The fix aligns the error path behavior with the cleanup logic in rocket_remove().

Patches are available from the following kernel git commits:

  • Kernel Git Commit Changes
  • Kernel Git Commit Updates
  • Kernel Git Commit Fixes

Workarounds

  • Blacklist the rocket driver module if not required: add blacklist rocket to /etc/modprobe.d/blacklist.conf
  • Disable automatic loading of the accel/rocket driver until patches can be applied
  • Use kernel boot parameters to prevent driver loading if applicable
  • Monitor systems closely for signs of exploitation until patching is complete
bash
# Configuration example
# Blacklist the rocket driver module
echo "blacklist rocket" >> /etc/modprobe.d/blacklist-rocket.conf

# Prevent module loading for current session
modprobe -r rocket 2>/dev/null || true

# Verify module is not loaded
lsmod | grep rocket

# Update initramfs to persist changes
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 Updates

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

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

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

  • CVE-2026-31419: 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