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-2026-23312

CVE-2026-23312: Linux Kernel Kaweth Driver DoS Vulnerability

CVE-2026-23312 is a denial of service flaw in the Linux kernel kaweth USB driver caused by improper USB endpoint validation. This post covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2026-23312 Overview

A vulnerability has been discovered in the Linux kernel's kaweth network USB driver that fails to properly validate USB endpoints before binding to devices. The driver does not verify that the device being probed has the expected number and types of USB endpoints, which can lead to system crashes when the driver attempts to access non-existent USB request blocks (URBs).

Critical Impact

A malicious or malformed USB device can cause kernel crashes and system instability by exploiting the lack of endpoint validation in the kaweth driver.

Affected Products

  • Linux kernel (kaweth USB network driver)
  • Systems using USB-to-Ethernet adapters based on KLSI KL5KUSB101 chipsets
  • Multiple Linux kernel stable branches

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23312 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23312

Vulnerability Analysis

The vulnerability exists in the kaweth driver, which is used for USB-to-Ethernet network adapters based on the KLSI KL5KUSB101 chipset. When the driver probes a USB device during connection, it assumes the device has the correct USB endpoint configuration without performing validation checks.

The driver blindly accesses USB endpoints that it expects to be present, but a malicious or improperly configured USB device may not provide the expected endpoints. When the driver attempts to use these non-existent endpoints, it results in accessing invalid memory regions or null pointers, leading to a kernel crash.

This type of vulnerability falls under the category of improper input validation for USB device descriptors. The kernel's USB subsystem provides mechanisms for drivers to validate endpoint configurations, but the kaweth driver was not utilizing these safeguards before this fix.

Root Cause

The root cause is missing input validation in the kaweth driver's probe function. The driver does not check whether the USB device descriptor contains the expected bulk IN and bulk OUT endpoints before attempting to use them. This violates secure coding practices for USB driver development, where drivers should never trust device-provided descriptors without verification.

Attack Vector

The attack requires physical access to connect a malicious USB device to the target system. An attacker could craft a USB device that enumerates with the kaweth driver's vendor/product IDs but provides an incomplete or malformed endpoint configuration. When the system attempts to load the kaweth driver for this device, the driver's subsequent operations on missing endpoints will trigger a kernel crash.

The exploitation path involves:

  1. Creating a USB device that matches kaweth's device identification criteria
  2. Omitting expected USB endpoints from the device descriptor
  3. Connecting the device to a vulnerable Linux system
  4. The kaweth driver binds to the device and crashes when accessing missing endpoints

Detection Methods for CVE-2026-23312

Indicators of Compromise

  • Kernel panic or oops messages referencing the kaweth module
  • Unexpected system crashes occurring immediately after USB device connection events
  • Kernel log entries showing null pointer dereferences in kaweth driver functions
  • USB device connection events for unknown or suspicious USB-Ethernet adapters

Detection Strategies

  • Monitor kernel logs (dmesg, journalctl -k) for kaweth-related crash signatures or warnings
  • Implement USB device whitelisting to restrict unauthorized device connections
  • Use tools like usbguard to monitor and control USB device authorization
  • Deploy endpoint detection solutions that can identify malicious USB device behaviors

Monitoring Recommendations

  • Enable kernel crash dump collection to capture evidence when system crashes occur
  • Configure monitoring for USB device attach/detach events in system logs
  • Review connected USB devices periodically using lsusb and compare against known-good baselines
  • Implement alerting for kernel oops or panic events involving network or USB subsystems

How to Mitigate CVE-2026-23312

Immediate Actions Required

  • Apply the kernel patches from the stable kernel branches as soon as possible
  • Consider disabling the kaweth driver module if not required using modprobe.blacklist=kaweth
  • Implement physical USB port access controls to prevent unauthorized device connections
  • Deploy USB device authorization policies to restrict device binding

Patch Information

Multiple patches have been released across Linux kernel stable branches to address this vulnerability. The fix adds proper USB endpoint validation to the kaweth driver's probe function, ensuring the device has the expected endpoints before the driver binds to it.

Relevant kernel commits:

  • Linux Kernel Commit Update 1
  • Linux Kernel Commit Update 2
  • Linux Kernel Commit Update 3
  • Linux Kernel Commit Update 4
  • Linux Kernel Commit Update 5
  • Linux Kernel Commit Update 6

Workarounds

  • Blacklist the kaweth kernel module if USB-Ethernet functionality is not needed
  • Restrict physical access to USB ports on sensitive systems
  • Use USB port blockers or disable unused USB ports in BIOS/UEFI settings
  • Deploy usbguard or similar tools to create USB device whitelists
bash
# Blacklist kaweth module to prevent loading
echo "blacklist kaweth" | sudo tee /etc/modprobe.d/blacklist-kaweth.conf

# Unload module if currently loaded
sudo modprobe -r kaweth

# Verify module is not loaded
lsmod | grep kaweth

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
  • Linux Kernel Commit Update 1

  • Linux Kernel Commit Update 2

  • Linux Kernel Commit Update 3

  • Linux Kernel Commit Update 4

  • Linux Kernel Commit Update 5

  • Linux Kernel Commit Update 6
  • Related CVEs
  • CVE-2026-23398: Linux Kernel ICMP DoS Vulnerability

  • CVE-2026-23382: Linux Kernel HID Driver DoS Vulnerability

  • CVE-2026-23385: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-23379: Linux Kernel ETS Scheduler 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