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

CVE-2026-23298: Linux Kernel ucan Driver DoS Vulnerability

CVE-2026-23298 is a denial of service flaw in the Linux kernel ucan driver that causes infinite loops when processing zero-length messages. This article covers the technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-23298 Overview

A denial of service vulnerability exists in the Linux kernel's UCAN (USB CAN) driver that can cause the system to hang indefinitely. The vulnerability occurs in the ucan_read_bulk_callback() function when processing USB CAN messages with a zero-length message field. When a malformed or broken UCAN device sends a message with the length field set to 0, the driver enters an infinite loop, effectively hanging the entire system.

This vulnerability is similar to a previously fixed issue in the kvaser_usb driver (commit 0c73772cd2b8), indicating that broken devices with this behavior exist in the wild. The fix involves skipping zero-length messages and continuing to process subsequent messages in the buffer.

Critical Impact

A malformed USB CAN device can cause a complete system hang through an infinite loop in the kernel driver, resulting in denial of service that requires a hard reboot to recover.

Affected Products

  • Linux kernel with UCAN driver enabled
  • Systems using USB CAN interfaces with the ucan kernel module
  • Embedded systems and industrial control systems utilizing CAN bus over USB

Discovery Timeline

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

Technical Details for CVE-2026-23298

Vulnerability Analysis

The vulnerability resides in the UCAN driver's bulk message processing routine within the Linux kernel. The ucan_read_bulk_callback() function processes incoming USB bulk transfers containing CAN messages. Each message in the buffer has a length field that the driver uses to advance through the buffer.

When a malformed USB CAN device sends a message with a length value of zero, the driver's message parsing loop fails to advance its position in the buffer. Since the length is zero, the pointer to the next message remains unchanged, causing the driver to reprocess the same zero-length message indefinitely. This creates an infinite loop within the kernel context, consuming CPU resources and effectively freezing the system.

The root cause is a missing validation check for zero-length messages before using the length value to calculate the offset to the next message in the buffer.

Root Cause

The driver lacks proper input validation for the message length field received from USB CAN hardware. When iterating through messages in a bulk transfer buffer, the code assumes all message length values will be positive and non-zero. Without a check to skip or reject zero-length messages, the parsing loop cannot progress past such malformed entries.

This is a classic instance of improper input validation for data received from hardware interfaces. The fix implements a simple check: if the message length is 0, skip the message and continue processing the next one in the buffer.

Attack Vector

The attack requires physical access to connect a malicious or malfunctioning USB CAN device to the target system. Once connected, the device can send crafted USB bulk transfers containing messages with zero-length fields. When the kernel driver processes these malformed messages, it enters an infinite loop.

The attack surface includes:

  • Industrial control systems using CAN bus interfaces
  • Automotive diagnostics systems
  • Embedded Linux systems with USB CAN adapters
  • Any Linux system where an attacker can connect a USB device

This vulnerability can be triggered by either a deliberately malicious device or a malfunctioning legitimate device sending corrupted data.

Detection Methods for CVE-2026-23298

Indicators of Compromise

  • System becomes completely unresponsive after USB CAN device connection
  • High CPU utilization on the processor handling USB interrupts
  • Kernel logs showing repeated UCAN driver activity before system freeze
  • System requires hard reboot to recover after USB CAN device use

Detection Strategies

  • Monitor for unexpected USB device connections, particularly CAN interface devices
  • Implement kernel tracing on UCAN driver functions to detect abnormal loop patterns
  • Use hardware watchdog timers to detect and recover from system hangs
  • Deploy USB device whitelisting to prevent unauthorized CAN adapters

Monitoring Recommendations

  • Configure system monitoring to alert on prolonged high CPU usage in kernel context
  • Enable USB device auditing to log all CAN adapter connections
  • Implement kernel soft lockup detection and configure appropriate timeout values
  • Review kernel logs for ucan driver messages indicating potential issues

How to Mitigate CVE-2026-23298

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Restrict physical access to USB ports on critical systems
  • Blacklist the ucan module if USB CAN functionality is not required
  • Implement USB device authorization policies to control which devices can connect

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability across multiple stable kernel branches. The fix adds validation to check for zero-length messages in ucan_read_bulk_callback() and skips them to prevent the infinite loop condition.

Patches are available at the following kernel commits:

  • Kernel Commit 13b646e
  • Kernel Commit 1e446fd
  • Kernel Commit aa9e0a7
  • Kernel Commit ab6f075
  • Kernel Commit bd85f21
  • Kernel Commit c7bc62be

Workarounds

  • Disable or blacklist the ucan kernel module if USB CAN functionality is not needed
  • Implement strict USB device access controls limiting which devices can be connected
  • Use hardware USB port blockers on systems in physically accessible locations
  • Configure udev rules to prevent automatic loading of the UCAN driver for untrusted devices
bash
# Configuration example
# Blacklist the ucan module to prevent automatic loading
echo "blacklist ucan" | sudo tee /etc/modprobe.d/blacklist-ucan.conf

# Unload the module if currently loaded
sudo modprobe -r ucan

# Verify module is not loaded
lsmod | grep ucan

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 Commit 13b646e

  • Kernel Commit 1e446fd

  • Kernel Commit aa9e0a7

  • Kernel Commit ab6f075

  • Kernel Commit bd85f21

  • Kernel Commit c7bc62be
  • Related CVEs
  • CVE-2026-31418: Linux Kernel Netfilter IPset DoS Flaw

  • CVE-2026-31420: Linux Kernel Bridge MRP DoS Vulnerability

  • CVE-2026-31415: Linux Kernel IPv6 DoS Vulnerability

  • CVE-2026-31424: Linux Kernel Netfilter 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