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

CVE-2025-37798: Linux Kernel DOS Vulnerability

CVE-2025-37798 is a denial of service vulnerability in the Linux Kernel affecting the codel qdisc implementation. This issue involves queue length handling in network traffic control. Learn about technical details, impact, and fixes.

Updated: January 22, 2026

CVE-2025-37798 Overview

CVE-2025-37798 is a vulnerability in the Linux kernel affecting the CoDel (Controlled Delay) and fq_codel (Fair Queuing with Controlled Delay) qdisc (queuing discipline) subsystem. The vulnerability involves the removal of a queue length check (sch->q.qlen) before calling qdisc_tree_reduce_backlog() in both fq_codel_dequeue() and codel_qdisc_dequeue() functions. This change was made after the ->qlen_notify() callbacks were made idempotent, addressing a potential race condition or state inconsistency in the network packet scheduling subsystem.

Critical Impact

Local attackers with low privileges could potentially exploit this vulnerability to achieve high impact on confidentiality, integrity, and availability of affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.15-rc1
  • Debian Linux 11.0

Discovery Timeline

  • May 2, 2025 - CVE-2025-37798 published to NVD
  • November 6, 2025 - Last updated in NVD database

Technical Details for CVE-2025-37798

Vulnerability Analysis

The vulnerability exists in the CoDel (Controlled Delay) Active Queue Management algorithm implementation within the Linux kernel's traffic control subsystem. CoDel is designed to control bufferbloat by managing packet queuing delays in network buffers. The fq_codel variant combines CoDel with fair queuing to provide both delay control and flow isolation.

The core issue relates to the queue length check (sch->q.qlen != 0) that was previously performed before calling qdisc_tree_reduce_backlog() in the dequeue functions. This check was originally implemented to prevent callback invocations when the queue was empty. However, after architectural changes that made all ->qlen_notify() callbacks idempotent (safe to call multiple times with the same result), this check became unnecessary and its removal was required for proper operation.

The vulnerability could potentially lead to inconsistent queue state management, which a local attacker with low privileges could exploit to impact system stability, cause memory corruption, or escalate privileges.

Root Cause

The root cause stems from a design inconsistency in the qdisc callback mechanism. The qdisc_tree_reduce_backlog() function is responsible for notifying parent qdiscs about changes in queue length. Prior to this fix, the conditional check on qlen could lead to situations where the backlog reduction was skipped when it shouldn't have been, or conversely, could be called in unexpected states.

The fix removes the redundant check from both fq_codel_dequeue() and codel_qdisc_dequeue(), relying instead on the idempotent nature of the notification callbacks to handle edge cases safely.

Attack Vector

This is a local attack vector vulnerability requiring low privileges. An attacker with local access to an affected system could potentially:

  1. Manipulate network traffic or queue operations to trigger the vulnerable code path
  2. Exploit race conditions in the qdisc dequeue operations
  3. Cause kernel memory corruption or denial of service conditions
  4. Potentially escalate privileges by exploiting the inconsistent queue state

The vulnerability requires local access to the system, making it unsuitable for remote exploitation without chaining with another vulnerability that provides initial access.

Detection Methods for CVE-2025-37798

Indicators of Compromise

  • Unexpected kernel crashes or panics related to network subsystem operations
  • Anomalous behavior in the qdisc or traffic control subsystem
  • Memory corruption indicators in kernel logs referencing fq_codel or codel modules
  • System instability during high network traffic periods

Detection Strategies

  • Monitor kernel logs for errors or warnings related to fq_codel, codel, or qdisc subsystems
  • Implement kernel integrity monitoring to detect unexpected modifications to qdisc-related data structures
  • Deploy endpoint detection solutions capable of monitoring kernel-level operations
  • Review system call patterns for anomalous traffic control (tc) operations

Monitoring Recommendations

  • Enable verbose logging for the network traffic control subsystem
  • Monitor for processes attempting to manipulate qdisc configurations with elevated privileges
  • Implement system call auditing for setsockopt, sendmsg, and related network system calls
  • Deploy kernel live patching solutions to ensure rapid remediation

How to Mitigate CVE-2025-37798

Immediate Actions Required

  • Update the Linux kernel to a patched version as soon as possible
  • Review and restrict local user access to systems running vulnerable kernel versions
  • Monitor for any suspicious activity related to network traffic control operations
  • Consider disabling fq_codel and codel qdiscs if not required and patching is delayed

Patch Information

Multiple patches have been released by the Linux kernel maintainers to address this vulnerability. The following kernel commits contain the fix:

  • Linux Kernel Commit 2f9761a94b
  • Linux Kernel Commit 342debc121
  • Linux Kernel Commit 4d55144b12
  • Linux Kernel Commit 7a742a9506
  • Linux Kernel Commit 829c49b6b2
  • Linux Kernel Commit a57fe60ef4
  • Linux Kernel Commit cc71a757da
  • Linux Kernel Commit e73c838c80
  • Linux Kernel Commit eda741fe15

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

Workarounds

  • If immediate patching is not possible, consider switching to alternative qdisc algorithms (e.g., pfifo_fast, htb)
  • Restrict local user access to minimize the attack surface
  • Implement network namespace isolation to limit qdisc manipulation capabilities
  • Monitor and audit traffic control configuration changes
bash
# Check current qdisc configuration
tc qdisc show

# Temporarily replace fq_codel with pfifo_fast as workaround
tc qdisc replace dev eth0 root pfifo_fast

# Verify the change
tc qdisc show dev eth0

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.03%

  • 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
  • NVD-CWE-noinfo
  • Technical References
  • Debian LTS Announcement May 2025

  • Debian LTS Announcement October 2025
  • Vendor Resources
  • Linux Kernel Commit 2f9761a94b

  • Linux Kernel Commit 342debc121

  • Linux Kernel Commit 4d55144b12

  • Linux Kernel Commit 7a742a9506

  • Linux Kernel Commit 829c49b6b2

  • Linux Kernel Commit a57fe60ef4

  • Linux Kernel Commit cc71a757da

  • Linux Kernel Commit e73c838c80

  • Linux Kernel Commit eda741fe15
  • 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