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

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

CVE-2024-44974 is a use-after-free flaw in the Linux Kernel MPTCP path manager that occurs when selecting endpoints outside RCU protection. This post covers the technical details, affected systems, and mitigation.

Updated: January 22, 2026

CVE-2024-44974 Overview

CVE-2024-44974 is a Use-After-Free vulnerability discovered in the Linux kernel's Multipath TCP (MPTCP) path manager implementation. The vulnerability exists in the select_local_address() and select_signal_address() functions, which select an endpoint entry from a list within an RCU (Read-Copy-Update) protected section but return a reference to be read later. If the entry is dereferenced after the RCU unlock, reading the information could trigger a Use-After-Free condition.

Critical Impact

Local attackers with low privileges can exploit this vulnerability to potentially achieve code execution, data corruption, or cause system instability through memory corruption in the kernel's MPTCP subsystem.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.11-rc1 through 6.11-rc4
  • Debian-based distributions using vulnerable kernel versions

Discovery Timeline

  • September 4, 2024 - CVE-2024-44974 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-44974

Vulnerability Analysis

This Use-After-Free vulnerability occurs in the MPTCP (Multipath TCP) path manager component of the Linux kernel. The core issue lies in how the select_local_address() and select_signal_address() functions handle endpoint entries during the address selection process.

RCU (Read-Copy-Update) is a synchronization mechanism in the Linux kernel designed for read-mostly scenarios. When these functions select an endpoint entry from the list, they do so within an RCU-protected critical section. However, the functions return a reference to the selected entry, which may be accessed after the RCU read lock has been released. This creates a race condition where the referenced memory could be freed by another thread before it is accessed, resulting in a Use-After-Free condition.

The vulnerability affects systems using MPTCP, a protocol extension that enables the use of multiple paths for a single TCP connection. Exploitation could lead to information disclosure, privilege escalation, or denial of service depending on how the freed memory is reallocated and what data is written to it.

Root Cause

The root cause is improper memory management in the MPTCP path manager's endpoint selection logic. The RCU protection only guarantees safe access to the list during traversal within the critical section. Once the RCU read lock is released via rcu_read_unlock(), any pointer to list elements becomes unsafe because the memory could be reclaimed by the kernel.

The fix involves copying the required endpoint information while still inside the RCU-protected section, ensuring that no stale pointers are dereferenced after the lock is released. This approach is particularly suitable because the address ID may need modification to handle the ID0 case, making a copy the appropriate solution.

Attack Vector

The attack requires local access with low privileges. An attacker would need to trigger the MPTCP path manager's address selection functions and time their attack to cause the endpoint entry to be freed while a stale reference still exists. This could be accomplished by:

  1. Establishing an MPTCP connection to trigger endpoint selection
  2. Racing endpoint removal operations against the selection functions
  3. Manipulating the timing to cause a dereference of freed memory
  4. Potentially controlling the contents of the reallocated memory to achieve code execution

The vulnerability exploitation requires precise timing and understanding of kernel memory allocation patterns, but successful exploitation could result in kernel-level code execution.

Detection Methods for CVE-2024-44974

Indicators of Compromise

  • Unexpected kernel crashes or panics with stack traces referencing mptcp_pm_nl_get_local_id, select_local_address, or select_signal_address functions
  • KASAN (Kernel Address Sanitizer) reports indicating Use-After-Free in MPTCP-related code paths
  • Unusual MPTCP connection behavior or connection failures accompanied by kernel log errors
  • Memory corruption symptoms in systems actively using Multipath TCP

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) on test systems to detect Use-After-Free conditions in kernel memory operations
  • Monitor kernel logs (dmesg, /var/log/kern.log) for MPTCP-related error messages or memory violation warnings
  • Implement kernel tracing using ftrace or eBPF to monitor MPTCP path manager function calls
  • Deploy endpoint detection solutions capable of identifying kernel-level memory corruption attempts

Monitoring Recommendations

  • Configure syslog aggregation to centralize kernel error messages from all Linux servers
  • Set up alerts for kernel oops or panic events, particularly those involving network subsystem components
  • Monitor MPTCP connection statistics and watch for anomalies in multipath connection handling
  • Use SentinelOne's Linux agent capabilities to detect suspicious kernel behavior and potential exploitation attempts

How to Mitigate CVE-2024-44974

Immediate Actions Required

  • Apply the latest kernel security patches from your distribution vendor immediately
  • If patching is not immediately possible, consider disabling MPTCP on affected systems using sysctl net.mptcp.enabled=0
  • Review and prioritize patching for systems that actively use Multipath TCP functionality
  • Monitor affected systems for signs of exploitation until patches can be applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix copies the required endpoint information while inside the RCU-protected section to prevent any Use-After-Free issues. Patches are available through the following commits:

  • Kernel Security Patch
  • Kernel Security Commit
  • Kernel Security Improvement

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

Workarounds

  • Disable MPTCP on systems where it is not required by setting net.mptcp.enabled=0 via sysctl
  • Implement network segmentation to limit local access to critical systems running vulnerable kernels
  • Use mandatory access control systems (SELinux, AppArmor) to restrict which processes can interact with MPTCP sockets
  • Monitor for unusual MPTCP activity while awaiting patch deployment
bash
# Disable MPTCP as a temporary workaround
echo 0 | sudo tee /proc/sys/net/mptcp/enabled

# Make the change persistent across reboots
echo "net.mptcp.enabled = 0" | sudo tee -a /etc/sysctl.d/99-disable-mptcp.conf
sudo sysctl --system

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-416
  • Technical References
  • Kernel Security Update

  • Kernel Vulnerability Fix

  • Kernel Bug Correction

  • Debian LTS Announcement

  • Debian LTS Notice
  • Vendor Resources
  • Kernel Security Patch

  • Kernel Security Commit

  • Kernel Security Improvement
  • Related CVEs
  • CVE-2026-23322: Linux Kernel Use-After-Free Vulnerability

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

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

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