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-2025-21971

CVE-2025-21971: Linux Kernel DOS Vulnerability

CVE-2025-21971 is a denial of service vulnerability in Linux Kernel affecting net_sched class creation. Improper handling of TC_H_ROOT classid can cause system crashes. This article covers technical details, impact, and fixes.

Updated: January 22, 2026

CVE-2025-21971 Overview

A vulnerability has been identified in the Linux kernel's network scheduler (net_sched) subsystem that allows the creation of Qdisc classes with the reserved TC_H_ROOT classid (0xFFFFFFFF). The function qdisc_tree_reduce_backlog() uses TC_H_ROOT as a termination condition when traversing up the qdisc tree to update parent backlog counters. When a class is created with classid TC_H_ROOT, the traversal terminates prematurely at this class instead of reaching the actual root qdisc, causing parent statistics to be incorrectly maintained. In the case of DRR (Deficit Round Robin) scheduler, this can lead to a kernel crash.

Critical Impact

Local attackers with privileges to configure network traffic control can trigger an infinite loop condition, causing a system crash or denial of service on affected Linux systems.

Affected Products

  • Linux Kernel versions from 2.6.25 through multiple stable branches
  • Linux Kernel 6.14-rc1 through 6.14-rc6
  • Various Linux distributions using vulnerable kernel versions

Discovery Timeline

  • April 1, 2025 - CVE-2025-21971 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-21971

Vulnerability Analysis

This vulnerability exists in the Linux kernel's traffic control (TC) framework, specifically within the network scheduler subsystem. The qdisc_tree_reduce_backlog() function is responsible for traversing the qdisc hierarchy to update backlog counters when packets are dequeued or dropped. The function uses TC_H_ROOT (defined as 0xFFFFFFFF) as a sentinel value to determine when it has reached the top of the qdisc tree.

The flaw occurs because there is no validation preventing the creation of qdisc classes with the TC_H_ROOT classid. When such a class exists in the hierarchy, the backlog traversal logic encounters this classid and incorrectly interprets it as having reached the root, terminating the upward traversal prematurely. This results in incorrect maintenance of parent statistics and, in certain schedulers like DRR, can trigger an infinite loop or crash condition as reported by researcher Mingi Cho.

Root Cause

The root cause is a missing input validation check in the qdisc class creation path. The kernel should reject any attempt to create a class with the reserved TC_H_ROOT classid (0xFFFFFFFF), as this value is used internally as a termination sentinel in tree traversal algorithms. Without this validation, user-space tools like tc can create classes that corrupt the internal tree traversal logic.

Attack Vector

This vulnerability requires local access to the system with sufficient privileges to configure network traffic control rules. An attacker with CAP_NET_ADMIN capability or root privileges can exploit this vulnerability by:

  1. Using the tc command-line utility or netlink sockets to interact with the traffic control subsystem
  2. Creating a qdisc class with the classid set to TC_H_ROOT (0xFFFFFFFF)
  3. Triggering backlog updates through normal network traffic processing
  4. Causing the kernel to enter an infinite loop or crash due to corrupted tree traversal

The vulnerability is particularly dangerous in containerized environments where network namespaces may grant CAP_NET_ADMIN to unprivileged processes.

Detection Methods for CVE-2025-21971

Indicators of Compromise

  • Unexpected kernel panics or system crashes related to the net_sched subsystem
  • High CPU utilization in kernel context without corresponding user-space activity
  • System hangs occurring during network traffic processing
  • Kernel log messages referencing qdisc_tree_reduce_backlog or DRR scheduler issues

Detection Strategies

  • Monitor for traffic control configuration changes using auditd rules on netlink socket operations
  • Implement kernel log monitoring for net_sched-related crash dumps or warnings
  • Track tc command executions that specify unusual classid values, particularly 0xFFFFFFFF
  • Deploy SentinelOne agents to detect anomalous kernel behavior patterns associated with DoS attempts

Monitoring Recommendations

  • Enable kernel crash dump collection to capture forensic evidence if exploitation occurs
  • Configure syslog forwarding for kernel messages related to network scheduler subsystems
  • Implement real-time alerting on system resource anomalies that could indicate DoS attacks
  • Review network namespace configurations in containerized environments for excessive capabilities

How to Mitigate CVE-2025-21971

Immediate Actions Required

  • Update the Linux kernel to a patched version from the official stable branches
  • Restrict CAP_NET_ADMIN capability to only trusted processes and users
  • Review container security policies to limit network namespace capabilities
  • Implement additional monitoring for traffic control configuration changes

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches. The fix prevents the creation of any qdisc class with classid TC_H_ROOT (0xFFFFFFFF) across all qdisc types. Organizations should apply the appropriate patch based on their kernel version:

  • Kernel Git Commit 003d92c91cdb
  • Kernel Git Commit 0c3057a5a04d
  • Kernel Git Commit 5c3ca9cb48b5
  • Kernel Git Commit 78533c4a29ac
  • Kernel Git Commit 7a82fe67a9f4
  • Kernel Git Commit 94edfdfb9505
  • Kernel Git Commit e05d9938b1b0
  • Kernel Git Commit e5ee00607bbf

Debian users should consult the Debian LTS Security Advisory for distribution-specific updates.

Workarounds

  • Restrict access to the tc command and netlink sockets using mandatory access control (SELinux/AppArmor)
  • Remove CAP_NET_ADMIN from container runtime configurations where not strictly required
  • Implement network namespace isolation policies to limit exposure in multi-tenant environments
  • Deploy network security monitoring to detect unusual traffic control configuration attempts
bash
# Restrict tc command execution using file permissions
chmod 750 /sbin/tc
chown root:network /sbin/tc

# Add auditd rule to monitor traffic control operations
auditctl -a always,exit -F arch=b64 -S socket -F a0=16 -k netlink_monitor

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • 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-835
  • Technical References
  • Debian LTS Advisory

  • Debian LTS Advisory
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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