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

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

CVE-2024-46800 is a use-after-free vulnerability in the Linux Kernel's netem scheduler that can lead to memory corruption and system instability. This article covers the technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2024-46800 Overview

CVE-2024-46800 is a use-after-free vulnerability in the Linux kernel's network emulator (netem) queueing discipline. The vulnerability exists in the netem_dequeue() function, where improper handling of packets enqueued to an inner qdisc can lead to memory corruption when the inner qdisc returns __NET_XMIT_STOLEN. When this occurs, the packet is dropped but qdisc_tree_reduce_backlog() is not called to update the parent's q.qlen, resulting in a use-after-free condition that can be detected by KASAN (Kernel Address Sanitizer).

Critical Impact

This use-after-free vulnerability in the Linux kernel networking subsystem could allow a local attacker with low privileges to potentially achieve code execution, information disclosure, or denial of service by exploiting memory corruption in the qdisc (queueing discipline) component.

Affected Products

  • Linux Kernel versions prior to patched releases
  • Linux Kernel 6.11 RC1 through RC6
  • Multiple stable kernel branches (see vendor commits for specific version ranges)

Discovery Timeline

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

Technical Details for CVE-2024-46800

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free) and affects the network traffic control subsystem of the Linux kernel, specifically the netem (network emulator) module. The netem qdisc is commonly used for network testing and simulation by introducing delays, packet loss, and other network conditions.

The vulnerability is similar to a previously fixed issue referenced in commit e04991a48dbaf382 ("netem: fix return value if duplicate enqueue fails"). When netem_dequeue() enqueues a packet to an inner qdisc and that qdisc returns __NET_XMIT_STOLEN, the packet is considered dropped. However, the code fails to call qdisc_tree_reduce_backlog() to properly update the parent queue's length counter (q.qlen). This inconsistency between the actual queue state and the tracked queue length creates a use-after-free condition where freed memory may be subsequently accessed.

Root Cause

The root cause is a missing call to qdisc_tree_reduce_backlog() in the netem_dequeue() function when handling the __NET_XMIT_STOLEN return value from an inner qdisc. When a packet is stolen (consumed) by the inner qdisc but the parent's backlog counter is not decremented, the kernel maintains a stale reference that can lead to accessing freed memory during subsequent operations on the qdisc hierarchy.

Attack Vector

The vulnerability requires local access and can be triggered through specific traffic control (tc) configurations. An attacker with the ability to configure network qdiscs can create a chain of qdiscs involving netem with mirred egress redirect actions that trigger the vulnerable code path.

The vulnerability can be triggered using the following sequence of traffic control commands and network operations:

bash
# Commands to trigger the use-after-free (from CVE description)
ip link add type dummy
ip link set lo up
ip link set dummy0 up
tc qdisc add dev lo parent root handle 1: drr
tc filter add dev lo parent 1: basic classid 1:1
tc class add dev lo classid 1:1 drr
tc qdisc add dev lo parent 1:1 handle 2: netem
tc qdisc add dev lo parent 2: handle 3: drr
tc filter add dev lo parent 3: basic classid 3:1 action mirred egress redirect dev dummy0
tc class add dev lo classid 3:1 drr
ping -c1 -W0.01 localhost  # Trigger bug
tc class del dev lo classid 1:1
tc class add dev lo classid 1:1 drr
ping -c1 -W0.01 localhost  # UaF occurs here

Detection Methods for CVE-2024-46800

Indicators of Compromise

  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in netem-related functions
  • Kernel oops or panic messages referencing netem_dequeue or related qdisc functions
  • Unexpected system crashes when complex qdisc configurations involving netem are in use

Detection Strategies

  • Enable KASAN in development and testing kernels to detect memory corruption issues
  • Monitor kernel logs for warnings or errors related to the netem module (sch_netem)
  • Audit systems for complex traffic control configurations that chain netem with redirect actions
  • Use kernel tracing (ftrace) to monitor netem_dequeue() and related qdisc functions

Monitoring Recommendations

  • Implement syslog monitoring for kernel memory corruption warnings and KASAN reports
  • Review traffic control configurations on systems where untrusted users may have CAP_NET_ADMIN capabilities
  • Monitor for unusual tc command executions that create complex qdisc hierarchies
  • Consider restricting tc command access to trusted administrators only

How to Mitigate CVE-2024-46800

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix
  • Restrict access to traffic control (tc) commands and CAP_NET_ADMIN capability
  • Review and simplify any existing complex qdisc configurations involving netem
  • Monitor systems for signs of exploitation attempts

Patch Information

Multiple kernel stable branches have received patches for this vulnerability. The fix ensures that qdisc_tree_reduce_backlog() is properly called when packets are stolen by inner qdiscs, maintaining consistent queue state. Apply the appropriate patch for your kernel version:

  • Kernel Commit 14f91ab
  • Kernel Commit 295ad5a
  • Kernel Commit 32008ab
  • Kernel Commit 3b3a2a9
  • Kernel Commit 98c75d7
  • Kernel Commit db2c235
  • Kernel Commit dde33a9
  • Kernel Commit f0bddb4

Debian users should refer to the Debian LTS Announcement October 2024 and Debian LTS Announcement January 2025 for distribution-specific updates.

Workarounds

  • Restrict CAP_NET_ADMIN capability to trusted users only to prevent unauthorized qdisc manipulation
  • Avoid using netem qdisc with complex redirect configurations in production environments
  • If netem functionality is not required, consider blacklisting the sch_netem module
  • Implement network namespaces with restricted capabilities to isolate untrusted workloads
bash
# Blacklist sch_netem module if not needed
echo "blacklist sch_netem" >> /etc/modprobe.d/blacklist-netem.conf

# Remove any existing netem qdiscs
tc qdisc del dev lo root 2>/dev/null || true

# Verify module is not loaded
lsmod | grep sch_netem

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.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
  • Debian LTS Announcement October 2024

  • Debian LTS Announcement January 2025
  • Vendor Resources
  • Kernel Commit 14f91ab

  • Kernel Commit 295ad5a

  • Kernel Commit 32008ab

  • Kernel Commit 3b3a2a9

  • Kernel Commit 98c75d7

  • Kernel Commit db2c235

  • Kernel Commit dde33a9

  • Kernel Commit f0bddb4
  • 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