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

CVE-2026-23360: Linux Kernel NVMe Admin Queue Leak Bug

CVE-2026-23360 is an admin queue leak flaw in the Linux kernel NVMe subsystem that causes resource leaks during controller resets. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23360 Overview

A memory leak vulnerability has been identified in the Linux kernel's NVMe (Non-Volatile Memory Express) subsystem. The flaw occurs during controller reset operations when nvme_alloc_admin_tag_set() is called while a previous admin queue still exists. The failure to properly release the existing admin queue before allocating a new one results in orphaned memory resources.

This vulnerability was introduced as a regression by commit 03b3bcd319b3 ("nvme: fix admin request_queue lifetime"), which inadvertently created a code path where admin queues could be leaked during controller reset sequences.

Critical Impact

Systems with NVMe storage devices may experience memory exhaustion over time due to leaked admin queues during repeated controller reset operations, potentially leading to system instability or denial of service conditions.

Affected Products

  • Linux kernel (NVMe subsystem)
  • Systems utilizing NVMe storage devices with kernel drivers

Discovery Timeline

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

Technical Details for CVE-2026-23360

Vulnerability Analysis

The vulnerability exists within the NVMe driver's controller reset handling code path. When an NVMe controller undergoes a reset operation, the kernel must deallocate existing resources and reinitialize the controller's admin queue. The admin queue is a critical component used for management commands between the host and the NVMe controller.

The flaw manifests when nvme_alloc_admin_tag_set() is invoked during a controller reset scenario. Under normal circumstances, the function should verify whether an existing admin queue is present and release it before proceeding with the allocation of a new queue structure. However, due to the regression introduced by a previous patch, this cleanup step was inadvertently bypassed.

The practical impact is that each controller reset operation leaves behind an orphaned admin queue in kernel memory. Over time, particularly on systems experiencing frequent controller resets (such as those with hot-plug events, power management transitions, or error recovery scenarios), this memory leak can accumulate and lead to significant resource exhaustion.

Root Cause

The root cause is a regression introduced by commit 03b3bcd319b3 ("nvme: fix admin request_queue lifetime"). While this commit aimed to address lifetime management issues with the admin request queue, it inadvertently removed or bypassed the cleanup logic that released existing admin queues during controller reset operations.

The missing cleanup step means that when nvme_alloc_admin_tag_set() allocates a new admin tag set, any previously existing admin queue structure remains allocated but unreferenced, creating a classic memory leak pattern.

Attack Vector

This vulnerability is primarily exploitable as a local denial of service attack vector. An attacker with local access to a system could potentially trigger repeated NVMe controller resets to accelerate memory exhaustion. The attack scenario involves:

  1. Gaining local access to a system with NVMe storage devices
  2. Triggering controller reset operations through various mechanisms (e.g., manipulating sysfs interfaces, causing error conditions)
  3. Repeating the reset operations to accumulate leaked memory
  4. Eventually exhausting available kernel memory, leading to system instability or crash

The vulnerability is classified with an unknown attack vector in formal scoring, but the practical exploitation requires local system access and the ability to trigger controller reset events.

Detection Methods for CVE-2026-23360

Indicators of Compromise

  • Gradual increase in kernel memory usage (specifically in slab allocations) over time
  • Memory pressure warnings or OOM (Out of Memory) killer activations on systems with NVMe storage
  • Unusual frequency of NVMe controller reset events in kernel logs
  • Presence of orphaned NVMe admin queue structures in kernel memory dumps

Detection Strategies

  • Monitor kernel memory allocation patterns using tools like /proc/slabinfo or slabtop for NVMe-related allocations
  • Configure alerting on NVMe controller reset events via kernel log monitoring (dmesg patterns)
  • Track system memory trends over extended periods, particularly on servers with active NVMe storage
  • Implement kernel memory leak detection tools such as kmemleak to identify unreferenced memory blocks

Monitoring Recommendations

  • Enable NVMe driver debug logging to capture controller reset events and their frequency
  • Set up memory utilization baselines and alert thresholds for systems running vulnerable kernel versions
  • Use SentinelOne's kernel-level monitoring capabilities to detect anomalous memory consumption patterns
  • Review system logs for patterns indicating repeated controller reset cycles

How to Mitigate CVE-2026-23360

Immediate Actions Required

  • Apply the kernel patches as soon as they become available from your Linux distribution
  • Monitor affected systems for memory leak symptoms and schedule proactive reboots if necessary
  • Reduce the frequency of NVMe controller reset operations where operationally feasible
  • Consider temporarily disabling hot-plug functionality for NVMe devices if excessive resets are occurring

Patch Information

The Linux kernel development team has released patches to address this memory leak vulnerability. Multiple patch commits have been made available for different kernel stable branches:

  • Kernel Patch Commit 64f87b96
  • Kernel Patch Commit 8eb2b3cd
  • Kernel Patch Commit b84bb7bd
  • Kernel Patch Commit e159eb85

The fix ensures that any existing admin queue is properly released before a new one is allocated during controller reset operations.

Workarounds

  • Limit NVMe controller reset operations by avoiding unnecessary hot-plug events or power management transitions
  • Implement scheduled system reboots to periodically reclaim leaked memory on systems that cannot be immediately patched
  • Monitor and alert on memory consumption to proactively address resource exhaustion before system stability is impacted
  • Consider temporarily reverting commit 03b3bcd319b3 if running a custom kernel build, though this may reintroduce the original issue it was intended to fix
bash
# Check current kernel version and NVMe driver status
uname -r
lsmod | grep nvme
# Monitor NVMe-related kernel memory allocations
cat /proc/slabinfo | grep -i nvme
# Review kernel logs for NVMe controller reset events
dmesg | grep -i "nvme.*reset"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Patch Commit

  • Kernel Patch Commit

  • Kernel Patch Commit
  • Related CVEs
  • CVE-2026-23324: Linux Kernel USB URB Anchor Vulnerability

  • CVE-2026-23308: Linux Kernel pinctrl IRQ Vulnerability

  • CVE-2026-23373: Linux Kernel RSI WiFi Driver Vulnerability

  • CVE-2026-23366: Linux Kernel NULL Pointer Vulnerability
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