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

CVE-2026-23472: Linux Kernel DOS Vulnerability

CVE-2026-23472 is a denial of service flaw in the Linux kernel that causes infinite loops in serial port handling, leading to system hangs. This post explains its impact, affected versions, and mitigation steps.

Published: April 10, 2026

CVE-2026-23472 Overview

A denial of service vulnerability exists in the Linux kernel's serial core subsystem due to an inconsistency between uart_write_room() and uart_write() functions when handling PORT_UNKNOWN serial ports. This logic flaw causes drivers relying on tty_write_room() to enter an infinite loop, leading to system hangs.

Critical Impact

This vulnerability can cause complete system hangs when uninitialized serial ports (PORT_UNKNOWN) are accessed, resulting in denial of service conditions that require a hard reboot to recover.

Affected Products

  • Linux Kernel (serial core subsystem)
  • Systems using caif_serial driver with PORT_UNKNOWN ports
  • Linux systems with improperly initialized serial ports

Discovery Timeline

  • 2026-04-03 - CVE-2026-23472 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23472

Vulnerability Analysis

The vulnerability stems from a behavioral inconsistency in the Linux kernel's serial core when handling uninitialized serial ports. When a serial port is of type PORT_UNKNOWN (indicating it was never properly initialized), the xmit_buf transmission buffer remains NULL.

The uart_write_room() function returns the available space via kfifo_avail(), which can report available space greater than zero even when xmit_buf is NULL. However, uart_write() explicitly checks for a NULL xmit_buf and returns 0 if it's not allocated. This creates a dangerous condition where a caller checking write availability receives a positive value, but subsequent write operations always return zero bytes written.

Drivers such as caif_serial that implement transmit handlers using a pattern of checking available room before writing become trapped in an infinite loop. The write room check succeeds (returning > 0), prompting a write attempt, but the actual write returns 0 bytes, keeping the loop condition true indefinitely.

Root Cause

The root cause is the lack of NULL pointer validation in uart_write_room() for the xmit_buf buffer. While uart_write() properly validates this buffer before attempting operations, the room-checking function does not perform the same validation, leading to inconsistent behavior that violates caller expectations about the relationship between available room and write capability.

Attack Vector

An attacker or malicious process with access to serial port interfaces could trigger this condition by:

  1. Opening a serial port that was never properly initialized (PORT_UNKNOWN type)
  2. Initiating write operations that cause the serial driver to check write room availability
  3. The kernel enters an infinite loop attempting to write to the uninitialized port
  4. System resources become exhausted, leading to denial of service

The vulnerability requires local access to the system and the ability to interact with serial port devices. While the direct exploitation path is local, systems with serial console access exposed to networks or containerized environments may have increased exposure.

Detection Methods for CVE-2026-23472

Indicators of Compromise

  • System hangs or freezes associated with serial port activity
  • High CPU utilization in kernel space with no corresponding I/O progress
  • Kernel logs showing repeated serial port operations without data transmission
  • Process traces showing infinite loops in handle_tx() or similar serial driver functions

Detection Strategies

  • Monitor for kernel soft lockup warnings related to serial subsystem functions
  • Implement watchdog timers to detect unresponsive serial communication paths
  • Use kernel tracing (ftrace) to identify tight loops in UART/serial driver code paths
  • Deploy system monitoring to alert on unexpected kernel CPU consumption patterns

Monitoring Recommendations

  • Enable kernel lockup detection mechanisms (softlockup_panic, hardlockup_panic)
  • Monitor /proc/interrupts for abnormal serial port interrupt patterns
  • Implement system health checks that verify serial port responsiveness
  • Log and alert on caif_serial driver initialization and operation anomalies

How to Mitigate CVE-2026-23472

Immediate Actions Required

  • Apply the available kernel patches from the Linux stable tree immediately
  • Audit serial port configurations to identify and properly initialize PORT_UNKNOWN ports
  • Restrict access to serial port devices to authorized users and processes only
  • Consider disabling unused serial ports at the kernel level or via BIOS/UEFI

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix modifies uart_write_room() to check for a NULL xmit_buf and return 0 if it's not allocated, bringing it into consistency with uart_write() behavior.

Patches are available at the following commits:

  • Linux Kernel Commit 455ce98
  • Linux Kernel Commit bc70f2b
  • Linux Kernel Commit efe85a5

Update to a kernel version containing these fixes or apply the patches to your current kernel build.

Workarounds

  • Ensure all serial ports are properly initialized before allowing user-space access
  • Disable the caif_serial module if not required: modprobe -r caif_serial
  • Implement kernel module loading restrictions to prevent loading vulnerable driver modules
  • Use SELinux or AppArmor policies to restrict access to serial port device nodes
bash
# Disable caif_serial module and prevent auto-loading
echo "blacklist caif_serial" >> /etc/modprobe.d/blacklist-serial.conf
modprobe -r caif_serial

# Restrict serial port device permissions
chmod 600 /dev/ttyS*

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
  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • 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