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-2024-41087

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

CVE-2024-41087 is a use-after-free vulnerability in Linux Kernel's libata-core that causes a double free error during host allocation failures. This article covers the technical details, affected versions, and mitigation steps.

Updated: January 22, 2026

CVE-2024-41087 Overview

CVE-2024-41087 is a double free vulnerability discovered in the Linux kernel's libata-core component, specifically within the ATA host allocation error handling path. The flaw occurs when ata_port_alloc() fails during ata_host_alloc() execution, leading to improper memory management where the host structure is freed twice—once through devres_release_group() calling ata_host_release(), and again directly via kfree(host) in the error handling code.

Critical Impact

Local attackers with low privileges can trigger a kernel panic or potentially achieve code execution by exploiting this double free condition in the memory allocator, resulting in system instability or complete compromise.

Affected Products

  • Linux Kernel (multiple versions with libata-core component)
  • Systems using AHCI storage controllers
  • Debian Linux (addressed in LTS announcement)

Discovery Timeline

  • 2024-07-29 - CVE-2024-41087 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-41087

Vulnerability Analysis

This vulnerability represents a classic double free memory corruption issue (CWE-415) in the Linux kernel's ATA subsystem. The root cause lies in improper coordination between the device resource management (devres) framework and explicit memory deallocation in error paths.

When ata_host_alloc() encounters a failure—for example, if ata_port_alloc() returns an error—the function jumps to its err_out label. This triggers a call to devres_release_group(), which in turn invokes ata_host_release(). The ata_host_release() function includes a kfree(host) call to free the host structure. However, the error handling code in ata_host_alloc() also contains a separate kfree(host) call, resulting in the same memory being freed twice.

The kernel stack trace provided in the vulnerability report confirms this behavior, showing the crash occurring in kfree+0x2cf/0x2f0 with an "invalid opcode" exception at mm/slub.c:553, which is the SLUB allocator's detection of a double free condition.

Root Cause

The vulnerability stems from a logic error in the ata_host_alloc() function's error handling path. The code failed to account for the fact that when devres_open_group() succeeds and a subsequent operation fails, calling devres_release_group() will automatically release all resources managed by that group—including the host structure via the registered ata_host_release() callback. The additional explicit kfree(host) call in the error path therefore operates on already-freed memory.

Attack Vector

The attack requires local access to the system. An attacker with low privileges could potentially trigger this vulnerability by manipulating conditions that cause ata_port_alloc() or other allocation functions to fail during ATA host initialization. This could be achieved through:

  1. Exhausting system memory to force allocation failures
  2. Loading/unloading kernel modules that interact with the ATA subsystem
  3. Triggering device hotplug events that exercise the vulnerable code path

The vulnerability manifests in the ata_host_alloc() function within the libata-core module. When allocation fails after the device resource group is opened, the cleanup path incorrectly frees the host structure twice. The fix ensures kfree(host) is only called if devres_open_group() failed, preventing the double free condition.

Detection Methods for CVE-2024-41087

Indicators of Compromise

  • Kernel panic messages containing "kernel BUG at mm/slub.c" with invalid opcode errors
  • Stack traces showing kfree called from ata_host_alloc or related libata functions
  • System crashes during ATA/AHCI device initialization or hotplug events
  • Kernel log entries indicating double free detection in the SLUB allocator

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for SLUB allocator warnings or BUG messages related to double free conditions
  • Implement kernel crash dump analysis (kdump/crash) to identify exploitation attempts targeting this vulnerability
  • Deploy runtime memory debugging tools like KASAN (Kernel Address Sanitizer) to detect memory corruption in development/testing environments
  • Use SentinelOne's kernel-level monitoring capabilities to detect anomalous behavior in the ATA subsystem

Monitoring Recommendations

  • Enable kernel debugging options (CONFIG_DEBUG_SLAB, CONFIG_KASAN) in non-production environments to catch memory corruption issues
  • Monitor for unusual patterns of module loading/unloading involving libata or ahci modules
  • Track system stability metrics and correlate unexpected reboots with storage subsystem activity
  • Implement centralized log aggregation to identify patterns of exploitation attempts across multiple systems

How to Mitigate CVE-2024-41087

Immediate Actions Required

  • Update the Linux kernel to a patched version as soon as available from your distribution
  • Review and apply patches from the official kernel git repository for affected kernel versions
  • Monitor systems running vulnerable kernel versions for signs of exploitation
  • Consider restricting local user access on critical systems until patches are applied

Patch Information

The Linux kernel development team has released patches addressing this vulnerability across multiple stable kernel branches. The fix modifies the error handling logic in ata_host_alloc() to only call kfree(host) when devres_open_group() fails, preventing the double free condition.

Official patches are available from the following kernel git commits:

  • Linux Kernel Commit 010de9a
  • Linux Kernel Commit 062e256
  • Linux Kernel Commit 290073b
  • Linux Kernel Commit 56f1c7e
  • Linux Kernel Commit 5dde5f8
  • Linux Kernel Commit 702c1ed
  • Linux Kernel Commit 8106da4
  • Linux Kernel Commit ab9e0c5

Debian users should refer to the Debian LTS Announcement for distribution-specific updates.

Workarounds

  • Limit local user access to systems running vulnerable kernel versions to reduce the attack surface
  • Implement resource quotas (ulimit) to make memory exhaustion attacks more difficult
  • Monitor and restrict module loading/unloading operations on production systems
  • Consider using kernel lockdown mode to prevent unauthorized kernel modifications
bash
# Check current kernel version for vulnerability assessment
uname -r

# Verify if libata module is loaded
lsmod | grep libata

# Monitor kernel logs for double free warnings
dmesg | grep -i "double free\|slub\|kfree"

# Restrict module loading (requires root)
echo 1 > /proc/sys/kernel/modules_disabled

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • 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
  • Vendor Resources
  • Linux Kernel Commit 010de9a

  • Linux Kernel Commit 062e256

  • Linux Kernel Commit 290073b

  • Linux Kernel Commit 56f1c7e

  • Linux Kernel Commit 5dde5f8

  • Linux Kernel Commit 702c1ed

  • Linux Kernel Commit 8106da4

  • Linux Kernel Commit ab9e0c5
  • Related CVEs
  • CVE-2026-23427: Linux Kernel Use-After-Free Vulnerability

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

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

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