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

CVE-2026-23475: Linux Kernel SPI NULL Pointer Vulnerability

CVE-2026-23475 is a NULL pointer dereference flaw in the Linux kernel SPI subsystem that can be triggered via sysfs attribute access. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-23475 Overview

A Null Pointer Dereference vulnerability has been identified in the Linux kernel's SPI (Serial Peripheral Interface) subsystem. The vulnerability exists in the statistics allocation mechanism where the controller per-cpu statistics is not allocated until after the controller has been registered with the driver core. This creates a race condition window where accessing the sysfs attributes can trigger a NULL-pointer dereference, potentially causing system instability or denial of service.

Critical Impact

Local attackers can exploit this race condition to trigger a kernel NULL-pointer dereference by accessing sysfs attributes during the brief window between controller registration and statistics allocation, potentially causing system crashes or denial of service conditions.

Affected Products

  • Linux Kernel (multiple versions affected)
  • Systems utilizing SPI controllers with sysfs statistics interfaces
  • Embedded systems and devices relying on SPI bus communication

Discovery Timeline

  • April 3, 2026 - CVE-2026-23475 published to NVD
  • April 7, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23475

Vulnerability Analysis

This vulnerability represents a classic race condition in Linux kernel device initialization. The SPI controller subsystem maintains per-CPU statistics that are exposed through sysfs for monitoring and debugging purposes. The issue arises from the timing of when these statistics structures are allocated relative to when the controller becomes accessible to userspace.

When an SPI controller is registered with the driver core, the device becomes visible in sysfs and its attributes become accessible. However, the per-cpu statistics allocation was previously handled using implicit devres (device-managed resources) which occurred after the registration process. This ordering creates a temporal window where the sysfs attribute handlers could be invoked before the statistics memory has been allocated.

An attacker or even legitimate system processes accessing the statistics attributes during this brief window would cause the kernel to dereference a NULL pointer, resulting in a kernel oops or panic depending on system configuration.

Root Cause

The root cause of this vulnerability is improper resource initialization ordering in the SPI controller registration path. The statistics allocation was deferred using device-managed resources (devres), which are processed after device registration. This created a race condition where:

  1. The SPI controller is registered with the driver core
  2. Sysfs attributes become immediately accessible
  3. Statistics structures are allocated via devres (too late)

The fix addresses this by moving the statistics allocation to occur during controller allocation itself, ensuring the memory is available before any sysfs attributes can be accessed. Additionally, the lifetime of the statistics is now tied directly to the controller structure rather than relying on implicit devres cleanup.

Attack Vector

The attack vector for this vulnerability is local, requiring the attacker to have access to the system's sysfs interface. The exploitation scenario involves:

  1. Monitoring for SPI controller registration events
  2. Rapidly accessing the controller's statistics sysfs attributes immediately after registration
  3. Triggering the NULL-pointer dereference before statistics allocation completes

While this requires precise timing, automated tools could potentially exploit this during system boot or when SPI devices are hot-plugged. The vulnerability mechanism involves the kernel's sysfs attribute show functions attempting to read from the statistics structure before it has been allocated, resulting in a NULL pointer being dereferenced when the access occurs during the vulnerable window.

Detection Methods for CVE-2026-23475

Indicators of Compromise

  • Kernel oops or panic messages referencing SPI controller statistics or sysfs handlers
  • System crash logs indicating NULL-pointer dereference in the spi subsystem
  • Unusual access patterns to /sys/class/spi_master/*/statistics immediately after device registration
  • Core dumps or crash reports with backtraces through SPI controller initialization code

Detection Strategies

  • Monitor kernel logs for NULL-pointer dereference errors in SPI-related code paths
  • Implement auditd rules to track access to SPI controller sysfs attributes during boot
  • Deploy kernel-level monitoring to detect rapid sysfs access during device registration
  • Review system logs for repeated SPI controller registration failures or crashes

Monitoring Recommendations

  • Enable kernel crash reporting and ensure kdump is configured for post-mortem analysis
  • Monitor for unusual sysfs access patterns using tools like inotify or eBPF programs
  • Set up alerting for kernel oops messages containing spi subsystem references
  • Review dmesg output during boot for SPI-related warnings or errors

How to Mitigate CVE-2026-23475

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the statistics allocation fix
  • If updates are not immediately possible, restrict access to sysfs SPI statistics attributes
  • Monitor systems for signs of exploitation attempts or unexpected kernel crashes
  • Review and audit any scripts or services that access SPI sysfs attributes during boot

Patch Information

The Linux kernel developers have addressed this vulnerability through multiple commits that move the statistics allocation to controller allocation time. The fix ensures that per-cpu statistics structures are available before the controller is registered with the driver core, eliminating the race condition window.

Patches are available through the kernel.org stable git repositories:

  • Kernel Git Commit 118ce77
  • Kernel Git Commit 378b295
  • Kernel Git Commit 80c5bd0
  • Kernel Git Commit dee0774
  • Kernel Git Commit df30056
  • Kernel Git Commit f13100b

Workarounds

  • Restrict access to SPI sysfs directories using filesystem permissions until patching is possible
  • Disable unnecessary SPI controller modules if they are not required for system operation
  • Implement a boot delay before accessing SPI statistics to allow controller initialization to complete
  • Use SELinux or AppArmor policies to limit which processes can access SPI sysfs attributes
bash
# Configuration example - Restrict sysfs SPI statistics access
# Add to system startup scripts or udev rules
chmod 600 /sys/class/spi_master/*/statistics/* 2>/dev/null || true

# Alternatively, use udev rules to set permissions
# Create /etc/udev/rules.d/99-spi-statistics.rules:
# SUBSYSTEM=="spi_master", ATTR{statistics/*}=="*", MODE="0600"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit Notification

  • Kernel Git Commit Notification

  • Kernel Git Commit Notification

  • Kernel Git Commit Notification

  • Kernel Git Commit Notification
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
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