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
    • 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-2025-71158

CVE-2025-71158: Linux Kernel GPIO MPSSE DoS Vulnerability

CVE-2025-71158 is a denial of service flaw in the Linux kernel GPIO MPSSE driver that causes system crashes when devices are unplugged during IRQ worker operations. This article covers technical details, impact, and fixes.

Published: January 30, 2026

CVE-2025-71158 Overview

A race condition vulnerability has been identified in the Linux kernel's GPIO MPSSE driver (gpio-mpsse). The flaw exists in the IRQ worker handling mechanism, where unplugging a device while an IRQ worker is running can trigger a system crash. This occurs because the driver, originally written for Sealevel hardware which was not hotpluggable, lacked proper synchronization when tearing down worker threads during device disconnection.

Critical Impact

System crash and denial of service when USB devices using the GPIO MPSSE driver are unplugged while IRQ workers are active.

Affected Products

  • Linux Kernel (GPIO MPSSE driver)
  • Systems using Sealevel hardware with GPIO MPSSE functionality
  • Linux systems with USB GPIO devices utilizing the MPSSE driver

Discovery Timeline

  • 2026-01-23 - CVE CVE-2025-71158 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2025-71158

Vulnerability Analysis

This vulnerability represents a race condition in the Linux kernel's GPIO MPSSE driver. The core issue stems from inadequate synchronization between device disconnection handling and active IRQ worker threads. When a user unplugs a device while an IRQ worker is still executing, the driver fails to properly coordinate the teardown of these worker threads, leading to a use-after-free condition or null pointer dereference that causes a kernel crash.

The GPIO MPSSE driver was initially developed for Sealevel hardware that was designed for fixed installations and not intended to be hotpluggable. As a result, the original implementation did not account for the scenario where a device could be removed while worker threads were actively processing interrupts.

Root Cause

The root cause of this vulnerability is the absence of proper synchronization mechanisms to protect the list of IRQ workers during device disconnection. Without a locking mechanism, the disconnect handler could attempt to access or free resources that are still being used by active worker threads, or conversely, workers could continue operating on resources that have already been deallocated.

Attack Vector

The attack vector requires local physical access to the system. An attacker with the ability to physically unplug a USB device using the GPIO MPSSE driver while IRQ workers are active can trigger the crash. While this limits remote exploitation, it presents a denial of service risk in environments where:

  • Systems are accessible to multiple users
  • Automated hardware testing environments with GPIO devices
  • Industrial control systems using Sealevel or similar GPIO hardware

The vulnerability is triggered by the timing of device removal relative to IRQ worker activity, making it a classic race condition scenario.

Detection Methods for CVE-2025-71158

Indicators of Compromise

  • Kernel panic or system crash logs indicating issues in the gpio-mpsse driver
  • Crash dumps showing null pointer dereference or use-after-free in GPIO-related kernel code
  • System instability when USB GPIO devices are connected or disconnected
  • Kernel oops messages referencing mpsse or GPIO IRQ worker functions

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for crash messages related to gpio-mpsse driver
  • Implement kernel crash dump analysis to identify GPIO MPSSE-related failures
  • Use kernel debugging tools such as KASAN (Kernel Address Sanitizer) to detect memory corruption
  • Deploy system monitoring to track unexpected reboots or kernel panics

Monitoring Recommendations

  • Enable kernel crash reporting with tools like kdump or crash
  • Configure alerting for kernel oops and panic events in centralized logging systems
  • Monitor USB device connect/disconnect events in conjunction with system stability
  • Review system logs after any hardware changes involving GPIO devices

How to Mitigate CVE-2025-71158

Immediate Actions Required

  • Apply the kernel patches referenced in the fix commits
  • Avoid hot-unplugging USB GPIO devices using the MPSSE driver until patched
  • Consider disabling the gpio-mpsse module if not actively required
  • Update to a patched Linux kernel version containing the fix

Patch Information

The Linux kernel maintainers have resolved this vulnerability by implementing a spinlock to protect the list of workers, ensuring proper teardown during device disconnect. The fix can be found in the following kernel commits:

  • Kernel Git Commit 179ef1127d7a
  • Kernel Git Commit 472d900c8bca

System administrators should update to kernel versions containing these patches or apply them manually if using a custom kernel build.

Workarounds

  • Prevent physical access to USB ports on affected systems
  • Use device management policies to restrict USB device removal during system operation
  • Blacklist or unload the gpio-mpsse kernel module if not required for system functionality
  • Implement hardware interlocks or cable management to prevent accidental device disconnection
bash
# Configuration example
# Blacklist the gpio-mpsse module if not needed
echo "blacklist gpio_mpsse" | sudo tee /etc/modprobe.d/blacklist-gpio-mpsse.conf

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

# Verify module is not loaded
lsmod | grep mpsse

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 Details

  • Kernel Git Commit Details
  • Related CVEs
  • CVE-2026-23405: Linux Kernel AppArmor DOS Vulnerability

  • CVE-2026-23404: Linux Kernel AppArmor DoS Vulnerability

  • CVE-2026-23398: Linux Kernel ICMP DoS Vulnerability

  • CVE-2026-23312: Linux Kernel Kaweth Driver DoS Vulnerability
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