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-23061

CVE-2026-23061: Linux Kernel kvaser_usb URB Memory Leak

CVE-2026-23061 is a memory leak vulnerability in the Linux kernel's kvaser_usb driver affecting URB handling in USB transfers. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2026-23061 Overview

A memory leak vulnerability has been discovered in the Linux kernel's Kvaser USB CAN driver within the kvaser_usb_read_bulk_callback() function. The vulnerability occurs due to improper handling of USB Request Blocks (URBs) during bulk callback processing, where URBs are unanchored by the USB framework before the completion callback is invoked. This results in memory not being properly released when usb_kill_anchored_urbs() is called during interface removal, leading to a gradual memory leak that could impact system stability over time.

Critical Impact

Systems utilizing Kvaser USB CAN interfaces may experience memory exhaustion over prolonged operation periods, potentially leading to system instability or denial of service conditions.

Affected Products

  • Linux kernel with Kvaser USB CAN driver (kvaser_usb module)
  • Systems using Kvaser USB CAN hardware interfaces
  • Linux kernel versions prior to patches referenced in kernel commits

Discovery Timeline

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

Technical Details for CVE-2026-23061

Vulnerability Analysis

This vulnerability is a Memory Leak affecting the Kvaser USB CAN driver in the Linux kernel. The issue stems from the USB framework's behavior of unanchoring URBs before invoking the completion callback function. When kvaser_usb_set_bittiming() or kvaser_usb_set_data_bittiming() calls kvaser_usb_setup_rx_urbs(), URBs for USB-in transfers are allocated, added to the dev->rx_submitted anchor, and submitted for processing.

During normal operation, when kvaser_usb_read_bulk_callback() processes and resubmits URBs, the USB framework has already unanchored the URB. This means the URB is no longer tracked by the dev->rx_submitted anchor. When kvaser_usb_remove_interfaces() is called to clean up resources, it invokes usb_kill_anchored_urbs(&dev->rx_submitted), but since the URBs have been unanchored, they are not released, resulting in a memory leak.

Root Cause

The root cause is a timing issue between the USB framework's URB lifecycle management and the driver's expectation of URB anchoring state. The USB framework unanchors URBs before calling the completion callback, but the Kvaser USB driver did not re-anchor URBs after processing them in kvaser_usb_read_bulk_callback(). This misalignment in expectations leads to orphaned URBs that cannot be properly freed during driver cleanup.

Attack Vector

While the attack vector is classified as unknown, this vulnerability primarily manifests as a resource exhaustion issue. An attacker with local access to a system with Kvaser USB CAN hardware could potentially trigger the memory leak by repeatedly initializing and using the CAN interface, eventually exhausting system memory. The vulnerability is similar to the issue fixed in commit 7352e1d5932a for the gs_usb driver, suggesting a pattern of URB memory management issues across USB CAN drivers.

The exploitation scenario involves:

  1. A user or process interacting with the Kvaser USB CAN interface
  2. Normal USB bulk transfer operations triggering the callback
  3. URBs becoming unanchored and untracked over time
  4. Memory gradually being leaked with each completed transfer that is not properly re-anchored

Detection Methods for CVE-2026-23061

Indicators of Compromise

  • Gradual increase in kernel memory usage on systems with active Kvaser USB CAN interfaces
  • Memory allocation warnings in kernel logs related to the kvaser_usb driver
  • System slowdown or instability after prolonged CAN bus communication sessions

Detection Strategies

  • Monitor kernel memory usage patterns using tools like slabtop or /proc/meminfo for unexplained growth
  • Use kernel memory debugging tools such as kmemleak to detect unreleased memory allocations
  • Review dmesg output for memory pressure warnings when Kvaser USB CAN devices are in use
  • Implement monitoring for USB subsystem memory allocations via ftrace or eBPF probes

Monitoring Recommendations

  • Set up alerts for kernel memory thresholds on systems using Kvaser USB CAN hardware
  • Periodically audit loaded kernel modules and ensure they are running patched versions
  • Monitor long-running processes that interact with CAN interfaces for abnormal memory consumption
  • Implement automated kernel version tracking to ensure security patches are applied

How to Mitigate CVE-2026-23061

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commits
  • Restart the kvaser_usb driver module after updating to ensure the patched code is loaded
  • Monitor affected systems for memory usage anomalies until patches can be applied
  • Consider temporarily unloading the kvaser_usb module on critical systems if the CAN interface is not required

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix involves properly re-anchoring URBs within the kvaser_usb_read_bulk_callback() function to the dev->rx_submitted anchor, ensuring they can be properly released during cleanup.

The following kernel commits contain the fix:

  • Linux Kernel Commit 248e8e1
  • Linux Kernel Commit 3b1a593e
  • Linux Kernel Commit 7c308f75
  • Linux Kernel Commit 94a7fc42

Workarounds

  • Unload the kvaser_usb module when not actively using Kvaser CAN hardware to prevent memory leak accumulation
  • Implement periodic system reboots as a temporary measure on systems that cannot be immediately patched
  • Use alternative CAN interfaces if available that do not rely on the affected driver
  • Monitor and set memory limits for processes interacting with CAN interfaces to contain potential impact
bash
# Configuration example
# Unload the kvaser_usb module when not in use
sudo modprobe -r kvaser_usb

# Verify module is unloaded
lsmod | grep kvaser

# After patching, reload the module
sudo modprobe kvaser_usb

# Check kernel version contains the fix
uname -r

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 248e8e1

  • Linux Kernel Commit 3b1a593e

  • Linux Kernel Commit 7c308f75

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