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

CVE-2026-46208: Linux Kernel Race Condition Vulnerability

CVE-2026-46208 is a race condition flaw in the Linux kernel's batman-adv module affecting TP meter session handling during mesh teardown. This article covers the technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46208 Overview

CVE-2026-46208 is a Linux kernel vulnerability in the batman-adv (Better Approach To Mobile Ad-hoc Networking) module. The flaw affects the throughput meter (tp_meter) subsystem used to benchmark mesh link performance. TP meter sessions remain linked on bat_priv->tp_list after the netlink request completes. When the mesh interface is removed, batadv_mesh_free() tears down the mesh without first draining these sessions. A running sender thread or a late incoming tp_meter packet can then operate against a mesh instance that is already shutting down, leading to a use-after-free condition during teardown.

Critical Impact

Concurrent tp_meter activity during mesh interface removal can dereference freed mesh state, resulting in kernel memory corruption or denial of service.

Affected Products

  • Linux kernel versions containing the batman-adv module with tp_meter netlink support
  • Stable kernel branches receiving the backported fix referenced in commits 03660dab86f9, 26dfeee8db81, 3d3cf6a7314a, 79bc0eaeef2c, and 8634c1dbd73a
  • Mesh networking deployments using B.A.T.M.A.N. Advanced for ad-hoc routing

Discovery Timeline

  • 2026-05-28 - CVE-2026-46208 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46208

Vulnerability Analysis

The batman-adv module implements a throughput meter that measures end-to-end performance between mesh nodes. Users initiate sessions through netlink, which spawns a sender kernel thread and registers session state on the per-interface bat_priv->tp_list. The netlink call returns once the session is queued, but the worker thread continues to operate asynchronously and packets may arrive from peers at any time.

The vulnerability stems from missing lifecycle synchronization between the tp_meter subsystem and the mesh interface. When batadv_mesh_free() runs to dismantle the interface, it does not stop sessions still attached to tp_list or wait for sender threads to exit. The sender thread and the receive path can therefore continue executing against bat_priv memory while teardown progresses. This race produces a use-after-free [CWE-416] on the freed mesh private structure.

Root Cause

The root cause is incomplete teardown ordering. The session list outlives the netlink request that created it, and batadv_mesh_free() previously assumed no active references remained. Without explicit cancellation, the kernel relies on best-effort timing rather than enforced synchronization between session workers and interface shutdown.

Attack Vector

An attacker with the ability to initiate tp_meter sessions on a mesh interface, or to inject tp_meter packets on the mesh, can trigger the race by starting a session and then removing or replacing the mesh interface. The vulnerability requires local access to issue the netlink command or adjacent mesh access to send late packets. Successful exploitation can produce kernel crashes and, depending on heap state, may corrupt freed memory.

The fix stops all active sessions from batadv_mesh_free() and waits for sender threads to exit before teardown continues, restoring proper lifecycle synchronization. See the kernel commit log for the implementation.

Detection Methods for CVE-2026-46208

Indicators of Compromise

  • Kernel oops or panic messages referencing batadv_tp_meter, batadv_tp_send, or batadv_mesh_free in dmesg or /var/log/kern.log
  • KASAN use-after-free reports implicating bat_priv allocations during interface removal
  • Unexpected reboots or NMI watchdog events on nodes running mesh interfaces with active throughput measurements

Detection Strategies

  • Enable KASAN on test kernels to surface use-after-free conditions in batman-adv during interface lifecycle tests
  • Audit running kernel versions against the fixed commits to identify hosts still exposed
  • Monitor for processes invoking batctl tp or raw netlink calls to the batman-adv family in close proximity to interface teardown events

Monitoring Recommendations

  • Collect kernel ring buffer logs centrally and alert on stack traces containing batadv_ symbols
  • Track ip link and batctl activity on mesh nodes to correlate interface removal with prior tp_meter sessions
  • Validate kernel package versions across fleets using configuration management to confirm patch rollout

How to Mitigate CVE-2026-46208

Immediate Actions Required

  • Update Linux kernels to a stable release that includes the upstream fix from commits 03660dab86f9, 26dfeee8db81, 3d3cf6a7314a, 79bc0eaeef2c, or 8634c1dbd73a
  • Inventory systems loading the batman_adv module and prioritize patching mesh gateway and edge devices
  • Restrict access to netlink interfaces for the batman-adv family to trusted administrative users only

Patch Information

The fix synchronizes tp_meter with the mesh lifetime by stopping all active sessions from batadv_mesh_free() and waiting for sender threads to exit before teardown continues. Patches are available in the mainline kernel and have been backported to stable trees. Refer to the kernel.org stable commit for the authoritative change.

Workarounds

  • Unload the batman_adv module on systems that do not require mesh networking using modprobe -r batman_adv
  • Avoid running batctl tp or other tp_meter netlink operations on interfaces scheduled for removal
  • Blacklist the module on hosts where mesh functionality is not used to remove the attack surface entirely
bash
# Configuration example
# Verify kernel version against patched release
uname -r

# Check whether batman-adv is loaded
lsmod | grep batman_adv

# Disable the module if mesh networking is not required
echo 'blacklist batman_adv' | sudo tee /etc/modprobe.d/disable-batman-adv.conf
sudo modprobe -r batman_adv

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-46223: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46215: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46202: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46194: Linux Kernel Race Condition 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