Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-37752

CVE-2025-37752: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-37752 is a buffer overflow vulnerability in the Linux Kernel's sch_sfq module that can cause system crashes through improper limit validation. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-37752 Overview

A vulnerability has been discovered in the Linux kernel's network traffic control subsystem, specifically within the Stochastic Fairness Queueing (SFQ) scheduler (sch_sfq). The flaw involves insufficient validation of the limit parameter during qdisc configuration updates, allowing an attacker with local access to trigger an array-index-out-of-bounds condition that can lead to system crashes and potential privilege escalation.

Critical Impact

Local attackers can exploit improper limit validation in the SFQ scheduler to cause kernel crashes via UBSAN array-index-out-of-bounds errors, potentially leading to denial of service or privilege escalation on affected Linux systems.

Affected Products

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

Discovery Timeline

  • 2025-05-01 - CVE-2025-37752 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2025-37752

Vulnerability Analysis

The vulnerability resides in the SFQ (Stochastic Fairness Queueing) network scheduler module (net/sched/sch_sfq.c). The core issue is that direct validation of the limit parameter on user-supplied data is insufficient because the limit value can be indirectly modified based on changes to other related parameters such as flows, depth, and divisor.

When an attacker configures a qdisc with specific parameter combinations, the limit can be updated to an invalid value after the initial validation check has passed. This results in an array index that exceeds the bounds of the struct sfq_head[128] array, causing the kernel to access memory outside the allocated buffer.

The crash manifests during the sfq_link function call within sfq_dec, which is triggered during dequeue operations. The syzkaller fuzzer discovered this issue when specific configurations caused index 65535 to be used against an array that only supports 128 entries.

Root Cause

The root cause is the placement of the limit validation check in the configuration process. The original implementation validated the limit parameter early in the configuration update flow, before other parameters (such as flows, depth, and divisor) had been processed. Since these parameters can indirectly affect the computed limit value, the early validation was bypassed in certain edge cases.

The fix moves the limit validation to the end of the configuration update process, ensuring all parameter changes are accounted for before the final bounds check is performed. This comprehensive validation catches scenarios where the limit is indirectly updated through parameter interdependencies.

Attack Vector

The attack requires local access to the system with sufficient privileges to configure network qdiscs using the tc (traffic control) utility. An attacker can craft specific qdisc configurations that exploit the validation timing issue.

The vulnerability can be triggered through malicious traffic control configurations such as:

tc qdisc add dev dummy0 handle 1: root sfq limit 2 flows 1 depth 1
tc qdisc add dev dummy0 handle 1: root sfq limit 2 flows 1 divisor 1

These configurations cause the limit to be computed in a way that results in an out-of-bounds array index (65535) when the scheduler attempts to process packets, leading to kernel panic or undefined behavior when the sfq_link function is called within sfq_dec during dequeue operations.

Detection Methods for CVE-2025-37752

Indicators of Compromise

  • Kernel crash logs containing UBSAN: array-index-out-of-bounds in net/sched/sch_sfq.c messages
  • Unexpected system reboots or kernel panics during network traffic processing
  • Call traces referencing sfq_link, sfq_dec, sfq_dequeue, or sfq_reset functions
  • Unusual tc qdisc configurations with low limit, flows, depth, or divisor values

Detection Strategies

  • Monitor kernel logs for UBSAN violations specifically mentioning sch_sfq.c or the SFQ scheduler
  • Deploy kernel runtime integrity monitoring to detect unexpected crashes in network subsystem components
  • Audit tc command usage for suspicious qdisc configurations targeting dummy or other network interfaces
  • Implement syscall monitoring for RTM_NEWQDISC netlink messages with unusual parameter combinations

Monitoring Recommendations

  • Enable UBSAN (Undefined Behavior Sanitizer) in kernel builds to detect array bounds violations before exploitation
  • Configure system logging to capture detailed kernel crash information including full stack traces
  • Monitor for repeated network scheduler reconfigurations that may indicate exploitation attempts
  • Use SentinelOne's kernel-level monitoring capabilities to detect anomalous traffic control operations

How to Mitigate CVE-2025-37752

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the limit validation fix
  • Restrict access to the tc traffic control utility to trusted administrators only
  • Monitor systems for signs of exploitation attempts via kernel log analysis
  • Consider disabling the SFQ scheduler module if not required for operations

Patch Information

Multiple patches have been released across various kernel branches to address this vulnerability. The fix relocates the limit validation to occur after all configuration parameters have been processed, preventing indirect limit manipulation from bypassing bounds checks.

Patches are available through the following kernel git commits:

  • Commit 1348214fa042
  • Commit 5e5e1fcc1b8e
  • Commit 6c589aa31802
  • Commit 7d62ded97db6
  • Commit 8fadc871a429

Debian users should refer to the Debian LTS Security Announcement for distribution-specific update instructions.

Workarounds

  • Limit access to network namespace and traffic control capabilities using Linux capabilities (CAP_NET_ADMIN)
  • Use SELinux or AppArmor policies to restrict which processes can invoke tc commands
  • Remove or blacklist the sch_sfq kernel module if SFQ scheduling is not required: echo "blacklist sch_sfq" >> /etc/modprobe.d/blacklist.conf
  • Monitor and alert on any qdisc configurations with unusually low parameter values
bash
# Blacklist SFQ scheduler module if not needed
echo "blacklist sch_sfq" >> /etc/modprobe.d/blacklist.conf

# Remove currently loaded module (if possible)
modprobe -r sch_sfq

# Restrict tc command to root only
chmod 700 /sbin/tc

# Verify current qdisc configurations
tc qdisc show

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • 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-129
  • Technical References
  • Debian LTS Announcement
  • 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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31484: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31422: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-23455: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-23386: Linux Kernel Buffer Overflow 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