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-2026-23081

CVE-2026-23081: Linux Kernel PHY Driver Refcount Leak

CVE-2026-23081 is a reference count leakage flaw in the Linux kernel's intel-xway PHY driver affecting OF node management. This article covers the technical details, affected kernel versions, security impact, and mitigation.

Published: February 6, 2026

CVE-2026-23081 Overview

A memory leak vulnerability has been identified in the Linux kernel's Intel-Xway PHY driver (net: phy: intel-xway). The issue stems from improper handling of Open Firmware (OF) device tree node reference counts when checking for the existence of a 'leds' child node. When the driver examines whether the 'leds' child node exists, it fails to properly release the reference count using of_put_node(), leading to reference count leakage.

Critical Impact

This vulnerability can cause memory leaks and potential resource exhaustion in Linux kernel systems using the Intel-Xway PHY driver, particularly affecting network infrastructure devices.

Affected Products

  • Linux kernel with Intel-Xway PHY driver (net/phy/intel-xway.c)
  • Systems using Device Tree/Open Firmware with Intel-Xway network PHY hardware
  • Embedded systems and network appliances utilizing Intel-Xway Ethernet PHYs

Discovery Timeline

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

Technical Details for CVE-2026-23081

Vulnerability Analysis

This vulnerability falls under the category of Memory Leak, a subset of memory corruption vulnerabilities. The issue was identified through automated code review, which detected an Open Firmware (OF) node reference count leakage in the Intel-Xway PHY driver.

In the Linux kernel's device tree subsystem, each OF node maintains a reference count to track its usage. When code acquires a reference to a node (such as when checking for child nodes), it must properly release that reference using of_put_node() when finished. Failure to do so results in the reference count being incremented without a corresponding decrement, causing the node to never be freed.

The vulnerability occurs specifically when the driver checks if a 'leds' child node exists within the device tree. The code path that performs this check does not properly maintain the reference count, leading to memory leakage over time.

Root Cause

The root cause is a missing call to of_put_node() in the Intel-Xway PHY driver code path. When the driver uses functions like of_get_child_by_name() or similar OF APIs to check for the 'leds' child node, these functions increment the reference count of the returned node. The driver failed to call of_put_node() to decrement this reference count after the check was complete, resulting in orphaned references that accumulate over time.

Attack Vector

This vulnerability is primarily a reliability and stability issue rather than a direct security exploit vector. The attack potential is limited as it requires:

  1. Physical or administrative access to systems running the affected kernel driver
  2. The ability to trigger the code path that checks for the 'leds' child node
  3. Repeated triggering to cause meaningful resource exhaustion

The memory leak could potentially be exploited as part of a local denial of service attack by repeatedly triggering the vulnerable code path to exhaust kernel memory resources. However, the practical exploitability is low given the specific hardware and configuration requirements.

Detection Methods for CVE-2026-23081

Indicators of Compromise

  • Gradual increase in kernel memory usage on systems with Intel-Xway PHY hardware
  • Slab memory allocation warnings in kernel logs related to OF nodes
  • System instability or slowdowns over extended uptime periods on affected devices

Detection Strategies

  • Monitor kernel memory statistics using /proc/meminfo and /proc/slabinfo for unusual growth patterns
  • Implement kernel memory leak detection tools such as kmemleak to identify unreleased OF node references
  • Review system logs for memory allocation failures or OF-related warnings
  • Use hardware inventory tools to identify systems with Intel-Xway PHY components

Monitoring Recommendations

  • Set up alerting for kernel memory growth anomalies on systems with Intel-Xway PHY hardware
  • Implement regular kernel log analysis for OF subsystem warnings
  • Monitor system uptime correlation with memory consumption patterns
  • Deploy SentinelOne's kernel-level monitoring to detect resource exhaustion conditions

How to Mitigate CVE-2026-23081

Immediate Actions Required

  • Apply the kernel patches from the stable kernel git repositories immediately
  • Schedule system reboots for affected systems to clear accumulated memory leaks
  • Prioritize patching for network infrastructure devices using Intel-Xway PHY hardware
  • Monitor affected systems for memory pressure symptoms until patches can be applied

Patch Information

The vulnerability has been resolved in the Linux kernel stable branches. The fix adds the missing of_put_node() call to properly maintain the reference count when checking for the 'leds' child node.

Patches are available from the kernel git repositories:

  • Kernel Git Commit 1f24dfd556401b75f78e8d9cbd94dd9f31411c3a
  • Kernel Git Commit 79912b256e14054e6ba177d7e7e631485ce23dbe

Workarounds

  • If immediate patching is not possible, schedule regular reboots of affected systems to clear leaked memory
  • Disable the Intel-Xway PHY driver if the hardware is not required (may impact network functionality)
  • Monitor memory usage closely and implement automated restart procedures when memory thresholds are exceeded
  • Consider deploying alternative PHY drivers if compatible hardware alternatives exist
bash
# Check if your system has the Intel-Xway PHY driver loaded
lsmod | grep xway

# Monitor kernel memory for leak symptoms
watch -n 60 'cat /proc/meminfo | grep -E "Slab|SUnreclaim"'

# Check kernel version and apply updates
uname -r
# Update to patched kernel version through your distribution's package manager

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 Log

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