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-2023-26545

CVE-2023-26545: Linux Kernel Use-After-Free Vulnerability

CVE-2023-26545 is a use-after-free flaw in the Linux kernel's MPLS networking code that triggers a double free during device renaming. This article covers the technical details, affected versions, and mitigation strategies.

Published: January 28, 2026

CVE-2023-26545 Overview

CVE-2023-26545 is a double free vulnerability in the Linux kernel's MPLS (Multiprotocol Label Switching) subsystem, specifically within the net/mpls/af_mpls.c file. The vulnerability occurs during the renaming of a network device when an allocation failure happens while registering the sysctl table under a new location. This memory corruption issue can lead to system instability and potential denial of service conditions on affected Linux systems.

Critical Impact

A local attacker with low privileges could exploit this double free condition to cause kernel memory corruption, potentially leading to system crashes and denial of service on affected Linux systems and appliances.

Affected Products

  • Linux Kernel versions before 6.1.13
  • Debian Linux 10.0
  • NetApp H300S/H500S/H700S/H410S/H410C Firmware

Discovery Timeline

  • 2023-02-25 - CVE-2023-26545 published to NVD
  • 2025-06-25 - Last updated in NVD database

Technical Details for CVE-2023-26545

Vulnerability Analysis

This double free vulnerability (CWE-415) exists in the MPLS network subsystem of the Linux kernel. The flaw is triggered during the device rename operation when a memory allocation fails while attempting to register a sysctl table at a new location. When this allocation failure occurs, the error handling path incorrectly frees memory that may have already been freed or will be freed again later, resulting in a classic double free condition.

The vulnerability requires local access to exploit, and while it has high complexity requirements, it can be triggered by a user with low privileges. Successful exploitation results in a denial of service condition through system instability or kernel panic.

Root Cause

The root cause of CVE-2023-26545 lies in improper error handling within the MPLS device management code. When a device is renamed and the system attempts to register a new sysctl table, an allocation failure leaves a stale pointer in the mdev->sysctl structure. This stale pointer is not properly nullified in the error path, leading to a situation where the same memory region can be freed multiple times when subsequent cleanup operations reference this dangling pointer.

Attack Vector

The attack requires local access to the system with the ability to trigger network device rename operations. An attacker would need to create conditions that cause memory allocation failures during the sysctl table registration process. This could potentially be achieved through:

  1. Exhausting system memory resources to force allocation failures
  2. Triggering rapid device rename operations under memory pressure
  3. Exploiting race conditions in the error handling path

The following patch demonstrates the fix applied to address the stale pointer issue:

c
 free:
 	kfree(table);
 out:
+	mdev->sysctl = NULL;
 	return -ENOBUFS;
 }

Source: GitHub Linux Commit fda6c89fe3

The fix properly sets mdev->sysctl to NULL in the error path before returning, preventing the stale pointer from being dereferenced and freed again in subsequent cleanup operations.

Detection Methods for CVE-2023-26545

Indicators of Compromise

  • Unexpected kernel panics or system crashes related to MPLS or network device operations
  • Kernel log messages indicating double free conditions in net/mpls/af_mpls.c
  • Memory corruption errors occurring during network interface rename operations
  • System instability when performing MPLS-related network configuration changes

Detection Strategies

  • Monitor kernel logs for KASAN (Kernel Address Sanitizer) reports indicating double free detection in MPLS subsystem
  • Implement kernel debugging features to detect use-after-free and double free conditions
  • Deploy endpoint detection solutions capable of monitoring kernel-level memory corruption events
  • Use SentinelOne's behavioral AI to detect anomalous system behavior patterns associated with kernel exploitation

Monitoring Recommendations

  • Enable kernel auditing for network namespace and device rename operations
  • Configure KASAN or KMSAN on development and staging systems to catch memory safety violations
  • Monitor for unusual memory allocation failure patterns that could indicate exploitation attempts
  • Track system stability metrics and correlate crashes with network configuration changes

How to Mitigate CVE-2023-26545

Immediate Actions Required

  • Update Linux kernel to version 6.1.13 or later to receive the security fix
  • Apply vendor-specific patches from Debian, NetApp, and other affected vendors
  • Restrict local access to systems where kernel updates cannot be immediately applied
  • Monitor affected systems for signs of exploitation or instability

Patch Information

The vulnerability has been fixed in Linux kernel version 6.1.13 and later. The fix is available through commit fda6c89fe3d9aca073495a664e1d5aea28cd4377 in the upstream Linux kernel repository.

Vendor Resources:

  • GitHub Linux Commit fda6c89fe3
  • Linux 6.1.13 ChangeLog
  • Debian LTS Announcement May 2023
  • NetApp Security Advisory ntap-20230316-0009

Workarounds

  • Limit local access to affected systems to trusted users only
  • Disable MPLS functionality if not required by removing the mpls_router and mpls_iptunnel kernel modules
  • Implement strict resource limits to reduce the likelihood of allocation failures that trigger the vulnerability
  • Deploy additional monitoring to detect abnormal system behavior during network device operations
bash
# Disable MPLS modules if not required
modprobe -r mpls_iptunnel
modprobe -r mpls_router
echo "blacklist mpls_router" >> /etc/modprobe.d/blacklist-mpls.conf
echo "blacklist mpls_iptunnel" >> /etc/modprobe.d/blacklist-mpls.conf

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

  • SeverityMEDIUM

  • CVSS Score4.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-415
  • Technical References
  • Linux 6.1.13 ChangeLog

  • Linux Commit fda6c89fe3

  • Debian LTS Announcement May 2023

  • Debian LTS Announcement May 2023

  • NetApp Security Advisory ntap-20230316-0009
  • Vendor Resources
  • GitHub Linux Commit fda6c89fe3
  • Related CVEs
  • CVE-2026-31533: Linux Kernel Use-After-Free Vulnerability

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

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

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