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

CVE-2026-23108: Linux Kernel USB URB Memory Leak Flaw

CVE-2026-23108 is a memory leak vulnerability in the Linux kernel's usb_8dev CAN driver that fails to properly anchor URBs before completion callbacks. This post covers the technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-23108 Overview

A memory leak vulnerability has been identified in the Linux kernel's USB-8dev CAN (Controller Area Network) driver. The vulnerability exists in the usb_8dev_read_bulk_callback() function, where USB Request Blocks (URBs) for USB-in transfers are not properly anchored after completion, leading to memory leakage when the device is closed.

Critical Impact

Systems using the USB-8dev CAN interface may experience memory exhaustion over time due to improperly released URBs, potentially leading to system instability or denial of service conditions.

Affected Products

  • Linux kernel with USB-8dev CAN driver enabled
  • Systems utilizing USB-8dev CAN interfaces for Controller Area Network communications
  • Industrial and automotive systems relying on CAN bus communication via USB-8dev adapters

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23108 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23108

Vulnerability Analysis

This memory leak vulnerability occurs in the USB-8dev CAN driver's bulk read callback handling. The issue is rooted in how URBs (USB Request Blocks) are managed throughout their lifecycle in the driver.

When usb_8dev_open() is called, it invokes usb_8dev_start() which allocates URBs for USB-in transfers. These URBs are added to the priv->rx_submitted anchor and submitted for processing. During normal operation, the usb_8dev_read_bulk_callback() function processes completed URBs and resubmits them for additional data reception.

The critical flaw exists because the USB framework unanchors URBs before invoking the completion callback. This means that once an in-URB has been completed, it is no longer attached to the priv->rx_submitted anchor. When usb_8dev_close() is called, which triggers unlink_all_urbs(), the function calls usb_kill_anchored_urbs(&priv->rx_submitted) to free URBs. However, since completed URBs are already unanchored, they are never released, resulting in a memory leak.

This vulnerability is similar to a previously addressed issue in the gs_usb driver (commit 7352e1d5932a), indicating this is a pattern-based flaw across USB CAN drivers.

Root Cause

The root cause is the failure to re-anchor URBs in the usb_8dev_read_bulk_callback() function after the USB framework unanchors them upon completion. The driver incorrectly assumes that URBs remain anchored throughout their lifecycle, but the USB subsystem removes them from the anchor before the completion callback is executed.

Attack Vector

While this vulnerability does not directly enable remote code execution, it can be exploited to cause denial of service through memory exhaustion. An attacker with physical access to a system with a USB-8dev CAN interface could continuously trigger USB bulk transfers, causing URBs to leak memory with each completion cycle. Over extended operation periods, this could exhaust system memory resources, leading to system instability or crashes.

The vulnerability requires local access and affects systems where the USB-8dev CAN driver is actively in use for CAN bus communications.

Detection Methods for CVE-2026-23108

Indicators of Compromise

  • Gradual increase in kernel memory usage on systems with active USB-8dev CAN interfaces
  • Memory allocation warnings or out-of-memory (OOM) conditions over extended operation periods
  • Unusual system slowdowns correlated with CAN bus activity

Detection Strategies

  • Monitor kernel memory allocations using tools like slabtop or /proc/slabinfo for URB-related allocations
  • Track memory consumption patterns on systems utilizing USB-8dev CAN devices
  • Review kernel logs for memory pressure warnings or OOM killer activity
  • Use kernel memory debugging tools (KASAN, kmemleak) to detect leaked URB objects

Monitoring Recommendations

  • Implement continuous memory monitoring on systems with USB CAN interfaces
  • Set up alerting thresholds for abnormal memory growth patterns
  • Deploy SentinelOne Singularity platform for kernel-level visibility and anomaly detection
  • Periodically audit systems running the affected driver for memory usage trends

How to Mitigate CVE-2026-23108

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the URB anchoring fix
  • Restart systems after applying kernel updates to ensure the fix takes effect
  • Monitor affected systems for memory usage until patches can be applied
  • Consider temporarily disabling USB-8dev CAN interfaces on critical systems if patches are not immediately available

Patch Information

The fix involves properly anchoring URBs in the usb_8dev_read_bulk_callback() function to the priv->rx_submitted anchor. This ensures that all URBs are tracked and properly released when usb_kill_anchored_urbs() is called during device close.

Multiple kernel patches have been released to address this vulnerability:

  • Kernel Git Commit 07e9373739c6
  • Kernel Git Commit 59ff56992bba
  • Kernel Git Commit ea4a98e92416
  • Kernel Git Commit f7a980b3b8f8

Workarounds

  • Periodically restart systems using USB-8dev CAN interfaces to reclaim leaked memory
  • Implement memory monitoring scripts to alert when memory usage exceeds defined thresholds
  • Consider using alternative CAN interfaces if the USB-8dev driver cannot be updated
  • Limit the operational duration of affected systems until patching is complete
bash
# Check current kernel version and USB-8dev driver status
uname -r
lsmod | grep usb_8dev

# Monitor memory usage related to USB subsystem
cat /proc/slabinfo | grep urb

# Restart USB-8dev interface to temporarily free leaked URBs
modprobe -r usb_8dev
modprobe usb_8dev

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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