A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-23679

CVE-2026-23679: libusb NULL Pointer Dereference DoS Flaw

CVE-2026-23679 is a NULL pointer dereference DoS vulnerability in libusb before version 1.0.30 that allows attackers to crash applications via malformed USB descriptors. This post covers technical details, exploitation.

Published: May 28, 2026

CVE-2026-23679 Overview

CVE-2026-23679 is a NULL pointer dereference vulnerability [CWE-125] in libusb versions prior to 1.0.30. The flaw resides in the parse_interface() function, which handles USB configuration descriptors. When an interface declares bNumEndpoints greater than zero but is followed by a class-specific descriptor whose bLength exceeds the remaining buffer, the parser returns early without allocating the endpoint array. Applications iterating over endpoints subsequently dereference a NULL pointer and crash. The flaw is reachable through libusb_get_active_config_descriptor and libusb_get_config_descriptor, and can be triggered via virtualized USB passthrough, file-based descriptor parsing, or network-sourced descriptors.

Critical Impact

Attackers with local access can crash any application that consumes attacker-supplied USB descriptors through libusb, producing a denial-of-service condition against host services.

Affected Products

  • libusb versions prior to 1.0.30
  • Applications linking against vulnerable libusb builds that parse untrusted USB descriptors
  • Virtualization and USB passthrough stacks relying on libusb for descriptor enumeration

Discovery Timeline

  • 2026-05-27 - CVE-2026-23679 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-23679

Vulnerability Analysis

The vulnerability exists in libusb's descriptor parsing logic. USB configuration descriptors contain nested interface and endpoint descriptors, with optional class-specific descriptors interleaved between them. The parse_interface() function is responsible for walking this structure, validating each descriptor's length, and allocating an endpoint array sized by bNumEndpoints.

When an interface descriptor announces a non-zero bNumEndpoints but the next class-specific descriptor declares a bLength larger than the buffer space that remains, parse_interface() aborts the walk before reaching the endpoint allocation path. The function returns without setting the endpoint pointer or signaling an error to callers in a way that prevents downstream iteration.

Consumers calling libusb_get_active_config_descriptor or libusb_get_config_descriptor receive a partially populated libusb_interface_descriptor structure. Code that loops from zero to bNumEndpoints then dereferences the NULL endpoint field, crashing the process.

Root Cause

The root cause is inconsistent state between the bNumEndpoints count returned to callers and the actual allocation of the endpoint array. The parser trusts bNumEndpoints as authoritative for iteration but treats malformed class-specific descriptors as a silent termination condition. This mismatch produces a structure whose advertised size does not match its allocated backing memory.

Attack Vector

Exploitation requires the victim application to parse an attacker-controlled USB configuration descriptor. Attack paths include connecting a malicious or emulated USB device to a host running a vulnerable application, supplying crafted descriptor blobs to software that reads descriptors from files, and delivering descriptors over network protocols such as USB/IP. The result is a reliable crash of any process iterating endpoints on the malformed interface. The vulnerability does not provide memory disclosure or code execution primitives; impact is limited to availability.

No verified public exploit code is currently available. Refer to the VulnCheck Security Advisory and the upstream GitHub Issue Discussion for technical detail.

Detection Methods for CVE-2026-23679

Indicators of Compromise

  • Unexpected segmentation faults or SIGSEGV core dumps from processes linked against libusb (for example usbd, virt-manager, qemu, container runtimes with USB passthrough).
  • Repeated crash-restart cycles of USB-handling daemons immediately after a new USB device attaches or after a USB/IP session is established.
  • Crash stack traces containing parse_interface, libusb_get_active_config_descriptor, or libusb_get_config_descriptor frames.

Detection Strategies

  • Inventory installed libusb packages across endpoints and servers and flag any version older than 1.0.30.
  • Monitor process crash telemetry for repeated terminations of services that consume USB descriptors, correlating with USB device attach events from kernel logs.
  • Inspect USB/IP and virtualization audit trails for configuration descriptors where an interface's bNumEndpoints is non-zero but is followed by class-specific descriptors with an oversized bLength field.

Monitoring Recommendations

  • Forward dmesg, udev, and application crash logs to a centralized analytics platform and alert on libusb-linked process terminations.
  • Track USB device attach events on multi-tenant virtualization hosts and correlate with downstream service availability.
  • Baseline normal USB descriptor structures in environments that ingest descriptors from files or network sources, and alert on length-field anomalies.

How to Mitigate CVE-2026-23679

Immediate Actions Required

  • Upgrade libusb to version 1.0.30 or later across all hosts, containers, and base images.
  • Rebuild or repackage any statically linked applications that bundle a vulnerable libusb copy.
  • Restrict USB passthrough and USB/IP exposure to trusted devices and authenticated endpoints only.
  • Disable file-based or network-sourced descriptor parsing in applications where it is not required.

Patch Information

The issue is fixed upstream in libusb release v1.0.30. The corrective change is documented in the GitHub Pull Request and applied in commit 578ab76b. The fix ensures parse_interface() keeps bNumEndpoints consistent with the allocation state of the endpoint array when malformed class-specific descriptors are encountered.

Workarounds

  • Where patching is not immediately possible, disconnect untrusted USB devices and disable USB passthrough for guest virtual machines.
  • Block or filter USB/IP traffic at the network boundary for hosts that do not require remote USB device sharing.
  • Run USB-handling services under supervisors that restart on crash to limit availability impact until the patched libusb is deployed.
bash
# Verify the installed libusb version on Debian/Ubuntu systems
dpkg -l | grep libusb-1.0

# Verify on RPM-based systems
rpm -q libusb1

# Confirm that the runtime library reports version 1.0.30 or later
strings /usr/lib/x86_64-linux-gnu/libusb-1.0.so.0 | grep -i "1.0."

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibusb

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • GitHub Commit Log

  • GitHub Issue Discussion

  • GitHub Pull Request

  • GitHub Release v1.0.30

  • VulnCheck Security Advisory
  • Related CVEs
  • CVE-2026-47104: libusb Out-of-Bounds Read 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