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

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

CVE-2026-23046 is a use-after-free vulnerability in the Linux kernel's virtio_net driver caused by device mismatch in memory allocation. This post covers technical details, affected versions, impact, and mitigation.

Published: February 6, 2026

CVE-2026-23046 Overview

CVE-2026-23046 is a memory management vulnerability in the Linux kernel's virtio_net driver where a device mismatch occurs between memory allocation and deallocation operations. The vulnerability exists in the RSS (Receive Side Scaling) header allocation mechanism, where the initial allocation uses virtio_device->device but the subsequent deallocation in virtnet_set_queues() incorrectly uses net_device->device, triggering devres (device resource management) warnings and potential memory management issues.

Critical Impact

This device mismatch in the Linux kernel's virtio_net driver can cause kernel warnings and potentially lead to memory management inconsistencies in virtualized network environments, affecting system stability and reliability.

Affected Products

  • Linux Kernel with virtio_net driver
  • Systems using virtio_vdpa and vDPA (vhost Data Path Acceleration)
  • Marvell CN106XX and similar hardware platforms with vDPA support

Discovery Timeline

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

Technical Details for CVE-2026-23046

Vulnerability Analysis

This vulnerability stems from inconsistent device context usage in the Linux kernel's managed device resource (devres) framework within the virtio_net driver. The devres subsystem tracks memory allocations tied to specific device structures, ensuring automatic cleanup when devices are removed. When devm_kzalloc() allocates memory using one device context (virtio_device->device) but devm_kfree() attempts to release it using a different device context (net_device->device), the devres framework cannot locate the allocation in its tracking structures, resulting in the observed warning at drivers/base/devres.c:1095.

The kernel warning indicates the mismatch occurs specifically during the virtnet_set_queues() function execution, called during device probing via the virtnet_probe() path. This affects systems utilizing vDPA (vhost Data Path Acceleration) technology, including configurations with octep_vdpa, virtio_vdpa, and virtio_net modules.

Root Cause

The root cause is the inconsistent use of device pointers between allocation and deallocation paths in the virtio_net driver's RSS header management. The initial rss_hdr allocation is performed using the virtio device's underlying device structure, while the cleanup path in virtnet_set_queues() erroneously references the network device's device structure. Since these are distinct device objects in the kernel's device model, the devres tracking mechanism cannot correlate the free operation with the original allocation.

Attack Vector

This vulnerability is triggered through normal device probing operations when the virtio_net driver initializes on vDPA-enabled systems. The call trace indicates the issue manifests during:

  1. vDPA device registration via _vdpa_register_device()
  2. virtio device probing through virtio_dev_probe()
  3. Network interface initialization in virtnet_probe()
  4. Queue configuration in virtnet_set_queues() where the mismatched devm_kfree() occurs

While this vulnerability does not appear to be remotely exploitable, it can cause system instability and kernel warnings during normal virtualized network operations. The vulnerability is triggered through the netlink interface (netlink_sendmsg) when adding vDPA devices via the vdpa_nl_cmd_dev_add_set_doit() handler.

Detection Methods for CVE-2026-23046

Indicators of Compromise

  • Kernel warning messages containing WARNING: drivers/base/devres.c:1095 at devm_kfree in system logs
  • Stack traces showing virtnet_set_queues and virtnet_probe in call chains
  • Warning messages referencing virtio_net, virtio_vdpa, or octep_vdpa modules
  • Kernel taint flag [W]=WARN appearing in dmesg output

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for devres warnings during vDPA device operations
  • Implement kernel log parsing rules to detect devm_kfree warnings with virtio_net module references
  • Use SentinelOne's Singularity platform to monitor for kernel-level anomalies and warning patterns
  • Create alerts for systems running affected kernel versions with virtio_net and vDPA modules loaded

Monitoring Recommendations

  • Enable enhanced kernel logging for device resource management operations
  • Monitor module loading events for virtio_net, virtio_vdpa, and octep_vdpa combinations
  • Track system stability metrics on virtualized hosts using vDPA networking
  • Implement automated alerting for kernel warning patterns matching the CVE signature

How to Mitigate CVE-2026-23046

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel stable branches
  • Review systems using vDPA networking configurations for potential exposure
  • Monitor affected systems for kernel warnings until patches can be deployed
  • Consider temporarily avoiding vDPA device additions on production systems until patched

Patch Information

The fix ensures consistent use of virtio_device->device for both allocation and deallocation operations in the virtio_net driver. Official patches are available through the Linux kernel stable tree:

  • Kernel Git Commit a5e2d902f64c
  • Kernel Git Commit acb4bc6e1ba3

Apply these patches by updating to a kernel version that includes these commits, or by backporting the changes to your current kernel version.

Workarounds

  • Avoid dynamic vDPA device addition/removal operations until the kernel is patched
  • Use alternative networking configurations that do not rely on virtio_vdpa if possible
  • Implement additional system monitoring to detect and alert on kernel warnings
  • Schedule maintenance windows to apply kernel updates on affected virtualized infrastructure
bash
# Check for loaded affected modules
lsmod | grep -E "(virtio_net|virtio_vdpa|octep_vdpa)"

# Monitor kernel logs for devres warnings
dmesg -w | grep -i "devm_kfree\|devres"

# Check current kernel version
uname -r

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

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31443: Linux Kernel Privilege Escalation Flaw

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

  • CVE-2026-31449: Linux Kernel Buffer Overflow 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