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

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

CVE-2026-23192 is a use-after-free vulnerability in the Linux kernel linkwatch component that can cause memory corruption when handling network device references. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23192 Overview

CVE-2026-23192 is a Use-After-Free vulnerability in the Linux kernel's linkwatch subsystem. The vulnerability occurs in the network device reference counting mechanism, specifically in __linkwatch_run_queue(). When linkwatch_do_dev() calls __dev_put() to release the linkwatch reference, the device refcount may drop to 1, allowing netdev_run_todo() to proceed and free the device via kobject_put() while __linkwatch_run_queue() still attempts to access the device through netdev_unlock_ops().

Critical Impact

This Use-After-Free vulnerability in the Linux kernel's network subsystem can be triggered through network interface manipulation, potentially leading to kernel memory corruption or denial of service conditions.

Affected Products

  • Linux kernel (versions with affected linkwatch implementation)

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23192 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23192

Vulnerability Analysis

This vulnerability represents a classic Use-After-Free condition caused by improper synchronization between reference counting operations and memory deallocation. The root issue lies in the timing between when linkwatch_do_dev() releases its reference via __dev_put() and when __linkwatch_run_queue() attempts to access the device through netdev_unlock_ops().

The race condition manifests in the network device lifecycle management. When the linkwatch reference is released, the device refcount may transition to 1, signaling to netdev_run_todo() that the device is ready for cleanup. Since linkwatch_sync_dev() sees an empty list and returns immediately, netdev_run_todo() can proceed to free the device through kobject_put() before the linkwatch subsystem completes its operations on the device.

A key complication is that netdev_lock_ops() is conditional—it only acquires a lock when netdev_need_ops_lock() returns true. For devices that don't require ops_lock, linkwatch holds no lock, meaning any lock acquisition in netdev_run_todo() would fail to provide proper synchronization.

Root Cause

The vulnerability stems from premature reference release in linkwatch_do_dev(). The function calls __dev_put() to release the linkwatch reference before all device accesses are complete. This violates the principle that reference counting should protect objects for their entire usage duration. The fix relocates __dev_put() from linkwatch_do_dev() to its callers, ensuring the reference is only released after all device accesses are finalized.

Attack Vector

The vulnerability can be triggered through local network interface manipulation. The reproduction steps documented in the kernel commit demonstrate the attack:

  1. Create a TUN/TAP network interface
  2. Bring the interface up
  3. Toggle the carrier state (off then on)
  4. Delete the interface shortly after

This sequence creates a race condition where the linkwatch workqueue is processing the carrier state change while the device deletion proceeds, leading to the Use-After-Free when netdev_unlock_ops() accesses the freed device structure.

The KASAN (Kernel Address Sanitizer) report confirms the vulnerability occurs at netdev_need_ops_lock in include/net/netdev_lock.h:33, triggered by the linkwatch event workqueue attempting to read freed memory at address ffff88804de5c008.

Detection Methods for CVE-2026-23192

Indicators of Compromise

  • KASAN reports indicating use-after-free in __linkwatch_run_queue() or netdev_unlock_ops()
  • Kernel oops or panics originating from net/core/link_watch.c
  • Suspicious rapid network interface creation and deletion activity
  • Memory corruption symptoms following network configuration changes

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) in kernel builds to detect memory access violations
  • Monitor kernel logs for linkwatch-related error messages and stack traces
  • Implement syscall auditing for network device management operations (NETLINK_ROUTE socket activity)
  • Deploy runtime memory sanitizers in development and testing environments

Monitoring Recommendations

  • Configure kernel crash dump collection to capture memory corruption events
  • Monitor for unusual patterns of TUN/TAP device lifecycle operations
  • Implement alerting on kernel oops messages containing linkwatch or netdev references
  • Track workqueue activity for the events_unbound workqueue processing linkwatch events

How to Mitigate CVE-2026-23192

Immediate Actions Required

  • Apply the kernel patches from the stable kernel tree immediately
  • Restrict local user access to network namespace and device management capabilities
  • Monitor systems for signs of exploitation or kernel instability
  • Consider limiting CAP_NET_ADMIN capabilities to trusted users only

Patch Information

The fix has been committed to the stable Linux kernel tree. The patch relocates __dev_put() from linkwatch_do_dev() to its callers, ensuring the device reference is released only after all device accesses are complete. This properly pairs the device reference with de-listing operations and prevents the Use-After-Free condition.

Patches are available at:

  • Kernel Git Commit 2718ae6
  • Kernel Git Commit 83b67cc

Workarounds

  • Restrict access to TUN/TAP device creation using system access controls
  • Limit network namespace capabilities to essential administrative users
  • Implement rate limiting on network interface creation/deletion operations
  • Consider using SELinux or AppArmor policies to restrict network device management
bash
# Restrict TUN/TAP device access
chmod 600 /dev/net/tun
chown root:root /dev/net/tun

# Limit CAP_NET_ADMIN capability assignments
# Review and restrict sudoers entries that grant network administration

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 2718ae6

  • Kernel Git Commit 83b67cc
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-23456: 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