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
    • 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-31389

CVE-2026-31389: Linux Kernel SPI Use-After-Free Flaw

CVE-2026-31389 is a use-after-free flaw in the Linux kernel SPI subsystem during controller registration failure. This post explains the technical details, affected versions, potential impact, and mitigation.

Updated: May 16, 2026

CVE-2026-31389 Overview

CVE-2026-31389 is a use-after-free vulnerability in the Linux kernel's Serial Peripheral Interface (SPI) subsystem. The flaw occurs during SPI controller registration when per-CPU statistics allocation fails. The kernel does not properly deregister the controller from the driver core in this failure path, leaving stale references to freed driver resources.

Attackers with local access can trigger use-after-free conditions and unclocked register accesses, leading to memory corruption or privilege escalation on affected systems. The vulnerability has been resolved upstream through multiple stable kernel commits.

Critical Impact

Local attackers can exploit dangling driver core references and unclocked hardware register accesses to corrupt kernel memory and potentially escalate privileges to root.

Affected Products

  • Linux kernel SPI subsystem (multiple stable branches)
  • Distributions shipping vulnerable kernel versions prior to the upstream fix
  • Systems exposing SPI controller registration paths to unprivileged drivers or modules

Discovery Timeline

  • 2026-04-03 - CVE-2026-31389 published to the National Vulnerability Database
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-31389

Vulnerability Analysis

The vulnerability resides in the Linux kernel's SPI controller registration logic. When a driver registers an SPI controller, the kernel allocates per-CPU statistics structures to track controller activity. If this allocation fails, the registration path returns an error without first deregistering the controller from the driver core.

The driver core retains pointers to the controller's resources after the calling driver releases them. Subsequent accesses through these stale pointers constitute a use-after-free condition [CWE-416]. The kernel may also perform register accesses against hardware that has been unclocked, producing unpredictable system behavior.

This class of bug typically surfaces during error recovery, a code path that receives less testing than the success path. The fix ensures the controller is fully torn down from the driver core before returning the error.

Root Cause

The root cause is incomplete cleanup in the SPI controller registration error path. The registration function allocates resources in a specific order but fails to unwind all of them when later steps fail. Per-CPU statistics allocation sits late in the initialization sequence, and its failure leaves the controller partially registered with the driver core while its backing structures are released by the caller.

Attack Vector

Exploitation requires local access with low privileges. An attacker influences SPI controller registration to fail at the per-CPU statistics allocation step, for example by exhausting memory or loading a crafted driver module. The resulting use-after-free can corrupt kernel data structures referenced by the driver core, providing primitives for privilege escalation.

No public proof-of-concept exploit is currently available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. The patch is distributed across six stable kernel commits referenced in the kernel.org git tree.

The vulnerability manifests in the SPI controller registration function. See the upstream commits for the exact code paths and fix logic.

Detection Methods for CVE-2026-31389

Indicators of Compromise

  • Kernel oops or panic messages referencing the SPI subsystem during driver load or system boot
  • KASAN: use-after-free reports in dmesg involving spi_controller or related structures
  • Unexpected SPI driver registration failures followed by abnormal device behavior
  • Loading of unsigned or untrusted kernel modules that exercise SPI controller registration

Detection Strategies

  • Monitor kernel logs for SPI registration errors combined with driver core warnings about stale references
  • Enable KASAN (Kernel Address Sanitizer) on test systems to detect use-after-free conditions in SPI code paths
  • Audit installed kernel versions against the fixed stable releases referenced in the upstream commits

Monitoring Recommendations

  • Centralize collection of dmesg and journalctl -k output to identify SPI-related faults across the fleet
  • Track kernel module loading events through auditd rules on init_module and finit_module syscalls
  • Alert on repeated SPI controller registration failures, which may indicate exploitation attempts against the error path

How to Mitigate CVE-2026-31389

Immediate Actions Required

  • Inventory all Linux systems and identify hosts running kernel versions prior to the patched stable releases
  • Apply vendor-supplied kernel updates from your distribution as soon as they become available
  • Restrict the ability of unprivileged users to load kernel modules by setting kernel.modules_disabled=1 after boot
  • Limit local access to systems exposing SPI hardware, particularly embedded and IoT devices

Patch Information

The fix has been committed across multiple stable kernel branches. Refer to the upstream patches at commit 0e23f50086da, commit 23b51bad2eb8, commit 6bbd385b30c7, commit 80f3e8cd2b4a, commit 8634e05b08ea, and commit afe27c1f43aa. Apply the kernel update from your distribution that incorporates these commits and reboot affected systems.

Workarounds

  • Disable SPI controller drivers on systems that do not require SPI hardware functionality
  • Apply memory pressure controls to reduce the likelihood of per-CPU allocation failures triggering the error path
  • Enforce signed kernel modules with CONFIG_MODULE_SIG_FORCE to prevent loading of untrusted SPI drivers
bash
# Verify running kernel version and check for SPI driver presence
uname -r
lsmod | grep -i spi

# Restrict module loading after boot
sysctl -w kernel.modules_disabled=1

# Enable kernel lockdown mode if available
echo "integrity" > /sys/kernel/security/lockdown

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • 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
  • Technical References
  • Kernel Git Commit Change 1

  • Kernel Git Commit Change 2

  • Kernel Git Commit Change 3

  • Kernel Git Commit Change 4

  • Kernel Git Commit Change 5

  • Kernel Git Commit Change 6
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43500: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43333: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43335: Linux Kernel Use-After-Free 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