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-2023-37453

CVE-2023-37453: Linux Kernel USB Subsystem DoS Vulnerability

CVE-2023-37453 is a denial of service flaw in the Linux Kernel USB subsystem that causes out-of-bounds access and system crashes. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 4, 2026

CVE-2023-37453 Overview

CVE-2023-37453 is an out-of-bounds read vulnerability discovered in the USB subsystem of the Linux kernel through version 6.4.2. The flaw exists in the read_descriptors function within drivers/usb/core/sysfs.c, which can result in a system crash when processing malformed USB descriptor data. This vulnerability was identified through automated kernel fuzzing and represents a memory safety issue that could be exploited through physical access to a vulnerable system.

Critical Impact

An attacker with physical access to a vulnerable Linux system can trigger a kernel crash by connecting a specially crafted USB device, leading to denial of service conditions.

Affected Products

  • Linux Kernel versions through 6.4.2
  • Systems running affected kernel versions with USB subsystem enabled
  • Embedded Linux devices with exposed USB interfaces

Discovery Timeline

  • 2023-07-06 - CVE-2023-37453 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2023-37453

Vulnerability Analysis

This vulnerability falls under CWE-125 (Out-of-Bounds Read), a memory corruption class where code reads data from a location outside the intended buffer boundaries. In the context of the Linux kernel USB subsystem, the read_descriptors function in drivers/usb/core/sysfs.c fails to properly validate buffer boundaries when processing USB device descriptors exposed through the sysfs interface.

When a user-space process reads USB descriptor information through the sysfs filesystem, the kernel must serialize and return descriptor data. The vulnerable code path does not adequately verify that read operations remain within the allocated buffer, allowing reads beyond the intended memory region. This can expose kernel memory contents or trigger a kernel panic when accessing invalid memory addresses.

The vulnerability requires physical access to the target system, meaning an attacker must be able to connect a malicious USB device or manipulate USB descriptor data through physical means. While this limits remote exploitation, it remains a significant concern for kiosk systems, publicly accessible workstations, and environments where physical security cannot be guaranteed.

Root Cause

The root cause of CVE-2023-37453 lies in insufficient bounds checking within the read_descriptors function. When USB descriptors are read through the sysfs interface, the function calculates offsets and sizes based on descriptor metadata. However, the validation logic fails to account for all edge cases where malformed or maliciously crafted descriptor data could specify sizes or offsets that exceed the actual buffer allocation.

The kernel commits addressing this issue implement proper boundary validation before performing read operations, ensuring that calculated offsets and sizes cannot exceed the allocated buffer dimensions. Multiple patches were required to comprehensively address different code paths where this boundary checking was insufficient.

Attack Vector

Exploitation of this vulnerability requires physical access to the target system. An attacker would need to:

  1. Gain physical access to a USB port on the vulnerable system
  2. Connect a specially crafted USB device that provides malformed descriptor data
  3. Trigger the vulnerable code path through descriptor enumeration or sysfs access

When the kernel processes the malformed descriptors, the out-of-bounds read occurs, potentially causing:

  • Kernel memory information disclosure
  • System crash due to invalid memory access
  • Denial of service through repeated exploitation

The vulnerability does not require authentication or user interaction beyond the physical connection of the malicious device. Systems with automated USB device handling are particularly susceptible, as they may automatically enumerate connected devices without user confirmation.

Detection Methods for CVE-2023-37453

Indicators of Compromise

  • Unexpected kernel panics or system crashes coinciding with USB device connections
  • Kernel oops messages referencing read_descriptors or drivers/usb/core/sysfs.c in stack traces
  • Unusual USB device enumeration activity in system logs
  • Repeated kernel crashes on systems with public USB access

Detection Strategies

  • Monitor kernel logs for oops or panic messages containing references to USB sysfs operations
  • Implement USB device whitelisting to prevent enumeration of unknown or untrusted devices
  • Deploy endpoint detection solutions capable of identifying anomalous USB device behavior
  • Configure kernel crash dump analysis to capture and analyze panic events for forensic investigation

Monitoring Recommendations

  • Enable kernel logging for USB subsystem events using dmesg monitoring
  • Configure system monitoring to alert on kernel panic events and unexpected reboots
  • Review USB device connection logs regularly on systems with physical access exposure
  • Implement SentinelOne endpoint protection for comprehensive kernel-level threat detection

How to Mitigate CVE-2023-37453

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the security fixes
  • Restrict physical access to USB ports on critical systems where feasible
  • Implement USB device authorization policies to prevent automatic enumeration of unknown devices
  • Monitor for kernel crash events that may indicate exploitation attempts

Patch Information

Multiple kernel commits have been released to address this vulnerability. The primary fixes are available in the Linux kernel git repository:

  • Linux Kernel Commit 1e4c574
  • Linux Kernel Commit 85d07c5
  • Linux Kernel Commit de28e46
  • Linux Kernel Commit ff33299

Organizations should apply these patches through their distribution's package management system or by updating to a kernel version that includes these fixes. Additional technical details and discussion are available on the Kernel Mailing List and the Syzkaller Bug Report.

Workarounds

  • Disable USB device enumeration on systems where USB functionality is not required using kernel boot parameters
  • Implement physical USB port blockers on kiosk or publicly accessible systems
  • Configure USB authorization to require manual approval for new devices using usbguard or similar tools
  • Restrict access to USB sysfs entries through appropriate file permissions where applicable
bash
# Disable USB autosuspend and implement basic USB restrictions
echo "authorized_default=0" > /sys/bus/usb/devices/usb*/authorized_default

# Install and configure USBGuard for device whitelisting
apt install usbguard
systemctl enable usbguard
systemctl start usbguard

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

  • SeverityMEDIUM

  • CVSS Score4.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • Linux Kernel Commit 1e4c574

  • Linux Kernel Commit 85d07c5

  • Linux Kernel Commit de28e46

  • Linux Kernel Commit ff33299

  • Kernel Mailing List Discussion

  • Kernel Mailing List Discussion

  • Syzkaller Bug Report
  • 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