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

CVE-2026-43425: Linux Kernel USB MDC800 DoS Vulnerability

CVE-2026-43425 is a denial of service flaw in the Linux kernel USB MDC800 driver caused by improper URB timeout handling. Attackers can trigger system warnings and instability. This article covers technical details, impact, and fixes.

Published: May 18, 2026

CVE-2026-43425 Overview

CVE-2026-43425 is a Linux kernel vulnerability in the mdc800 USB image driver. The flaw resides in the mdc800_device_read() function, which submits a download USB Request Block (URB) and waits for completion. When the wait times out and the device does not respond, the function returns without killing the URB, leaving it active. A subsequent read() call resubmits the same URB while it remains in-flight, triggering the WARN in usb_submit_urb() with the message URB submitted while active. The fix checks the return value of wait_event_timeout() and kills the URB on timeout before its status is inspected or it is resubmitted.

Critical Impact

Local users with access to an mdc800-class USB device can trigger kernel warnings and unstable URB state through repeated timed-out reads.

Affected Products

  • Linux kernel usb/image/mdc800 driver
  • Multiple stable Linux kernel branches addressed via the referenced commits
  • Systems exposing the Mustek MDC800 USB digital camera interface

Discovery Timeline

  • 2026-05-08 - CVE-2026-43425 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43425

Vulnerability Analysis

The mdc800_device_read() routine in the kernel USB image driver issues an asynchronous download URB through usb_submit_urb() and then blocks on wait_event_timeout() for completion. The original code path did not distinguish between successful completion and timeout expiry. On timeout, the function unwound and returned to userspace while the URB remained queued in the USB core.

When the calling process invoked read() again, the driver attempted to resubmit the still-active URB. The USB core detects this state in usb_submit_urb() and emits the warning URB submitted while active. The driver also risks inspecting URB status fields before the transfer has actually terminated, producing inconsistent results.

The corrected logic captures the return value of wait_event_timeout() and, when zero is returned, invokes usb_kill_urb() to cancel the outstanding transfer. This mirrors prior fixes in commit 372c93131998 for the yurex driver and commit b98d5000c505 for the iguanair media driver.

Root Cause

The root cause is improper timeout handling around an asynchronous USB transfer, leading to an active URB being treated as inactive. This is a state-management bug in driver control flow rather than memory corruption, and it relates to kernel driver robustness around wait_event_timeout() semantics.

Attack Vector

Exploitation requires local access to a system with the mdc800 driver loaded and the corresponding USB device attached or emulated. An attacker with permission to open the device node can issue successive read() operations against an unresponsive device to provoke the warning and inconsistent URB state. The flaw does not provide a remote attack surface, and there is no public evidence of exploitation.

No verified proof-of-concept code is available. The behavior is described in the upstream commit messages referenced in the Kernel Git Commit 9fa5a497 and parallel stable backports.

Detection Methods for CVE-2026-43425

Indicators of Compromise

  • Kernel log entries containing the string URB submitted while active originating from usb_submit_urb().
  • Repeated dmesg warnings tied to the mdc800 driver module under load.
  • Unresponsive or hung processes performing read() calls against /dev/mdc800 style device nodes.

Detection Strategies

  • Monitor kernel ring buffer output for USB core WARN traces involving mdc800_device_read in the call stack.
  • Audit loaded kernel modules against patched kernel versions referenced in the eight upstream commits.
  • Correlate user processes invoking the mdc800 device with subsequent kernel warnings to identify abuse patterns.

Monitoring Recommendations

  • Forward kern.warning and kern.err syslog facilities to a centralized log analytics platform for correlation.
  • Track kernel package versions across the fleet to confirm timely uptake of stable kernel updates.
  • Alert on repeated USB driver WARN events from the same host within short time windows.

How to Mitigate CVE-2026-43425

Immediate Actions Required

  • Apply the latest stable Linux kernel update from your distribution that incorporates the mdc800 URB timeout fix.
  • If patching is delayed, unload the mdc800 module with modprobe -r mdc800 on systems that do not require Mustek MDC800 camera support.
  • Restrict access to USB device nodes through udev rules and group permissions to limit which users can trigger the code path.

Patch Information

The fix is committed across multiple stable branches. Reference commits include Kernel Git Commit 15536f6, Kernel Git Commit 155f471e, Kernel Git Commit 1be3b77d, Kernel Git Commit 9bf877cc, Kernel Git Commit 9fa5a497, Kernel Git Commit b7fed917, Kernel Git Commit cc739844, and Kernel Git Commit d4a400a6. Each commit calls usb_kill_urb() when wait_event_timeout() indicates a timeout.

Workarounds

  • Blacklist the mdc800 module on systems with no legitimate need for Mustek MDC800 USB camera support.
  • Apply strict permissions on the associated device node so only trusted accounts can issue read() operations.
  • Disable USB ports or use USB device filtering on hosts where physical attachment of unknown devices is not required.
bash
# Configuration example
# Prevent loading of the vulnerable driver until patched
echo 'blacklist mdc800' | sudo tee /etc/modprobe.d/blacklist-mdc800.conf
sudo modprobe -r mdc800 2>/dev/null || true
sudo update-initramfs -u

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.03%

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

  • Kernel Git Commit 155f471e

  • Kernel Git Commit 1be3b77d

  • Kernel Git Commit 9bf877cc

  • Kernel Git Commit 9fa5a497

  • Kernel Git Commit b7fed917

  • Kernel Git Commit cc739844

  • Kernel Git Commit d4a400a6
  • Related CVEs
  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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