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

CVE-2026-23188: Linux Kernel r8152 Driver DoS Vulnerability

CVE-2026-23188 is a denial of service flaw in the Linux kernel r8152 USB network driver causing resume reset deadlock. Recursive mutex locking can freeze the system. This article covers technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2026-23188 Overview

A deadlock vulnerability has been identified in the Linux kernel's Realtek r8152 USB network driver. The vulnerability occurs during device resume operations where the rtl8152_resume function can trigger a device reset while holding the tp->control mutex, leading to a recursive mutex lock attempt that causes a system deadlock.

Critical Impact

This vulnerability can cause complete system hangs during USB device resume operations, potentially leading to kernel panic and requiring a system reboot to recover.

Affected Products

  • Linux kernel with r8152 USB network driver
  • Systems using Realtek RTL8152/RTL8153 USB Ethernet adapters
  • Devices utilizing USB network interfaces with affected kernel versions

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23188 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23188

Vulnerability Analysis

This deadlock vulnerability exists within the Realtek r8152 USB network driver subsystem of the Linux kernel. The flaw manifests when the driver attempts to resume from a suspended state and encounters a condition requiring a device reset. The core issue lies in the improper synchronization of mutex operations during the resume-reset sequence.

When rtl8152_resume is invoked during USB device wake-up, it acquires the tp->control mutex to perform necessary operations. If the device is in an inaccessible state requiring a reset, the function calls usb_reset_device(). This reset operation subsequently triggers rtl8152_post_reset, which then attempts to call __rtl8152_set_mac_address. This function attempts to acquire the same tp->control mutex that is already held by the calling thread, resulting in a classic recursive deadlock condition.

The call trace provided in the kernel logs demonstrates the deadlock path, showing the scheduler being invoked while waiting for the mutex lock, which never becomes available because the same thread already holds it. After approximately 10 seconds, the Device Power Management (DPM) subsystem times out, and the system will panic within 15 seconds if the deadlock is not resolved.

Root Cause

The root cause is a recursive mutex acquisition attempt in the r8152 driver's resume path. The rtl8152_resume function holds tp->control mutex while calling code paths that attempt to reacquire the same lock. Specifically, the reset operation executed under the mutex scope re-enters the driver through rtl8152_post_reset and dev_set_mac_address, which requires the same mutex. This violates the non-reentrant nature of standard mutex implementations in the Linux kernel.

Attack Vector

The vulnerability is triggered through normal system operations rather than malicious input. Any scenario that causes a USB suspend/resume cycle on an RTL8152/RTL8153 USB network adapter where the device becomes inaccessible can trigger this deadlock. This includes:

  • System sleep/wake cycles (suspend to RAM or hibernate)
  • USB port power management operations
  • USB hub resets or hotplug events
  • Driver unbind/rebind operations during certain timing windows

The attack vector is local and requires the affected USB network driver to be in use. While not directly exploitable for code execution, the denial of service impact can be severe in production environments where system availability is critical.

Detection Methods for CVE-2026-23188

Indicators of Compromise

  • System hangs occurring during USB device resume operations with RTL8152/RTL8153 adapters
  • Kernel log messages showing "DPM device timeout after 10 seconds" followed by panic warnings
  • Stack traces in dmesg showing __mutex_lock_common called from rtl8152_post_reset within rtl8152_resume context
  • Unresponsive systems after waking from sleep with USB network adapters connected

Detection Strategies

  • Monitor kernel logs for DPM timeout warnings associated with USB network device resume operations
  • Implement watchdog timers to detect system hangs during power state transitions
  • Deploy kernel tracing with ftrace to monitor mutex contention in the r8152 driver
  • Use hardware watchdog mechanisms to automatically recover from deadlock conditions

Monitoring Recommendations

  • Configure system logging to capture kernel mutex debugging output when r8152 driver is loaded
  • Enable CONFIG_LOCKDEP on development/test systems to proactively detect potential deadlock scenarios
  • Monitor system uptime and power management event completion times for anomalies
  • Implement automated testing of suspend/resume cycles on systems with affected USB network adapters

How to Mitigate CVE-2026-23188

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix for this vulnerability
  • Consider disabling USB autosuspend for RTL8152/RTL8153 devices as a temporary workaround
  • On critical systems, consider using alternative network interfaces until patching is completed
  • Review system power management policies for USB network devices

Patch Information

The Linux kernel development team has released patches addressing this deadlock vulnerability. The fix moves the reset operation for inaccessible devices outside of the tp->control mutex scope, preventing the recursive mutex acquisition scenario.

Patches are available through the following kernel git commits:

  • Kernel Git Commit 1b2efc5
  • Kernel Git Commit 61c8091
  • Kernel Git Commit 6d06bc83

Organizations should apply the appropriate patch for their kernel version through their distribution's package management system or by building an updated kernel from source.

Workarounds

  • Disable USB autosuspend for the r8152 device to prevent the problematic resume path from being triggered
  • Use udev rules to set power management to "on" for affected USB network adapters
  • Configure systems to avoid suspend states when USB network connectivity is critical
  • Deploy hardware watchdog timers to automatically reboot systems if they become unresponsive
bash
# Disable USB autosuspend for RTL8152/RTL8153 devices
# Add to /etc/udev/rules.d/50-r8152-power.rules
ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0bda", ATTR{idProduct}=="8152", ATTR{power/control}="on"
ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0bda", ATTR{idProduct}=="8153", ATTR{power/control}="on"

# Reload udev rules after creating the file
udevadm control --reload-rules
udevadm trigger

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

  • Kernel Git Commit 61c8091

  • Kernel Git Commit 6d06bc83
  • 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