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
    • 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-23080

CVE-2026-23080: Linux Kernel CAN mcba_usb Memory Leak

CVE-2026-23080 is a URB memory leak vulnerability in the Linux kernel's CAN mcba_usb driver that occurs during USB transfer processing. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 6, 2026

CVE-2026-23080 Overview

A memory leak vulnerability has been identified in the Linux kernel's CAN (Controller Area Network) subsystem, specifically in the mcba_usb driver. The vulnerability exists in the mcba_usb_read_bulk_callback() function where USB Request Block (URB) memory is not properly freed, leading to resource exhaustion over time.

Critical Impact

Prolonged exploitation of this memory leak can lead to system resource exhaustion, potentially causing denial of service conditions on affected Linux systems using the Microchip CAN BUS Analyzer USB driver.

Affected Products

  • Linux kernel with mcba_usb CAN driver enabled
  • Systems using Microchip CAN BUS Analyzer USB devices
  • Linux kernel versions prior to the security patch

Discovery Timeline

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

Technical Details for CVE-2026-23080

Vulnerability Analysis

This vulnerability is a memory leak in the Linux kernel's mcba_usb driver, which handles Microchip CAN BUS Analyzer USB devices. The issue is similar to a previously patched vulnerability in the gs_usb driver (commit 7352e1d5932a).

The root of the problem lies in the URB lifecycle management during USB bulk transfer operations. When mcba_usb_probe() calls mcba_usb_start(), URBs for USB-in transfers are allocated, added to the priv->rx_submitted anchor, and submitted for processing. The complete callback function mcba_usb_read_bulk_callback() is responsible for processing these URBs and resubmitting them for continued data reception.

The critical flaw occurs because the USB framework unanchors URBs before calling the complete callback function. When mcba_usb_close() invokes mcba_urb_unlink(), it relies on usb_kill_anchored_urbs(&priv->rx_submitted) to free the URBs. However, since completed URBs are no longer anchored at this point, they escape the cleanup process and their memory is never released.

Root Cause

The memory leak occurs due to improper URB anchor management in the mcba_usb_read_bulk_callback() function. The USB subsystem unanchors URBs before invoking the completion callback, which means that when usb_kill_anchored_urbs() is called during device close, the completed URBs are no longer in the anchor list and cannot be freed.

The fix involves re-anchoring the URB to the priv->rx_submitted anchor within the mcba_usb_read_bulk_callback() function before resubmitting it. This ensures that all URBs remain tracked and can be properly released when the device is closed.

Attack Vector

The attack vector for this vulnerability is local, requiring either physical access to connect a malicious USB device or the ability to influence USB device operations on the target system.

An attacker could potentially exploit this vulnerability by:

  1. Repeatedly triggering USB bulk transfer completions to accelerate memory consumption
  2. Preventing proper device closure to maximize memory retention
  3. Operating multiple CAN USB devices simultaneously to multiply the leak rate

Over time, this memory leak can exhaust available kernel memory, leading to system instability or denial of service. The vulnerability is particularly concerning in embedded systems or long-running servers where uptime is critical and memory resources may be limited.

Detection Methods for CVE-2026-23080

Indicators of Compromise

  • Gradual increase in kernel memory consumption over time on systems with mcba_usb devices
  • Kernel memory allocation failures or OOM (Out of Memory) killer activations
  • System logs indicating memory pressure when CAN USB devices are in use
  • Unexplained system instability on systems with Microchip CAN BUS Analyzer devices

Detection Strategies

  • Monitor kernel memory usage using tools like /proc/meminfo or slabtop for unusual growth patterns
  • Implement kernel memory leak detection using kmemleak debugging feature
  • Review dmesg output for USB subsystem errors related to mcba_usb
  • Track URB allocation patterns in the CAN subsystem using ftrace or eBPF tracing

Monitoring Recommendations

  • Deploy continuous memory monitoring on systems using CAN USB devices
  • Set up alerts for sustained memory growth in kernel slab allocators
  • Monitor USB device connection/disconnection events for anomalous patterns
  • Implement regular system health checks that include memory consumption baselines

How to Mitigate CVE-2026-23080

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Limit physical access to USB ports on critical systems
  • Consider disabling the mcba_usb driver module if not actively required
  • Implement regular system reboots as a temporary workaround for long-running systems

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures proper URB anchoring in the mcba_usb_read_bulk_callback() function by re-anchoring URBs before resubmission.

Multiple patch commits have been applied to various stable kernel branches:

  • Commit 179f6f0cf5ae489743273b7c1644324c0c477ea9
  • Commit 710a7529fb13c5a470258ff5508ed3c498d54729
  • Commit 94c9f6f7b953f6382fef4bdc48c046b861b8868f
  • Commit d374d715e338dfc3804aaa006fa6e470ffebb264

Review the Linux Kernel Commit Detail for the complete patch and technical implementation details.

Workarounds

  • Unload the mcba_usb kernel module using modprobe -r mcba_usb if CAN functionality is not required
  • Blacklist the mcba_usb module to prevent automatic loading by adding blacklist mcba_usb to /etc/modprobe.d/blacklist.conf
  • Implement scheduled reboots during maintenance windows to clear accumulated memory leaks
  • Use alternative CAN interfaces that don't rely on the vulnerable driver
bash
# Configuration example
# Disable mcba_usb module to prevent memory leak
echo "blacklist mcba_usb" | sudo tee /etc/modprobe.d/mcba_usb-blacklist.conf

# Remove currently loaded module if present
sudo modprobe -r mcba_usb

# Verify module is not loaded
lsmod | grep mcba_usb

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

  • Linux Kernel Commit Detail

  • Linux Kernel Commit Detail

  • Linux Kernel Commit Detail
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

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

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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