Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23369

CVE-2026-23369: Linux Kernel i2c-i801 DoS Vulnerability

CVE-2026-23369 is a denial of service flaw in the Linux kernel i2c-i801 driver that causes kernel panics during boot. This article covers the technical details, affected versions, system impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-23369 Overview

CVE-2026-23369 is a race condition vulnerability in the Linux kernel's i2c-i801 driver that can result in a NULL pointer dereference, causing a kernel panic during system boot. The vulnerability occurs when multiple udev threads concurrently access the i801_acpi_io_handler function while collecting i801 device information, leading to a use-after-unregister condition.

Critical Impact

This vulnerability can cause system crashes during boot when multiple udev threads race to collect I2C device information, resulting in kernel NULL pointer dereference and system unavailability.

Affected Products

  • Linux Kernel with i2c-i801 driver enabled
  • Systems using Intel I801 SMBus controllers
  • Linux distributions running kernel version 5.14.0 and related versions

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23369 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23369

Vulnerability Analysis

This vulnerability exists in the i2c-i801 kernel driver's ACPI I/O handler implementation. The race condition manifests when the Linux kernel boots and multiple systemd-udevd threads simultaneously attempt to enumerate I2C devices on the I801 SMBus controller.

The problematic scenario unfolds as follows: the first udev thread enters i801_acpi_io_handler and determines that the ACPI region is reserved, triggering deregistration of the area to prevent further access. However, a second udev thread may enter the same handler after the region has been deregistered but before proper synchronization can prevent access. When i2c_lock_bus is called, it attempts to access lock_ops from the now-unregistered area, which contains a NULL pointer.

The kernel backtrace shows the crash occurring at i801_acpi_io_handler+0x2d/0xb0 in the i2c_i801 module, with the RAX register containing 0x0000000000000000, confirming the NULL pointer dereference. The call trace reveals the issue propagates through the ACPI subsystem during power supply property enumeration via the acpi_ac_get_state path.

Root Cause

The root cause stems from a previous commit (f707d6b9e7c18f669adfdb443906d46cfbaaa0c1) that replaced the acpi_lock with I2C bus lock. This change inadvertently introduced a race condition where the locking mechanism depends on a data structure that can be deregistered asynchronously. The original acpi_lock provided proper synchronization for ACPI region access, but the replacement I2C bus lock relies on lock_ops stored in a region that becomes invalid during concurrent deregistration.

Attack Vector

The vulnerability is triggered locally through normal system operation during boot. It requires no attacker interaction—the race condition occurs naturally when:

  1. Multiple udev threads spawn during device enumeration
  2. These threads concurrently query the i801 I2C device
  3. ACPI address space dispatch calls i801_acpi_io_handler
  4. One thread deregisters the ACPI region while another is accessing it

The attack vector is local, requiring access to a system with the vulnerable i2c-i801 driver during boot or device hotplug scenarios.

Detection Methods for CVE-2026-23369

Indicators of Compromise

  • Kernel panic messages during boot referencing i801_acpi_io_handler in the call trace
  • BUG reports showing "kernel NULL pointer dereference, address: 0000000000000000"
  • System crash logs indicating #PF: supervisor read access in kernel mode with error_code(0x0000)
  • Oops messages with PREEMPT SMP PTI and RAX register containing NULL

Detection Strategies

  • Monitor kernel logs (dmesg) for NULL pointer dereference errors mentioning i2c_i801 module
  • Configure kdump or crash dump collection to capture kernel panics for post-mortem analysis
  • Implement boot monitoring to detect systems failing to complete initialization
  • Check for repeated unexpected reboots during system startup

Monitoring Recommendations

  • Deploy centralized logging to collect kernel panic events across affected systems
  • Set up alerting for kernel oops messages containing i801_acpi_io_handler pattern
  • Monitor system availability during boot cycles to detect intermittent failures
  • Review systemd-udevd journal entries for I2C device enumeration errors

How to Mitigate CVE-2026-23369

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the revert commit
  • Apply vendor-specific kernel updates from your Linux distribution
  • Monitor systems for boot failures and kernel panics related to I2C subsystem
  • Consider temporarily blacklisting the i2c_i801 module if I2C functionality is not critical

Patch Information

The vulnerability has been addressed by reverting the problematic commit and restoring the original acpi_lock synchronization mechanism. Multiple patch commits have been released across different kernel branches:

  • Kernel Git Commit Update 1
  • Kernel Git Commit Update 2
  • Kernel Git Commit Update 3
  • Kernel Git Commit Update 4

Workarounds

  • Blacklist the i2c_i801 module by adding blacklist i2c_i801 to /etc/modprobe.d/blacklist.conf if SMBus functionality is not required
  • Reduce udev parallelism during boot to minimize the chance of triggering the race condition
  • Use udevadm settings to serialize device enumeration if immediate patching is not possible
bash
# Temporary workaround: Blacklist i2c_i801 module
echo "blacklist i2c_i801" >> /etc/modprobe.d/blacklist-i2c-i801.conf
update-initramfs -u

# Verify module is not loaded
lsmod | grep i2c_i801

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 Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

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

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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