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

CVE-2026-43482: Linux Kernel Scheduler DoS Vulnerability

CVE-2026-43482 is a denial of service flaw in the Linux kernel sched_ext component that can cause system wedging due to preemption issues. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 17, 2026

CVE-2026-43482 Overview

CVE-2026-43482 is a race condition vulnerability in the Linux kernel's sched_ext (extensible scheduler) subsystem. The flaw occurs between scx_claim_exit() and the helper work kick that initiates bypass mode and teardown. If the calling task is preempted in this window and the BPF scheduler fails to reschedule it, the helper work is never queued. The result is that bypass mode never activates, tasks stop being dispatched, and the system wedges.

The issue has been resolved upstream by disabling preemption across scx_claim_exit() and the subsequent work-kicking in all callers, including scx_disable() and scx_vexit().

Critical Impact

A local condition can wedge the entire system when a BPF scheduler error coincides with preemption between exit-claim and helper-work kick, leading to denial of service.

Affected Products

  • Linux kernel branches shipping the sched_ext subsystem
  • Distributions consuming pre-patch stable kernels referenced in the upstream fix commits
  • Workloads running custom BPF schedulers via sched_ext

Discovery Timeline

  • 2026-05-13 - CVE-2026-43482 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43482

Vulnerability Analysis

The sched_ext subsystem allows BPF programs to implement custom CPU schedulers. When the kernel needs to tear down a BPF scheduler, scx_claim_exit() atomically sets exit_kind, which disables further error handling via scx_error(). The caller must then kick a helper kthread work item to begin bypass mode and orderly teardown.

Between these two operations, the calling task may be preempted by the running BPF scheduler. Because exit_kind has already been claimed, any subsequent scheduling failure is silently swallowed rather than triggering error handling. If the BPF scheduler refuses to schedule the caller back onto a CPU, the helper work never gets queued.

With bypass mode never activated, the runqueues stop dispatching tasks and the entire system effectively hangs. This is a denial-of-service condition that requires no remote interaction.

Root Cause

The root cause is a race condition [CWE-362] in the exit sequencing of sched_ext. Claiming exit and kicking the helper work are not atomic with respect to preemption, leaving a window where progress depends on a scheduler that is in the process of being torn down. The fix disables preemption across both steps and adds lockdep_assert_preemption_disabled() inside scx_claim_exit() to enforce the invariant.

Attack Vector

The condition is reachable from any code path that triggers scx_disable() or scx_vexit() while a faulty or hostile BPF scheduler is loaded. Privileges sufficient to load a BPF scheduler are required, so this is a local denial-of-service issue rather than a remote attack vector. A malicious or buggy BPF scheduler can deterministically refuse to reschedule the exiting task, reliably wedging the host.

No proof-of-concept exploit code is publicly associated with this CVE. The vulnerability is described in prose in the upstream commit messages; refer to the Kernel Security Fix Commit 522acaae for the patch context.

Detection Methods for CVE-2026-43482

Indicators of Compromise

  • Unresponsive systems where userspace and kernel threads stop making progress shortly after a sched_ext scheduler is disabled or exits with an error
  • Kernel logs showing scx_error() events immediately preceding a system hang, with no subsequent bypass-mode activation messages
  • Hung-task warnings or RCU stalls following BPF scheduler unload operations

Detection Strategies

  • Compare running kernel build identifiers against the fixed commits 41423912, 5131dbec, 522acaae, and 83236b2e to identify exposed hosts
  • Audit BPF program load events for sched_ext schedulers, correlating them with subsequent host unresponsiveness or reboot events
  • Monitor for repeated host unavailability on systems that deploy custom sched_ext policies in production

Monitoring Recommendations

  • Collect kernel ring buffer output via centralized logging and alert on sched_ext exit messages
  • Track bpf() syscall telemetry, particularly program loads of type BPF_PROG_TYPE_STRUCT_OPS targeting the scheduler
  • Set up out-of-band watchdogs on hosts running BPF schedulers so wedged systems can be identified and recovered

How to Mitigate CVE-2026-43482

Immediate Actions Required

  • Apply stable kernel updates that include the upstream fix commits referenced in the NVD entry
  • Restrict the CAP_BPF and CAP_SYS_ADMIN capabilities required to load sched_ext programs to trusted administrators only
  • Disable or unload non-essential BPF schedulers in production environments until patched kernels are deployed

Patch Information

The fix disables preemption across scx_claim_exit() and the helper-work kick in both scx_disable() and scx_vexit(), and adds lockdep_assert_preemption_disabled() to enforce the requirement. Patches are available in the following stable commits:

  • Kernel Security Fix Commit 41423912
  • Kernel Security Fix Commit 5131dbec
  • Kernel Security Fix Commit 522acaae
  • Kernel Security Fix Commit 83236b2e

Workarounds

  • Avoid running custom or untrusted sched_ext BPF schedulers on unpatched kernels
  • Build kernels without CONFIG_SCHED_CLASS_EXT where the extensible scheduler is not required
  • Constrain BPF program loading through Linux Security Module policies such as SELinux or AppArmor to limit who can deploy schedulers
bash
# Verify whether sched_ext is enabled in the running kernel
grep CONFIG_SCHED_CLASS_EXT /boot/config-$(uname -r)

# List currently loaded BPF struct_ops programs (requires bpftool and root)
bpftool struct_ops list

# Restrict unprivileged BPF entirely until patched
sysctl -w kernel.unprivileged_bpf_disabled=1

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 Security Fix Commit 41423912

  • Kernel Security Fix Commit 5131dbec

  • Kernel Security Fix Commit 522acaae

  • Kernel Security Fix Commit 83236b2e
  • Related CVEs
  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter 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