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

CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

CVE-2026-46206 is a denial of service vulnerability in the Linux kernel's batman-adv component that affects tp_meter session handling during teardown. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46206 Overview

CVE-2026-46206 is a Linux kernel vulnerability in the batman-adv (Better Approach To Mobile Ad-hoc Networking, advanced) subsystem. The flaw allows new tp_meter (throughput meter) sender or receiver sessions to start after the mesh_state has transitioned out of BATADV_MESH_ACTIVE. The fix rejects new tp_meter sessions during mesh teardown to prevent use of partially torn-down state. The vulnerability has been resolved upstream in the mainline kernel through multiple stable backports.

Critical Impact

New tp_meter sessions starting during batman-adv mesh teardown can interact with state that is no longer active, creating a race condition between session initiation and subsystem shutdown.

Affected Products

  • Linux kernel batman-adv subsystem (mainline)
  • Linux stable kernel branches receiving the backported fix
  • Distributions shipping affected kernel versions with batman-adv enabled

Discovery Timeline

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

Technical Details for CVE-2026-46206

Vulnerability Analysis

The batman-adv kernel module implements a layer-2 mesh routing protocol. It includes a tp_meter facility used to measure throughput between mesh nodes by establishing sender and receiver sessions. The subsystem tracks operational status through the mesh_state variable, which transitions through states including BATADV_MESH_ACTIVE during normal operation and other states during teardown.

Before the fix, tp_meter did not validate mesh_state when starting new sessions. A new sender or receiver session could be initiated after mesh_state had already left BATADV_MESH_ACTIVE. This creates a window where session setup proceeds against a subsystem already preparing to release resources.

See the kernel commit ff93f86e fix and parallel backports for the resolution details.

Root Cause

The root cause is a missing precondition check in the tp_meter session-start paths. The code did not confirm that mesh_state == BATADV_MESH_ACTIVE before allocating and registering session structures. This is a race condition between mesh teardown and session creation in the net/batman-adv source tree.

Attack Vector

The trigger requires the ability to invoke tp_meter operations on a system running batman-adv while the mesh interface is being torn down. This is a local kernel-side concurrency issue rather than a remote attack vector. The vulnerability description does not document any in-the-wild exploitation, and no public proof-of-concept is referenced.

The vulnerability manifests in the tp_meter session establishment functions within batman-adv. Refer to the upstream commits for the precise code paths and the added state validation.

Detection Methods for CVE-2026-46206

Indicators of Compromise

  • No documented indicators of compromise are published for this issue.
  • Kernel log warnings, oopses, or KASAN reports referencing batman-advtp_meter paths during interface teardown may indicate the race condition.

Detection Strategies

  • Inventory hosts running kernels with batman-adv compiled or loaded, and compare against fixed kernel versions referenced in the linked stable commits.
  • Monitor dmesg and journal output for batman-adv warnings co-occurring with mesh interface shutdown events.
  • Use package management tooling to verify kernel build identifiers against vendor advisories.

Monitoring Recommendations

  • Track loaded kernel modules across the fleet and alert when batman-adv is present on unexpected systems.
  • Forward kernel logs to a centralized logging or SIEM platform to correlate tp_meter activity with mesh state transitions.
  • Review change management records for kernel updates to confirm patched builds are deployed.

How to Mitigate CVE-2026-46206

Immediate Actions Required

  • Apply the latest stable Linux kernel update from your distribution that includes the batman-advtp_meter teardown fix.
  • If patching is not immediately possible and batman-adv is not required, unload the module with modprobe -r batman_adv and blacklist it.
  • Restrict access to interfaces capable of issuing tp_meter commands on affected systems.

Patch Information

The fix is committed across multiple stable branches. See the kernel commit 3243543592425beec83d453793e9d27caa0d8e66, kernel commit ca39545cf07c142b39d474a1439a046bf28def3d, kernel commit e1e2194cc725ec1d41f9412496212f0fa0519c36, kernel commit e4a3c4a4c8f6efd243c3e448c05b7bebcbf7b3b6, and kernel commit ff93f86ecbb50a4709c403fc279a396e308edde5. Rebuild or install distribution kernels that incorporate these commits.

Workarounds

  • Disable or unload the batman-adv module on systems that do not require mesh networking.
  • Avoid issuing tp_meter commands during or near interface teardown until the patched kernel is in place.
  • Restrict CAP_NET_ADMIN privileges that allow configuring batman-adv interfaces to trusted administrative accounts.
bash
# Configuration example
# Unload and blacklist batman-adv where mesh networking is not required
sudo modprobe -r batman_adv
echo "blacklist batman-adv" | sudo tee /etc/modprobe.d/blacklist-batman-adv.conf
sudo update-initramfs -u

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit 32435435 Fix

  • Kernel Commit ca39545c Update

  • Kernel Commit e1e2194c Change

  • Kernel Commit e4a3c4a4 Update

  • Kernel Commit ff93f86e Fix
  • Related CVEs
  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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