A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-23449

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

CVE-2026-23449 is a use-after-free vulnerability in the Linux kernel's net/sched TEQL implementation that can cause system crashes. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-23449 Overview

CVE-2026-23449 is a double-free vulnerability in the Linux kernel's TEQL (True Link Equalizer) network scheduler subsystem. The vulnerability exists in the teql_master_xmit function within net/sched/sch_teql.c, where improper synchronization when calling qdisc_reset on devices with lockless Qdisc configurations can lead to race conditions with the datapath.

When a TEQL device has a lockless Qdisc as its root, the qdisc_reset function should be called while holding the seq_lock to prevent concurrent access issues. Without this synchronization, multiple code paths can free the same socket buffer (skb) memory, resulting in a double-free condition that can cause kernel crashes and potentially be exploited for privilege escalation.

Critical Impact

This double-free vulnerability in the Linux kernel network scheduler can cause system crashes and may potentially be leveraged for local privilege escalation on affected systems.

Affected Products

  • Linux kernel with TEQL (sch_teql) network scheduler enabled
  • Linux kernel versions with lockless Qdisc support
  • Systems using traffic equalization features in network configurations

Discovery Timeline

  • April 3, 2026 - CVE-2026-23449 published to NVD
  • April 7, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23449

Vulnerability Analysis

The vulnerability resides in the TEQL network scheduler module, specifically in how qdisc_reset is invoked during queue discipline teardown operations. The TEQL subsystem provides traffic equalization across multiple network interfaces, allowing packet distribution for load balancing purposes.

When a TEQL device is configured with a lockless Qdisc as its root scheduler, a race condition can occur between the reset path and the data transmission path (teql_master_xmit). The crash trace reveals that during teql_destroy, the qdisc_reset function is called which triggers pfifo_fast_reset. This reset operation iterates through queued packets and frees them. However, without proper locking via seq_lock, the datapath may simultaneously access and free the same socket buffer, resulting in a double-free in skb_release_data.

The KASAN (Kernel Address Sanitizer) output demonstrates this clearly, showing a double-free detected at skb_release_data (net/core/skbuff.c:1139) where the same memory address (ffff88810c67ec00) is freed twice—first by task 299 and then again by task 318 (poc_teql_uaf_ke).

Root Cause

The root cause is missing synchronization in the TEQL scheduler's reset path. When qdisc_reset is called during teql_destroy, it does not acquire the seq_lock before iterating through and freeing queued packets. This allows the datapath (running on a different CPU) to concurrently access and free packets from the same queue, leading to a double-free condition.

The fix requires that qdisc_reset operations on TEQL devices with lockless Qdisc configurations be performed while holding the appropriate spinlock to serialize access between the reset and datapath code paths.

Attack Vector

The vulnerability can be triggered locally by manipulating network scheduler configurations. An attacker with the ability to configure network interfaces and queue disciplines could create conditions that trigger the race:

  1. Configure a TEQL device with a lockless Qdisc (such as pfifo_fast) as root
  2. Generate network traffic through the TEQL device
  3. Trigger a Qdisc replacement or destruction operation while traffic is in flight
  4. The race between packet transmission and queue reset causes the double-free

The crash trace shows this can be triggered via tc_get_qdisc operations, suggesting that netlink-based traffic control commands can be used to manipulate the scheduler state and trigger the vulnerability.

Detection Methods for CVE-2026-23449

Indicators of Compromise

  • Kernel crash logs containing "BUG: KASAN: double-free in skb_release_data"
  • System crashes in teql_destroy or teql_master_xmit functions
  • KASAN reports indicating double-free conditions in net/core/skbuff.c
  • Unexpected system reboots when performing traffic control operations on TEQL devices

Detection Strategies

  • Monitor kernel logs for KASAN double-free reports involving skb_release_data or TEQL-related functions
  • Deploy runtime memory corruption detection tools (KASAN, KFENCE) on systems using TEQL schedulers
  • Review traffic control configurations for TEQL devices with lockless Qdisc setups
  • Use kernel tracing to monitor qdisc_reset and teql_destroy function calls

Monitoring Recommendations

  • Enable KASAN in development and testing environments to detect memory corruption early
  • Monitor /var/log/kern.log and dmesg output for double-free or use-after-free reports
  • Implement automated alerting on kernel panic events related to network scheduler subsystems
  • Track tc command executions that modify TEQL device configurations

How to Mitigate CVE-2026-23449

Immediate Actions Required

  • Apply the official kernel patches from the Linux kernel stable branches
  • Disable TEQL network scheduler (sch_teql) if not actively required
  • Restrict access to traffic control (tc) commands to trusted administrators only
  • Consider blacklisting the sch_teql kernel module until patched

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures that qdisc_reset is called while holding the seq_lock when dealing with TEQL devices that have lockless Qdisc configurations.

Multiple patches are available across different kernel stable branches:

  • Kernel Git Commit 21c89a0
  • Kernel Git Commit 4a23344
  • Kernel Git Commit 4e8ebc4
  • Kernel Git Commit 6636046
  • Kernel Git Commit afbc79a
  • Kernel Git Commit e9c66d3

Workarounds

  • Blacklist the sch_teql module by adding blacklist sch_teql to /etc/modprobe.d/blacklist.conf
  • Remove existing TEQL configurations using tc qdisc del dev <interface> root teql0
  • Restrict unprivileged user access to network namespace and traffic control capabilities
  • Use alternative load balancing mechanisms such as bonding or team drivers
bash
# Disable TEQL module loading
echo "blacklist sch_teql" >> /etc/modprobe.d/blacklist-teql.conf
echo "install sch_teql /bin/false" >> /etc/modprobe.d/blacklist-teql.conf

# Unload module if currently loaded
modprobe -r sch_teql

# Remove any existing TEQL configurations
tc qdisc del dev eth0 root teql0 2>/dev/null || true

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.03%

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

  • Kernel Git Commit 4a23344

  • Kernel Git Commit 4e8ebc4

  • Kernel Git Commit 6636046

  • Kernel Git Commit afbc79a

  • Kernel Git Commit e9c66d3
  • Related CVEs
  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-46222: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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