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-2024-26933

CVE-2024-26933: Linux Kernel Race Condition Vulnerability

CVE-2024-26933 is a race condition flaw in Linux Kernel's USB core that causes deadlocks in port disable operations. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2024-26933 Overview

CVE-2024-26933 is a deadlock vulnerability in the Linux kernel's USB core subsystem. The vulnerability exists in the disable sysfs attribute handling code within port.c, where the show and store callback routines acquire the device lock for the port's parent hub device. This can lead to a deadlock condition when another process has locked the hub to remove it or change its configuration.

Critical Impact

A local attacker with low privileges can trigger a deadlock condition that results in system hang or denial of service, with potential for high confidentiality, integrity, and availability impact on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.9-rc1
  • Systems utilizing USB hub functionality with sysfs attribute access

Discovery Timeline

  • 2024-05-01 - CVE-2024-26933 published to NVD
  • 2025-03-07 - Last updated in NVD database

Technical Details for CVE-2024-26933

Vulnerability Analysis

This vulnerability is classified as a deadlock condition (CWE-667: Improper Locking) within the Linux kernel's USB subsystem. The flaw occurs when interacting with the disable sysfs attribute file for USB port devices. When this attribute is accessed (either read or write operations), the callback routines disable_show() and disable_store() attempt to acquire the device lock for the port's parent hub.

The deadlock scenario emerges when a concurrent process holds the hub lock to perform hub removal or configuration changes. Hub removal requires the hub interface to be removed, which in turn requires the port device to be removed. The device_del() function waits until all outstanding sysfs attribute callbacks return before completing, but the callbacks cannot return until they acquire the lock that is held by the removal process.

Root Cause

The root cause lies in improper lock ordering between the sysfs attribute callback execution and the device removal path. The disable_show() and disable_store() functions directly attempt to acquire the hub device lock without consideration for the possibility that a concurrent removal operation may already hold this lock and be waiting for the sysfs callback to complete.

The fix involves calling sysfs_break_active_protection() to prevent the sysfs core from waiting for the attribute's callback routine to return, which allows the removal process to proceed. Additionally, to prevent use-after-free conditions after breaking active protection, the fix acquires a reference to the hub structure using hub_get() before proceeding.

Attack Vector

The vulnerability requires local access to the system with low-privilege user permissions. An attacker can exploit this by:

  1. Gaining access to the sysfs interface for USB port devices (typically at /sys/bus/usb/devices/*/)
  2. Triggering concurrent operations on the disable attribute while USB hub removal or reconfiguration is in progress
  3. Creating a race condition that leads to the deadlock scenario

The exploitation does not require user interaction and can be triggered programmatically. The attack surface is limited to systems where an unprivileged user has access to USB sysfs attributes.

Detection Methods for CVE-2024-26933

Indicators of Compromise

  • System hangs or unresponsive states during USB hub hot-plug events
  • Processes stuck in uninterruptible sleep (D state) with stack traces showing disable_show or disable_store functions
  • Kernel soft lockup warnings referencing USB core or hub driver code paths

Detection Strategies

  • Monitor system logs for soft lockup warnings containing USB subsystem references
  • Implement kernel tracing on USB hub device lock acquisition patterns
  • Deploy SentinelOne Singularity for real-time kernel behavior monitoring and anomaly detection

Monitoring Recommendations

  • Enable kernel watchdog to detect and report soft lockup conditions
  • Configure syslog alerts for USB subsystem errors and kernel warnings
  • Utilize SentinelOne's EDR capabilities to monitor for unusual sysfs access patterns on USB device nodes

How to Mitigate CVE-2024-26933

Immediate Actions Required

  • Update to a patched Linux kernel version immediately
  • Restrict access to USB sysfs attributes using appropriate file system permissions
  • Monitor systems for signs of exploitation during the patching window

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches. Apply the appropriate patch for your kernel version:

Patch ReferenceCommit URL
Commit 4facc94Kernel Commit 4facc94
Commit 73d1589Kernel Commit 73d1589
Commit 9dac54fKernel Commit 9dac54f
Commit f4d1960Kernel Commit f4d1960
Commit f518498Kernel Commit f518498

Workarounds

  • Restrict sysfs access to USB port disable attributes using file system permissions
  • Disable unprivileged access to USB sysfs by adjusting udev rules
  • In containerized environments, ensure USB sysfs is not mounted or accessible to untrusted workloads
bash
# Restrict access to USB port sysfs disable attributes
# Apply restrictive permissions to USB port sysfs entries
chmod 600 /sys/bus/usb/devices/*/*/disable 2>/dev/null

# Add udev rule to restrict disable attribute access
echo 'SUBSYSTEM=="usb", ATTR{disable}=="*", MODE="0600"' > /etc/udev/rules.d/99-usb-disable-restrict.rules
udevadm control --reload-rules

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-667
  • Vendor Resources
  • Kernel Commit 4facc94

  • Kernel Commit 73d1589

  • Kernel Commit 9dac54f

  • Kernel Commit f4d1960

  • Kernel Commit f518498
  • Related CVEs
  • CVE-2026-31456: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31466: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31455: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31436: Linux Kernel Race Condition 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