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-2025-38086

CVE-2025-38086: Linux Kernel Use-After-Free Vulnerability

CVE-2025-38086 is a use-after-free vulnerability in Linux Kernel affecting the ch9200 network driver, causing uninitialized memory access. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-38086 Overview

CVE-2025-38086 is an uninitialized memory access vulnerability in the Linux kernel's ch9200 USB Ethernet driver. The vulnerability exists in the ch9200_mdio_read() function, where a local buffer called "buff" may remain uninitialized when control_read() fails to meet a specific condition. When this occurs, the uninitialized buffer contents are accessed and returned, potentially leading to information disclosure or system instability.

Critical Impact

Local attackers with low privileges can trigger a denial of service condition by exploiting the uninitialized memory access in the ch9200 network driver during MII network interface restart operations.

Affected Products

  • Linux Kernel versions 4.3 and later (multiple stable branches affected)
  • Debian Linux 11.0
  • Systems using CH9200 USB Ethernet adapters

Discovery Timeline

  • June 28, 2025 - CVE-2025-38086 published to NVD
  • December 17, 2025 - Last updated in NVD database

Technical Details for CVE-2025-38086

Vulnerability Analysis

This vulnerability stems from improper error handling in the ch9200 USB Ethernet driver's MDIO read function. When mii_nway_restart() is called to restart the network interface autonegotiation, it invokes ch9200_mdio_read() to read MII register values. Inside ch9200_mdio_read(), a local buffer named "buff" is intended to be populated by control_read(). However, control_read() only initializes this buffer under a specific condition—when the error value equals the expected size.

The problematic code flow occurs because ch9200_mdio_read() ignores the return value from control_read(). When the condition err == size is not satisfied within control_read(), the memcpy() that would populate the buffer is skipped, leaving "buff" containing stack garbage. Despite this failure state, the function proceeds to return the uninitialized buffer contents via buff[0] | buff[1] << 8, exposing stack memory.

This pattern represents a classic case of missing return value validation, which is particularly dangerous in kernel drivers where uninitialized memory access can lead to unpredictable behavior, kernel crashes, or potential information leakage from kernel stack memory.

Root Cause

The root cause is the absence of return value checking for control_read() in ch9200_mdio_read(). The control_read() function conditionally initializes its output buffer only when the USB control transfer succeeds with the expected data size. Without validating this return value, the calling function has no way to know whether the buffer was properly initialized before accessing its contents.

Attack Vector

An attacker with local access and low privileges can potentially trigger this vulnerability by:

  1. Connecting a CH9200-based USB Ethernet adapter to the system
  2. Triggering a network interface restart operation that invokes mii_nway_restart()
  3. Creating conditions where the USB control transfer fails or returns an unexpected size
  4. The uninitialized buffer access occurs, potentially causing a kernel panic or leaking stack information

The attack requires local access as indicated by the local attack vector classification, and the primary impact is availability degradation through denial of service.

Detection Methods for CVE-2025-38086

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing ch9200_mdio_read or related MII functions
  • System crashes occurring during network interface operations on CH9200 USB Ethernet devices
  • Kernel log entries showing uninitialized memory warnings in the ch9200 driver

Detection Strategies

  • Monitor kernel logs for oops, panics, or warnings originating from the drivers/net/usb/ch9200.c driver
  • Use kernel address sanitizer (KASAN) or memory debugging tools to detect uninitialized memory access patterns
  • Implement endpoint detection rules that flag repeated kernel crashes tied to USB network driver activity

Monitoring Recommendations

  • Enable kernel crash dump collection to capture diagnostic information for post-incident analysis
  • Monitor for unusual USB device connection patterns, particularly CH9200 chipset-based adapters
  • Deploy SentinelOne Singularity Platform to detect anomalous kernel behavior and potential exploitation attempts

How to Mitigate CVE-2025-38086

Immediate Actions Required

  • Apply the official kernel patches from the Linux kernel stable branches immediately
  • If patching is not immediately possible, consider disabling or blacklisting the ch9200 kernel module
  • Review systems for CH9200 USB Ethernet adapter usage and prioritize patching those systems

Patch Information

The fix involves checking the return value of control_read() and returning early with an error if the control transfer fails. This prevents the uninitialized buffer from being accessed. Official patches have been committed to multiple kernel stable branches:

  • Kernel Git Commit 119766d
  • Kernel Git Commit 33163c6
  • Kernel Git Commit 4da7fcc
  • Kernel Git Commit 6bd2569
  • Kernel Git Commit 9a350f3
  • Kernel Git Commit cdaa6d1

Debian users should refer to the Debian LTS Announcements for distribution-specific patched packages.

Workarounds

  • Blacklist the ch9200 kernel module if the CH9200 USB Ethernet adapter is not required on the system
  • Use alternative USB Ethernet adapters with different chipsets until patching is completed
  • Restrict physical access to systems to prevent unauthorized USB device connections
bash
# Blacklist the ch9200 module as a temporary workaround
echo "blacklist ch9200" | sudo tee /etc/modprobe.d/blacklist-ch9200.conf
sudo update-initramfs -u
# Verify the module is blacklisted after reboot
lsmod | grep ch9200

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-908
  • Technical References
  • Debian LTS Announcement 2025-10-07

  • Debian LTS Announcement 2025-10-08
  • Vendor Resources
  • Kernel Git Commit 119766d

  • Kernel Git Commit 33163c6

  • Kernel Git Commit 4da7fcc

  • Kernel Git Commit 6bd2569

  • Kernel Git Commit 9a350f3

  • Kernel Git Commit 9ad0452

  • Kernel Git Commit 9da3e44

  • Kernel Git Commit cdaa6d1
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31469: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31457: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31444: Linux Kernel Use-After-Free 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