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

CVE-2026-43285: Linux Kernel Race Condition Vulnerability

CVE-2026-43285 is a race condition flaw in Linux Kernel's memory slab allocator that causes lockdep warnings in NMI contexts due to unsafe seqcount access. This article covers technical details, affected versions, and mitigations.

Published: May 18, 2026

CVE-2026-43285 Overview

CVE-2026-43285 is a Linux kernel vulnerability in the slab memory allocator. The flaw resides in get_from_any_partial(), which accesses current->mems_allowed_seq when invoked in a non-maskable interrupt (NMI) context. Because mems_allowed_seq is a seqcount_spinlock_t, it is not NMI-safe and triggers lockdep warnings about inconsistent lock state. The condition can produce a deadlock scenario when an NMI interrupts a thread already holding the seqcount write side. The issue affects Linux kernel 7.0 release candidates rc1 through rc7. Local attackers with the ability to trigger slab allocations from NMI handlers can disrupt kernel availability.

Critical Impact

Local low-privileged users can induce kernel deadlocks or denial of service by triggering NMI-context slab allocations that access non-NMI-safe seqcount state.

Affected Products

  • Linux kernel 7.0-rc1 through 7.0-rc7
  • Distributions shipping unpatched mainline mm/slab code
  • Workloads using kfree_rcu and BPF features that allocate in NMI context

Discovery Timeline

  • 2026-05-08 - CVE-2026-43285 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-43285

Vulnerability Analysis

The vulnerability resides in the kernel slab allocator path ___slab_alloc → get_from_any_partial(). When this allocation path executes in NMI context with !allow_spin semantics, it reads current->mems_allowed_seq. This field is typed as seqcount_spinlock_t, which according to Documentation/locking/seqlock.rst is not safe to access from NMI handlers.

Lockdep reports an inconsistent {INITIAL USE} -> {IN-NMI} lock state on &____s->seqcount#3. If an NMI fires while the same CPU holds the seqcount write side, the recursive access produces a deadlock condition. The reproducer surfaces during kunit_try_catch runs on kernel 6.19.0-rc5 builds that include the kfree_rcu rework.

The affected code path is reachable through BPF programs, perf events, and other subsystems that perform slab allocations from interrupt-disabled or NMI contexts. Local attackers with the ability to schedule such workloads can stall kernel execution on the affected CPU.

Root Cause

The root cause is improper synchronization primitive selection inside the memory policy path. mems_allowed_seq uses seqcount_spinlock_t, which assumes the write side is protected by a spinlock and the read side runs in normal or interrupt context. NMI handlers can preempt the write-side critical section, violating the seqcount invariant. The slab allocator did not gate access on allow_spin before consulting the seqcount.

Attack Vector

Exploitation requires local access and the ability to trigger slab allocations from NMI context. This is reachable through BPF tracing programs, perf subsystem callbacks, or hardware watchdog NMIs that invoke kernel memory allocations. A successful trigger causes lockdep splats in debug kernels and may deadlock production kernels under specific NUMA memory policy conditions. No code execution or information disclosure results from this flaw; the impact is confined to availability.

No public proof-of-concept exploit code is available. The EPSS score is 0.013%, reflecting very low likelihood of in-the-wild exploitation.

Detection Methods for CVE-2026-43285

Indicators of Compromise

  • Kernel log entries containing WARNING: inconsistent lock state referencing &____s->seqcount and IN-NMI usage
  • Lockdep stack traces showing ___slab_alloc+0x58f followed by NMI entry frames
  • Soft lockup or hard lockup messages on CPUs running BPF or perf workloads with NUMA memory policies

Detection Strategies

  • Enable CONFIG_PROVE_LOCKING and CONFIG_DEBUG_LOCK_ALLOC in test kernels to surface lockdep warnings tied to the seqcount path
  • Monitor dmesg for inconsistent {INITIAL USE} -> {IN-NMI} usage patterns and correlate with slab allocation stack traces
  • Audit BPF programs and perf event consumers for code paths that allocate kernel memory inside NMI handlers

Monitoring Recommendations

  • Forward kernel ring buffer logs to a centralized logging system and alert on lockdep warnings referencing seqcount and slab_alloc
  • Track kernel version inventory to identify hosts running Linux 7.0-rc1 through 7.0-rc7
  • Review crash dumps from affected systems for stack signatures matching the get_from_any_partial NMI path

How to Mitigate CVE-2026-43285

Immediate Actions Required

  • Upgrade to a stable Linux kernel release that includes commits 144080a5823b, 353dd9934447, or efd767ddcef0
  • Avoid running Linux 7.0 release candidate kernels in production environments
  • Restrict unprivileged BPF and perf usage by setting kernel.unprivileged_bpf_disabled=1 and kernel.perf_event_paranoid=3

Patch Information

The upstream fix modifies the slab allocator to skip current->mems_allowed_seq access when allow_spin is false and to forgo retry in that path. Applicable patches are available at Kernel Git Commit 144080a, Kernel Git Commit 353dd99, and Kernel Git Commit efd767d.

Workarounds

  • Disable workloads that invoke kernel slab allocations from NMI context until the patch is applied
  • Restrict NUMA memory policy use (mbind, set_mempolicy) for untrusted local users via seccomp or namespace isolation
  • Run affected systems on a single NUMA node where mems_allowed_seq updates do not occur
bash
# Verify kernel version and disable unprivileged BPF as a hardening step
uname -r
sysctl -w kernel.unprivileged_bpf_disabled=1
sysctl -w kernel.perf_event_paranoid=3

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 144080a

  • Kernel Git Commit 353dd99

  • Kernel Git Commit efd767d
  • Related CVEs
  • CVE-2026-46202: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43342: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43340: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43353: Linux Kernel Race Condition 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