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

CVE-2025-71094: Linux Kernel ASIX Driver PHY Vulnerability

CVE-2025-71094 is a PHY address validation flaw in the Linux kernel ASIX USB driver that allows malicious devices to trigger warnings by returning invalid addresses. This article covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-71094 Overview

A vulnerability has been identified in the Linux kernel's ASIX USB network driver that fails to properly validate PHY (Physical Layer) addresses received from USB devices. The ASIX driver reads the PHY address from the USB device via asix_read_phy_addr(), but did not validate whether the returned address was within acceptable bounds before use. A malicious or faulty USB device can return an invalid address (>= PHY_MAX_ADDR), which triggers a warning in mdiobus_get_phy() with the message "addr 207 out of range."

Critical Impact

Malicious USB devices can trigger kernel warnings and potentially cause system instability by providing out-of-range PHY addresses to the ASIX network driver.

Affected Products

  • Linux kernel with ASIX USB network driver (net/usb/asix)
  • Systems using ASIX-based USB Ethernet adapters
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71094 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71094

Vulnerability Analysis

This vulnerability represents an input validation issue in the Linux kernel's USB network subsystem. The ASIX driver, which provides support for ASIX Electronics USB-to-Ethernet adapters, retrieves PHY configuration data directly from the connected USB device. The asix_read_phy_addr() function was designed to read the PHY address from the device, but it lacked proper validation to ensure the returned value fell within the valid range defined by PHY_MAX_ADDR.

When an out-of-bounds PHY address is received and subsequently passed to mdiobus_get_phy(), the kernel triggers a warning in drivers/net/phy/mdio_bus.c at line 76. While this appears to be a relatively contained issue, improper handling of device-supplied data in kernel drivers can lead to unexpected behavior or system instability.

Root Cause

The root cause is insufficient input validation in the asix_read_phy_addr() function within the ASIX USB network driver. The function trusted data received from the USB device without verifying that the PHY address was within acceptable bounds (0 to PHY_MAX_ADDR - 1). This allowed a malicious or malfunctioning USB device to supply an arbitrary address value that would be passed to other kernel functions expecting a valid PHY address.

Attack Vector

The attack requires physical access to connect a malicious USB device to the target system. A specially crafted or modified USB Ethernet adapter identifying itself as an ASIX-compatible device could provide an invalid PHY address when queried by the driver. This could be accomplished through:

  • A hardware implant designed to respond with malicious PHY configuration data
  • A modified ASIX USB Ethernet adapter firmware
  • A USB device emulator that presents as an ASIX adapter

The vulnerability is triggered when the Linux kernel attempts to initialize or communicate with the malicious device, at which point the invalid PHY address causes kernel warnings.

Detection Methods for CVE-2025-71094

Indicators of Compromise

  • Kernel warning messages containing "addr [number] out of range" in dmesg logs
  • Warnings originating from drivers/net/phy/mdio_bus.c line 76
  • Unexpected USB Ethernet adapter behavior or initialization failures
  • Repeated kernel warnings when connecting USB network devices

Detection Strategies

  • Monitor kernel logs (dmesg) for PHY address out-of-range warnings
  • Implement USB device allowlisting to control which devices can connect
  • Use USB intrusion detection systems to identify unexpected device behavior
  • Deploy endpoint monitoring solutions that track kernel warning events

Monitoring Recommendations

  • Enable comprehensive kernel logging and forward to a centralized SIEM
  • Configure alerts for USB-related kernel warnings in monitoring systems
  • Monitor for unusual USB device connection patterns
  • Implement SentinelOne Singularity platform for real-time kernel-level threat detection

How to Mitigate CVE-2025-71094

Immediate Actions Required

  • Update the Linux kernel to a version containing the security patches
  • Restrict physical USB port access on sensitive systems
  • Implement USB device allowlisting policies where possible
  • Monitor systems for kernel warnings related to network drivers

Patch Information

The Linux kernel maintainers have released patches to validate the PHY address in asix_read_phy_addr() before use, and removed a now-redundant check in ax88172a.c. Multiple commits addressing this vulnerability are available:

  • Kernel Git Commit 38722e6
  • Kernel Git Commit 98a12c2
  • Kernel Git Commit a1e077a
  • Kernel Git Commit bf8a0f3
  • Kernel Git Commit f5f4f30

Workarounds

  • Disable or blacklist the asix kernel module if ASIX USB Ethernet adapters are not required
  • Physically secure USB ports to prevent unauthorized device connections
  • Use USB port blockers on systems where USB Ethernet is not needed
  • Implement strict USB device policies via udev rules to restrict device attachment
bash
# Disable ASIX USB Ethernet driver if not needed
echo "blacklist asix" >> /etc/modprobe.d/blacklist-asix.conf
update-initramfs -u

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

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

  • Kernel Git Commit 98a12c2

  • Kernel Git Commit a1e077a

  • Kernel Git Commit bf8a0f3

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