A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-43392

CVE-2026-43392: Linux Kernel Scheduler DoS Vulnerability

CVE-2026-43392 is a denial of service vulnerability in the Linux kernel's scheduler extension that causes system hangs under fair-class workload saturation. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43392 Overview

CVE-2026-43392 is a Linux kernel vulnerability in the sched_ext (extensible scheduler class) subsystem. During scx_enable(), the READY -> ENABLED task switching loop changes the calling thread's sched_class from fair to ext. Because the fair class has higher priority than ext, saturating fair-class workloads can indefinitely starve the enable thread and hang the system. The regression was introduced when the enable path switched from preempt_disable() to scx_bypass(), which does not protect against fair-class starvation.

Critical Impact

A local workload saturating the fair scheduler class can stall scx_enable() indefinitely, causing system hangs during sched_ext activation.

Affected Products

  • Linux kernel versions containing the sched_ext subsystem with the scx_bypass()-based enable path
  • Distributions shipping sched_ext-enabled kernels prior to the fix commits
  • Systems that load BPF scheduler programs through sched_ext

Discovery Timeline

  • 2026-05-08 - CVE-2026-43392 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43392

Vulnerability Analysis

The sched_ext subsystem allows BPF programs to implement custom scheduling policies. Enabling an sched_ext scheduler requires transitioning tasks from a READY state to ENABLED while reclassifying the calling thread's scheduling class from fair (CFS) to ext.

During this transition, the calling thread runs at ext priority, which sits below fair in the kernel's scheduling hierarchy. If a runqueue is saturated with CFS workloads, the kernel never schedules the ext-class enable thread, producing an indefinite stall.

The earlier implementation used preempt_disable() to bridge this gap, but the protection was removed in favor of scx_bypass(). The replacement does not inhibit preemption by higher-priority classes, exposing the starvation path. The original preempt_disable() was also incomplete because in partial-switch modes the thread could still be starved after preempt_enable().

Root Cause

The root cause is a scheduling-class priority inversion. The scx_enable() workflow demotes the actor performing the enable to a lower-priority class while still depending on forward progress to complete the switch. Without a preemption or class-floor guarantee, fair-class saturation prevents completion.

Attack Vector

The issue is triggered locally on systems where sched_ext is active and a user with permission to load BPF schedulers initiates scx_enable(). Concurrent fair-class workload saturation, whether incidental or deliberately induced, blocks the enable thread. The resulting denial of service hangs scheduler activation and can render the system unresponsive.

The fix offloads the enable body to a dedicated system-wide real-time SCHED_FIFO kthread that cannot be starved by fair or ext tasks. scx_enable() lazily creates the kthread on first use, passes the ops pointer through a struct scx_enable_cmd containing the kthread_work, and waits synchronously for completion. The workfn runs on a different kthread than sch->helper, allowing safe flushing of disable_work on the error path without deadlock.

Detection Methods for CVE-2026-43392

Indicators of Compromise

  • Hung-task warnings naming threads invoking scx_enable() or sched_ext setup paths
  • Soft lockup or RCU stall messages coinciding with BPF scheduler load operations
  • Long-running tasks stuck in ext scheduling class while CFS runqueues remain saturated

Detection Strategies

  • Audit kernel logs (dmesg, journalctl -k) for INFO: task ... blocked for more than X seconds entries referencing sched_ext code paths
  • Track BPF program load events for sched_ext schedulers and correlate with system responsiveness drops
  • Monitor /sys/kernel/sched_ext/state transitions for prolonged time spent in the enabling phase

Monitoring Recommendations

  • Alert on kernel hung-task and soft-lockup events on hosts running sched_ext-enabled kernels
  • Capture per-class CPU utilization to identify sustained fair-class saturation on hosts that load BPF schedulers
  • Maintain inventory of kernel build versions to confirm whether the patched commits are present

How to Mitigate CVE-2026-43392

Immediate Actions Required

  • Update to a kernel that includes commits 05ab9ec5dc24, b06ccbabe250, c44198f25fdf, or e0b14bf06393 from the stable tree
  • Restrict permission to load sched_ext BPF schedulers to trusted administrators only
  • Avoid enabling sched_ext on hosts running sustained fair-class saturation workloads until patched

Patch Information

The upstream fix is published in the Linux stable tree across multiple branches. Refer to Kernel Git Commit 05ab9ec, Kernel Git Commit b06ccba, Kernel Git Commit c44198f, and Kernel Git Commit e0b14bf. The fix introduces a dedicated SCHED_FIFO kthread that performs the enable body outside of class-priority contention.

Workarounds

  • Disable or unload BPF sched_ext schedulers on affected hosts until the patched kernel is deployed
  • Limit CAP_SYS_ADMIN and CAP_BPF privileges that allow loading sched_ext programs
  • Reduce sustained fair-class load when performing scheduler activation operations on unpatched kernels

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit b06ccba

  • Kernel Git Commit c44198f

  • Kernel Git Commit e0b14bf
  • Related CVEs
  • CVE-2026-46220: Linux Kernel AMDGPU SDMA4 DoS Vulnerability

  • CVE-2026-46214: Linux Kernel vsock/virtio DoS Vulnerability

  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-46193: Linux Kernel AH ESN DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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