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-2026-23371

CVE-2026-23371: Linux Kernel Privilege Escalation Flaw

CVE-2026-23371 is a privilege escalation vulnerability in the Linux kernel's SCHED_DEADLINE scheduler that causes bandwidth accounting corruption. This article covers the technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-23371 Overview

A vulnerability has been discovered in the Linux kernel's SCHED_DEADLINE scheduler that involves improper handling of the ENQUEUE_REPLENISH flag during Priority Inheritance (PI) de-boosting operations. This flaw occurs when a SCHED_DEADLINE task holding a PI mutex undergoes a priority class change via sched_setscheduler(), potentially leading to bandwidth accounting corruption and system warnings.

Critical Impact

Running stress-ng --schedpolicy 0 on an RT kernel on a high-core-count system can trigger kernel warnings related to bandwidth underflow, potentially destabilizing real-time scheduling guarantees.

Affected Products

  • Linux Kernel (SCHED_DEADLINE scheduler component)
  • RT (Real-Time) Linux kernel variants
  • Systems utilizing Priority Inheritance (PI) mutexes with DEADLINE scheduling

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23371 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23371

Vulnerability Analysis

The vulnerability resides in the Linux kernel's deadline scheduler (kernel/sched/deadline.c) and specifically affects the Priority Inheritance mechanism. When a SCHED_DEADLINE task (referred to as the "holder") holds a PI mutex and another DEADLINE task (the "donor") blocks on that mutex, the holder should inherit scheduling parameters from the donor under certain conditions.

The flaw manifests when the holder task is changed from SCHED_DEADLINE to a lower priority class via sched_setscheduler() while still holding the mutex. In this scenario, the holder should inherit DEADLINE parameters from the donor and be enqueued with the ENQUEUE_REPLENISH flag set. However, this inheritance fails to occur properly if the holder didn't previously inherit parameters (for example, because it already had a shorter deadline than the donor at the time of blocking).

This leads to bandwidth accounting corruption because enqueue_task_dl() fails to recognize the lock holder as boosted, causing running bandwidth (running_bw) underflow and triggering kernel warnings in the dequeue_task_dl() function.

Root Cause

The root cause is a missing check for DEADLINE parameter inheritance when transitioning a boosted task to a lower priority class. The kernel fails to properly detect the scenario where a DEADLINE task (proper or boosted) gets scheduled to a lower priority class while holding a PI mutex with pending DEADLINE donors. The __setscheduler_dl_pi() function was introduced to detect this condition and ensure the task inherits DEADLINE parameters from the donor (pi_se) while setting the ENQUEUE_REPLENISH flag for correct bandwidth accounting.

Attack Vector

The vulnerability is triggered through a specific sequence of scheduler operations:

  1. A DEADLINE task (donor) blocks on a PI mutex held by another DEADLINE task (holder)
  2. The holder does not inherit parameters at this time (e.g., it already has a shorter deadline)
  3. sched_setscheduler() changes the holder from DEADLINE to a lower priority class while still holding the mutex
  4. The holder should now inherit DEADLINE parameters from the donor and be enqueued with ENQUEUE_REPLENISH, but this fails to happen

The vulnerability can be reproduced using stress-ng --schedpolicy 0 on RT kernels with high CPU counts, which creates the necessary scheduling pressure and mutex contention to trigger the race condition. This results in kernel warnings including "DL de-boosted task PID: REPLENISH flag missing" and "running_bw underflow" in the call trace through dequeue_task_dl(), push_dl_task(), and dl_task_timer().

Detection Methods for CVE-2026-23371

Indicators of Compromise

  • Kernel warnings containing "DL de-boosted task PID: REPLENISH flag missing" in system logs
  • Warnings at kernel/sched/deadline.c:239 referencing dequeue_task_dl()
  • Call traces showing running_bw underflow errors
  • Unexpected behavior in real-time workloads using SCHED_DEADLINE with PI mutexes

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for SCHED_DEADLINE-related warnings
  • Implement alerting on kernel warnings originating from kernel/sched/deadline.c
  • Deploy system monitoring to detect anomalous scheduling behavior on RT kernels
  • Use kernel tracing (ftrace) to monitor dequeue_task_dl and enqueue_task_dl functions

Monitoring Recommendations

  • Enable kernel warning logging and set up alerts for scheduler-related errors
  • Monitor systems running real-time workloads with stress-ng or similar tools for unexpected warnings
  • Track CPU scheduling metrics on high-core-count systems using RT kernels
  • Review system stability logs after any changes to task scheduling policies

How to Mitigate CVE-2026-23371

Immediate Actions Required

  • Review systems running RT kernels with SCHED_DEADLINE workloads for potential exposure
  • Apply the kernel patches from the stable kernel tree as soon as they are available for your distribution
  • Avoid changing DEADLINE task priorities while they hold PI mutexes as a temporary workaround
  • Test patches in a non-production environment before deployment

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix introduces __setscheduler_dl_pi(), which detects when a DEADLINE task (proper or boosted) gets scheduled to a lower priority class and ensures proper parameter inheritance from the donor (pi_se) while setting the ENQUEUE_REPLENISH flag.

Patches are available in the stable kernel tree:

  • Kernel Git Commit ba1c2292
  • Kernel Git Commit d658686a

Workarounds

  • Avoid using sched_setscheduler() to change DEADLINE tasks to lower priority classes while they hold PI mutexes
  • Consider temporarily disabling SCHED_DEADLINE policy changes on affected systems until patched
  • Implement application-level guards to ensure mutex release before priority class changes
  • Monitor and restart affected workloads if kernel warnings are observed

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31411: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23438: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23439: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23437: Linux Kernel Privilege Escalation Flaw
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