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

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

CVE-2026-23010 is a use-after-free flaw in the Linux kernel's IPv6 address management that can lead to memory corruption and system instability. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2026-23010 Overview

CVE-2026-23010 is a use-after-free vulnerability in the Linux kernel's IPv6 address configuration subsystem. The vulnerability exists in the inet6_addr_del() function within net/ipv6/addrconf.c, where a race condition allows access to freed memory when deleting IPv6 addresses. This flaw was discovered by the syzbot automated fuzzing system and affects systems running vulnerable kernel versions with IPv6 enabled.

The vulnerability occurs because a previous commit accidentally moved the ipv6_del_addr() call for mngtmpaddr addresses before reading the ifp->flags field for temporary addresses. This ordering error causes the code to access the inet6_ifaddr structure after it has already been freed, triggering a classic use-after-free condition.

Critical Impact

Local attackers with network configuration privileges could exploit this use-after-free vulnerability to potentially execute arbitrary code in kernel context, crash the system causing denial of service, or leak sensitive kernel memory contents.

Affected Products

  • Linux kernel (versions prior to the patch commits)
  • Systems with IPv6 networking enabled
  • Network equipment and servers running vulnerable Linux kernel versions

Discovery Timeline

  • 2026-01-25 - CVE-2026-23010 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-23010

Vulnerability Analysis

This use-after-free vulnerability occurs in the IPv6 address management code path when handling the deletion of managed temporary addresses (mngtmpaddr). The inet6_addr_del() function is responsible for removing IPv6 addresses from network interfaces through the socket ioctl interface.

The vulnerability manifests when processing ioctl operations (specifically SIOCDIFADDR with ioctl number 0x8936) through the inet6_ioctl() handler. A local process with appropriate permissions can trigger address deletion operations that expose the race condition.

The KASAN (Kernel Address Sanitizer) report indicates a read operation of 4 bytes from freed memory at address ffff88807b89c86c, specifically at line 3117 of addrconf.c. The freed memory was originally allocated by ipv6_add_addr() for an inet6_ifaddr structure and later freed via the RCU (Read-Copy-Update) mechanism through kvfree_rcu_bulk().

Root Cause

The root cause is an incorrect ordering of operations in the inet6_addr_del() function. A previous kernel commit inadvertently moved the ipv6_del_addr() call—which frees the inet6_ifaddr structure—before the code that reads ifp->flags to check for temporary addresses.

This creates a temporal violation where:

  1. ipv6_del_addr() is called, which initiates freeing of the inet6_ifaddr structure
  2. The code subsequently attempts to read ifp->flags from the now-freed structure
  3. The read operation accesses deallocated memory, causing undefined behavior

The fix involves reordering these operations so that all reads from the inet6_ifaddr structure complete before ipv6_del_addr() is invoked.

Attack Vector

The attack vector requires local access to the system with sufficient privileges to perform network interface configuration operations. An attacker would need to:

  1. Obtain local access to a system running a vulnerable kernel version
  2. Have permissions to execute network ioctl operations (typically root or CAP_NET_ADMIN capability)
  3. Trigger IPv6 address deletion operations that exercise the vulnerable code path
  4. Time the operations to exploit the use-after-free condition

The vulnerability is exploitable through the standard socket ioctl interface, making it accessible to processes with network administration capabilities. The syzbot fuzzer was able to trigger this consistently, indicating the race window may be relatively wide.

Detection Methods for CVE-2026-23010

Indicators of Compromise

  • KASAN (Kernel Address Sanitizer) reports indicating slab-use-after-free in inet6_addr_del or related functions
  • Kernel panic or oops messages referencing addrconf.c around line 3117
  • Unexpected system crashes during IPv6 address configuration operations
  • Anomalous behavior when adding or removing IPv6 addresses from network interfaces

Detection Strategies

  • Enable KASAN in kernel builds to detect use-after-free conditions during testing and development
  • Monitor kernel log messages (dmesg) for memory corruption reports related to IPv6 subsystem
  • Deploy runtime memory debugging tools to identify exploitation attempts
  • Implement system call auditing for ioctl operations on AF_INET6 sockets

Monitoring Recommendations

  • Configure centralized logging for kernel messages across all Linux systems
  • Set up alerts for KASAN or KFENCE memory error reports in production environments
  • Monitor for unusual patterns of IPv6 address configuration changes
  • Implement anomaly detection for network interface ioctl activity

How to Mitigate CVE-2026-23010

Immediate Actions Required

  • Update the Linux kernel to a patched version containing one of the fix commits
  • Review systems for any signs of exploitation attempts in kernel logs
  • Restrict access to network administration capabilities (CAP_NET_ADMIN) to trusted users only
  • Consider temporarily disabling IPv6 on critical systems if patching is not immediately possible

Patch Information

The Linux kernel development team has released fixes for this vulnerability through multiple stable kernel branches. The following commits address the use-after-free issue by reordering the ipv6_del_addr() call after all necessary reads from the inet6_ifaddr structure:

  • Kernel Git Commit 2684610
  • Kernel Git Commit 8b6dcb5
  • Kernel Git Commit ddf96c3

System administrators should apply kernel updates from their distribution vendor or compile a patched kernel from the stable kernel sources.

Workarounds

  • Restrict CAP_NET_ADMIN capability using Linux capabilities or container security policies
  • Disable IPv6 at boot time by adding ipv6.disable=1 to kernel command line parameters
  • Use SELinux or AppArmor policies to limit which processes can perform network configuration
  • Implement network namespace isolation to contain potential exploitation attempts
bash
# Temporary workaround: Disable IPv6 system-wide
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
echo 1 > /proc/sys/net/ipv6/conf/default/disable_ipv6

# Persistent workaround: Add to /etc/sysctl.conf
# net.ipv6.conf.all.disable_ipv6 = 1
# net.ipv6.conf.default.disable_ipv6 = 1

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 8b6dcb5

  • Kernel Git Commit ddf96c3
  • Related CVEs
  • CVE-2026-23427: Linux Kernel Use-After-Free Vulnerability

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

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

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