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
    • 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-2024-41073

CVE-2024-41073: Linux Kernel Use-After-Free Vulnerability

CVE-2024-41073 is a use-after-free vulnerability in the Linux kernel's NVMe subsystem that can cause double free errors during discard request retries. This article covers technical details, affected systems, and mitigation.

Updated: January 22, 2026

CVE-2024-41073 Overview

A Double Free vulnerability has been discovered in the Linux kernel's NVMe (Non-Volatile Memory Express) driver subsystem. The flaw occurs when a discard request needs to be retried, and that retry fails before a new special payload is added. This condition results in a double free of the special payload memory, which can lead to memory corruption and potential privilege escalation on affected systems.

Critical Impact

Local attackers with low privileges can exploit this double free condition to potentially corrupt kernel memory, leading to privilege escalation or denial of service on systems utilizing NVMe storage devices.

Affected Products

  • Linux Kernel (multiple versions)
  • Debian Linux 11.0

Discovery Timeline

  • 2024-07-29 - CVE-2024-41073 published to NVD
  • 2026-01-14 - Last updated in NVD database

Technical Details for CVE-2024-41073

Vulnerability Analysis

This vulnerability exists within the NVMe driver's handling of discard requests in the Linux kernel. The NVMe subsystem uses special payload structures to manage certain types of I/O operations, including discard (TRIM) commands that inform the storage device about blocks no longer in use.

The vulnerability stems from improper memory management during the retry logic for failed discard operations. When a discard request initially fails and the kernel attempts to retry the operation, there exists a race condition where the original special payload may be freed while still referenced. If the retry subsequently fails before a new special payload can be allocated and attached, the cleanup code attempts to free the already-deallocated memory, resulting in a double free condition.

Double free vulnerabilities (CWE-415) in kernel context are particularly dangerous because they can corrupt the kernel's memory allocator metadata. An attacker who can trigger this condition reliably may be able to manipulate heap structures to achieve arbitrary code execution with kernel privileges.

Root Cause

The root cause is the failure to clear the RQF_SPECIAL_LOAD request flag when a request is cleaned up after a failed retry attempt. This flag indicates that a special payload is attached to the request, and when it remains set incorrectly, the kernel's cleanup routines assume a payload exists and attempt to free it again.

The fix involves clearing the RQF_SPECIAL_LOAD flag during request cleanup, ensuring that subsequent operations correctly understand the state of any attached payloads and prevent double deallocation.

Attack Vector

The attack requires local access to the system with the ability to perform NVMe I/O operations. An attacker with low-level privileges can attempt to trigger the vulnerability through the following attack surface:

  1. Initiate discard operations on NVMe storage devices
  2. Induce failure conditions that cause discard retries (potentially through resource exhaustion or timing manipulation)
  3. Exploit the race window between retry failure and payload reallocation
  4. Leverage the resulting memory corruption for privilege escalation

The exploitation complexity is increased by the need to win a race condition, but the local attack vector and low privilege requirements make this vulnerability accessible to authenticated local users.

Detection Methods for CVE-2024-41073

Indicators of Compromise

  • Unexpected kernel panics or system crashes related to NVMe subsystem operations
  • Kernel log messages indicating memory corruption in nvme or blk-mq subsystems
  • SLUB/SLAB allocator warnings about double-free or use-after-free conditions
  • Unusual patterns of NVMe discard operations in system logs

Detection Strategies

  • Monitor kernel logs for memory subsystem errors using dmesg or syslog analysis
  • Deploy kernel runtime verification tools like KASAN (Kernel Address Sanitizer) to detect double-free conditions
  • Implement audit rules to monitor for suspicious NVMe device interactions
  • Use SentinelOne Singularity Platform for real-time kernel-level threat detection

Monitoring Recommendations

  • Enable kernel debug options for memory allocation tracking in development/test environments
  • Configure system monitoring to alert on kernel oops or panic events
  • Review NVMe driver logs for retry patterns that could indicate exploitation attempts
  • Implement centralized log aggregation to correlate events across multiple systems

How to Mitigate CVE-2024-41073

Immediate Actions Required

  • Update Linux kernel to patched versions as indicated in vendor advisories
  • Apply Debian security updates for affected Debian 11 systems
  • Prioritize patching for systems with NVMe storage that are accessible to untrusted local users
  • Consider restricting NVMe device access permissions where feasible

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix clears the RQF_SPECIAL_LOAD flag when the request is cleaned, preventing the double free condition. Multiple kernel stable branches have received patches:

  • Kernel Git Commit 1b9fd1265fac
  • Kernel Git Commit 882574942a9b
  • Kernel Git Commit ae84383c96d6
  • Kernel Git Commit c5942a14f795
  • Kernel Git Commit e5d574ab37f5
  • Kernel Git Commit f3ab45aacd25

Debian users should refer to the Debian LTS Security Announcement for package updates.

Workarounds

  • Restrict local user access to systems with NVMe storage until patching is complete
  • Limit unprivileged user access to NVMe device nodes through permission adjustments
  • Consider temporarily disabling discard/TRIM operations via mount options (nodiscard) as a short-term mitigation
  • Deploy additional access controls and monitoring for systems that cannot be immediately patched
bash
# Temporary workaround: Mount filesystems with nodiscard option
# Edit /etc/fstab to add nodiscard mount option for NVMe devices
# Example entry:
# /dev/nvme0n1p1 /data ext4 defaults,nodiscard 0 2

# Remount existing filesystems without discard
mount -o remount,nodiscard /mount/point

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-415
  • Technical References
  • Debian LTS Announcement

  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log

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