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

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

CVE-2024-41006 is a use-after-free flaw in the Linux Kernel's netrom module that causes memory leaks in nr_heartbeat_expiry(). This article covers the technical details, affected versions, security impact, and mitigation.

Updated: January 21, 2026

CVE-2024-41006 Overview

CVE-2024-41006 is a memory leak vulnerability in the Linux kernel's NET/ROM amateur radio networking subsystem. The flaw exists in the nr_heartbeat_expiry() function, where an improper reference count handling leads to unreleased socket memory when the SOCK_DESTROY flag is set. This vulnerability was discovered through Syzkaller fuzzing and reported by InfoTeCS on behalf of the Linux Verification Center.

Critical Impact

Local attackers with low privileges can trigger memory exhaustion through repeated exploitation, potentially causing system instability or denial of service on systems with NET/ROM protocol enabled.

Affected Products

  • Linux Kernel (multiple stable versions)
  • Linux Kernel 6.10-rc1 through 6.10-rc4
  • Debian Linux (as noted in LTS advisory)

Discovery Timeline

  • July 12, 2024 - CVE-2024-41006 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-41006

Vulnerability Analysis

The vulnerability resides in the NET/ROM protocol implementation within the Linux kernel, specifically in the socket reference counting logic of nr_heartbeat_expiry(). The issue stems from a previous commit (409db27e3a2e) that attempted to fix a use-after-free condition in listening sockets but inadvertently introduced a memory leak scenario.

When a NET/ROM socket transitions through its state machine, specifically when moving from NR_STATE_3 to NR_STATE_2 during nr_release(), the SOCK_DESTROY flag is set. If the heartbeat timer expires while the socket is in NR_STATE_0 with the SOCK_DESTROY flag set, the code incorrectly calls sock_hold() to increment the reference count. However, since the file descriptor has already been closed and nr_release() has been invoked, no subsequent call to nr_destroy_socket() will occur to decrement this reference, resulting in a permanent memory leak.

Root Cause

The root cause is an overly broad condition in nr_heartbeat_expiry() that calls sock_hold() for both:

  • Case A: Sockets with SOCK_DESTROY flag set
  • Case B: Listening sockets with SOCK_DEAD flag set

For Case A, the sock_hold() call is incorrect because the socket cleanup path has already been initiated through nr_release(), and no code path exists to call sock_put() to balance the reference count. The fix restricts sock_hold() to only Case B (listening sockets), where proper reference counting is maintained.

Attack Vector

The attack requires local access to the system with low privileges. An attacker must be able to create and manipulate NET/ROM sockets through the kernel's networking interface. The exploitation flow follows this sequence:

  1. Establish a NET/ROM connection via nr_connect()
  2. Trigger the data link establishment through nr_establish_data_link()
  3. Start the heartbeat timer with nr_start_heartbeat()
  4. Close the socket to invoke nr_release(), setting SOCK_DESTROY
  5. Allow frame processing to transition the socket to NR_STATE_0
  6. Wait for heartbeat expiry, which leaks the socket memory

The vulnerability does not provide code execution capabilities but can be exploited repeatedly to exhaust kernel memory resources. Each leaked socket consumes kernel memory that is never reclaimed, eventually leading to system degradation or denial of service.

Detection Methods for CVE-2024-41006

Indicators of Compromise

  • Gradual increase in kernel memory usage without corresponding user-space activity
  • Accumulation of orphaned NET/ROM sockets visible in /proc/net/nr or via ss utility
  • System instability or out-of-memory (OOM) killer activations on systems with NET/ROM enabled

Detection Strategies

  • Monitor kernel memory allocation patterns using tools like slabtop for abnormal growth in socket-related slabs
  • Implement kernel memory leak detection using kmemleak if available in development environments
  • Deploy SentinelOne's Singularity platform to detect anomalous kernel behavior and memory consumption patterns

Monitoring Recommendations

  • Track NET/ROM socket creation and destruction rates for imbalances indicating leaks
  • Set up alerting for systems exhibiting sustained kernel memory growth
  • Monitor for repeated NET/ROM connection attempts from untrusted local users

How to Mitigate CVE-2024-41006

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • If immediate patching is not possible, disable the NET/ROM kernel module (modprobe -r netrom) if not required
  • Restrict local user access to systems where NET/ROM is essential

Patch Information

Multiple patches have been released across stable kernel branches to address this vulnerability. The fix modifies nr_heartbeat_expiry() to only call sock_hold() for listening sockets with SOCK_DEAD flag, excluding sockets that only have SOCK_DESTROY set. Key patch commits include:

  • Kernel Git Commit 0b913024
  • Kernel Git Commit 280cf11
  • Kernel Git Commit 5391f9d
  • Kernel Git Commit a02fd5d

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

Workarounds

  • Disable the NET/ROM protocol module if amateur radio networking is not required: modprobe -r netrom
  • Blacklist the netrom module to prevent automatic loading by adding blacklist netrom to /etc/modprobe.d/blacklist.conf
  • Implement resource limits and monitoring to detect and respond to memory exhaustion conditions
bash
# Disable NET/ROM module (temporary)
modprobe -r netrom

# Permanently blacklist NET/ROM module
echo "blacklist netrom" >> /etc/modprobe.d/blacklist-netrom.conf

# Verify module is not loaded
lsmod | grep netrom

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-401
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit 0b913024

  • Kernel Git Commit 280cf11

  • Kernel Git Commit 5391f9d

  • Kernel Git Commit a02fd5d

  • Kernel Git Commit b6ebe4f

  • Kernel Git Commit d377f5a

  • Kernel Git Commit d616876

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