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

CVE-2026-23155: Linux Kernel gs_usb Error Handling Flaw

CVE-2026-23155 is an error handling flaw in the Linux kernel gs_usb driver that could cause undefined behavior when dereferencing netdev values. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23155 Overview

A vulnerability has been identified in the Linux kernel's CAN (Controller Area Network) subsystem, specifically within the gs_usb driver. The issue occurs in the gs_usb_receive_bulk_callback() function where an uninitialized pointer can be dereferenced during error handling. Following commit 79a6d1bfe114, when a URB (USB Request Block) resubmit fails, an info message is printed. However, in cases where a short read occurs before netdev has been assigned, the code attempts to dereference an undefined value, potentially leading to system instability or information disclosure.

Critical Impact

Dereferencing uninitialized memory in kernel space can lead to system crashes, kernel panics, or potentially expose sensitive memory contents.

Affected Products

  • Linux kernel with gs_usb CAN driver enabled
  • Systems utilizing Geschwister Schneider USB/CAN devices
  • Embedded systems with CAN bus interfaces over USB

Discovery Timeline

  • February 14, 2026 - CVE-2026-23155 published to NVD
  • February 18, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23155

Vulnerability Analysis

The vulnerability resides in the USB bulk transfer callback handler for the gs_usb CAN driver. When processing incoming USB data, the driver's gs_usb_receive_bulk_callback() function handles the asynchronous completion of bulk transfers. The issue manifests during error conditions, specifically when a short read occurs before the network device pointer (netdev) has been properly initialized.

In the vulnerable code path, when usb_submit_urb() fails during a URB resubmit operation, the error handling code attempts to print an informational message that references the netdev variable. However, if a short read has occurred prior to netdev being assigned a valid value, the variable contains undefined memory contents. Dereferencing this uninitialized pointer can result in reading arbitrary memory locations, potentially causing kernel crashes or leaking sensitive kernel memory.

Root Cause

The root cause is an Uninitialized Memory Use vulnerability in the error handling path of the gs_usb_receive_bulk_callback() function. The netdev variable was not properly initialized to NULL before use, leaving it with an indeterminate value when the code path that assigns it is not executed. This violates safe coding practices where all pointers should be initialized to a known safe value before any potential use.

Attack Vector

The attack vector involves USB device interaction. An attacker with physical access to the system could potentially craft a malicious USB device that triggers the vulnerable code path by:

  1. Presenting itself as a Geschwister Schneider USB/CAN device
  2. Generating malformed USB bulk transfers that cause short reads
  3. Triggering URB resubmission failures through timing manipulation or malformed responses

While physical access is typically required, virtualized environments that pass through USB devices or systems with remote USB capabilities could potentially expand the attack surface. The vulnerability could lead to denial of service through kernel panics or potentially be combined with other vulnerabilities for information disclosure.

Detection Methods for CVE-2026-23155

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing gs_usb_receive_bulk_callback
  • System log entries showing USB bulk transfer errors for CAN devices
  • Repeated connection/disconnection events from USB CAN interfaces

Detection Strategies

  • Monitor kernel logs (dmesg) for error messages containing gs_usb or can driver references
  • Enable kernel memory debugging options such as KASAN (Kernel Address Sanitizer) to detect uninitialized memory access
  • Implement USB device auditing to track newly connected CAN devices

Monitoring Recommendations

  • Configure alerting for kernel oops or panic events in system monitoring tools
  • Review USB device connection logs for suspicious CAN adapter activity
  • Deploy endpoint detection solutions that monitor kernel driver behavior

How to Mitigate CVE-2026-23155

Immediate Actions Required

  • Apply the latest kernel patches from your Linux distribution
  • If patches are not immediately available, consider disabling or unloading the gs_usb module if CAN functionality is not required
  • Restrict physical USB access to trusted personnel and devices

Patch Information

The Linux kernel maintainers have released fixes across multiple stable kernel branches. The following commits address this vulnerability:

  • Kernel Git Commit 494fc02
  • Kernel Git Commit 713ba82
  • Kernel Git Commit 8986cdf
  • Kernel Git Commit 923379f
  • Kernel Git Commit aed58a2

The fix initializes the netdev variable to NULL to prevent dereferencing undefined values and also improves error reporting by including the actual error value from failed URB resubmissions.

Workarounds

  • Unload the gs_usb module using modprobe -r gs_usb if CAN functionality is not needed
  • Blacklist the module by adding blacklist gs_usb to /etc/modprobe.d/blacklist.conf
  • Implement USB device whitelisting through udev rules to prevent unauthorized CAN adapters from being recognized
bash
# Configuration example
# Temporarily disable gs_usb module
sudo modprobe -r gs_usb

# Permanently blacklist the module (if CAN is not required)
echo "blacklist gs_usb" | sudo tee /etc/modprobe.d/blacklist-gs_usb.conf

# Verify the module is not loaded
lsmod | grep gs_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
  • Kernel Git Commit 494fc02

  • Kernel Git Commit 713ba82

  • Kernel Git Commit 8986cdf

  • Kernel Git Commit 923379f

  • Kernel Git Commit aed58a2
  • 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