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

CVE-2026-23104: Linux Kernel Use-After-Free Vulnerability

CVE-2026-23104 is a use-after-free vulnerability in the Linux kernel's ice driver that causes page faults during devlink reload operations. This post explains its impact, affected versions, and mitigation steps.

Published: February 6, 2026

CVE-2026-23104 Overview

A use-after-free vulnerability has been identified in the Linux kernel's ice network driver related to the devlink reload functionality. The vulnerability occurs due to improper cleanup of HWMON (Hardware Monitoring) instances during driver reload operations, resulting in dangling pointers that can cause kernel page faults when system monitoring tools attempt to access orphaned sysfs attributes.

Critical Impact

System monitoring tools accessing orphaned hwmon sysfs attributes can trigger kernel page faults approximately every 10 minutes, potentially leading to system instability and denial of service conditions on affected Linux systems using Intel ice network drivers.

Affected Products

  • Linux kernel with ice network driver (versions with commit 4da71a77fc3b)
  • Systems using Intel Ethernet devices managed by the ice driver
  • Linux systems utilizing devlink reload functionality with HWMON temperature monitoring

Discovery Timeline

  • February 4, 2026 - CVE-2026-23104 published to NVD
  • February 5, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23104

Vulnerability Analysis

The vulnerability stems from an asymmetric initialization and cleanup pattern introduced when internal temperature sensor reading via HWMON was added to the ice driver. The ice_hwmon_init() function is called from ice_init_feature() during driver initialization, but its counterpart ice_hwmon_exit() was placed in ice_remove() rather than in a corresponding deinitialization function.

This architectural flaw creates a problematic sequence during devlink reload operations. When the driver is loaded, ice_hwmon_init() creates the first HWMON instance. During a devlink reload down operation, the cleanup flow does not call ice_remove(), leaving the first HWMON instance intact. When devlink reload up executes, ice_hwmon_init() is called again from ice_init_feature(), creating a second HWMON instance. Upon driver unload, ice_hwmon_exit() in ice_remove() only cleans up the most recent instance, leaving the original HWMON instance orphaned with a dangling pointer to freed module memory.

Root Cause

The root cause is the placement of ice_hwmon_exit() in ice_remove() rather than in ice_deinit_features(). This creates an initialization/deinitialization asymmetry where ice_hwmon_init() is called from ice_init_feature() but cleanup occurs in a different code path. The lack of proper cleanup symmetry means that devlink reload operations can create multiple HWMON instances, but only the last one gets properly destroyed during driver removal.

Attack Vector

The vulnerability is triggered through the following sequence:

  1. Driver Load: ice_hwmon_init() is called from ice_init_feature(), creating the first HWMON instance with sysfs attributes
  2. Devlink Reload Down: The driver reinitializes but does not call ice_remove(), leaving the first HWMON instance active
  3. Devlink Reload Up: ice_hwmon_init() is called again, creating a second HWMON instance
  4. Driver Unload: ice_hwmon_exit() is called from ice_remove(), cleaning up only the second instance
  5. Post-Unload Access: System monitoring daemons (such as sadc) continue to poll the orphaned sysfs attributes, triggering page faults when accessing freed module memory

The kernel call trace shows the fault occurring in the name_show function when attempting to read device attributes that reference deallocated memory addresses (e.g., ffffffffc0fd4b5d).

Detection Methods for CVE-2026-23104

Indicators of Compromise

  • Kernel page fault errors with addresses in the kernel module memory range (typically starting with ffffffffc0)
  • Call traces showing name_show, dev_attr_show, sprintf, or string functions in the stack
  • Recurring kernel errors approximately every 10 minutes corresponding to system monitoring polling intervals
  • Multiple HWMON instances registered for a single ice network device in /sys/class/hwmon/

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for "unable to handle page fault" errors referencing ice driver memory regions
  • Audit systems that use devlink reload commands on ice network interfaces
  • Check for multiple hwmon entries associated with single ice network devices after reload operations
  • Implement kernel tracing on ice_hwmon_init() and ice_hwmon_exit() functions to detect asymmetric calls

Monitoring Recommendations

  • Configure alerting on kernel panic or page fault messages in centralized logging systems
  • Monitor for unexpected ice driver reload events using auditd or similar system auditing tools
  • Track HWMON device registration and deregistration events on systems with Intel ice network adapters
  • Implement health checks for sysfs attribute accessibility on ice driver HWMON interfaces

How to Mitigate CVE-2026-23104

Immediate Actions Required

  • Apply the kernel patch that moves ice_hwmon_exit() from ice_remove() to ice_deinit_features() for proper cleanup symmetry
  • Avoid using devlink reload operations on systems with vulnerable ice driver versions until patched
  • Restart affected systems after driver unload to clear orphaned HWMON instances
  • Temporarily disable HWMON temperature monitoring for ice devices if devlink reload is required

Patch Information

The fix involves moving the ice_hwmon_exit() call from ice_remove() to ice_deinit_features(), ensuring proper cleanup symmetry with ice_hwmon_init(). This change guarantees that HWMON instances are properly destroyed during devlink reload operations, preventing orphaned sysfs attributes.

Patches are available in the following kernel commits:

  • Kernel Commit 87c1dacca197cc64e06fedeb269e3dd6699bae60
  • Kernel Commit d3f867e7a04678640ebcbfb81893c59f4af48586

Workarounds

  • Avoid using devlink dev reload commands on ice network devices until the kernel is patched
  • If devlink reload is necessary, fully unload and reload the ice module instead of using devlink reload
  • Temporarily disable system monitoring tools that poll HWMON sysfs attributes after devlink reload operations
  • Consider using out-of-band temperature monitoring solutions as an alternative to HWMON until patched
bash
# Workaround: Full module reload instead of devlink reload
# Remove the ice module completely
modprobe -r ice

# Reload the ice module
modprobe ice

# Verify single HWMON instance
ls -la /sys/class/hwmon/ | grep ice

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit Details

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