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

CVE-2026-45913: Linux Kernel Bridge MDB DoS Vulnerability

CVE-2026-45913 is a denial of service vulnerability in the Linux kernel bridge multicast database that causes incorrect entry counting in VLAN contexts. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-45913 Overview

CVE-2026-45913 is a Linux kernel vulnerability in the bridge multicast (mcast) subsystem. The flaw resides in how the bridge driver tracks mdb_n_entries for VLAN contexts. The kernel conditionally incremented the counter based on multicast options, but always decremented it on entry removal. This mismatch allowed an unpaired decrement, triggering a WARN_ON in br_multicast_port_ngroups_dec_one() at net/bridge/br_multicast.c:718. The issue was discovered by syzbot fuzzing the netlink-based bridge MDB interface.

Critical Impact

A local user with CAP_NET_ADMIN can trigger a kernel warning by sequencing bridge configuration and MDB flush operations, producing log noise and potential denial of service on systems configured with panic_on_warn.

Affected Products

  • Linux kernel bridge driver (net/bridge/br_multicast.c)
  • Distributions shipping affected stable kernel branches prior to the fix commits
  • Systems with vlan_filtering and mcast_snooping enabled on bridge interfaces

Discovery Timeline

  • 2026-05-27 - CVE-2026-45913 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-45913

Vulnerability Analysis

The Linux bridge driver maintains a per-context counter, mdb_n_entries, to enforce limits on multicast database (MDB) entries. The counter is decremented unconditionally when an entry is removed via br_multicast_port_ngroups_dec_one(). The increment path in __br_multicast_enable_port_ctx(), however, was gated on conditions such as netif_running() and active multicast snooping options. Over time, additional conditions accumulated, opening paths where an entry could be added without an increment.

When the entry is later deleted, for example by bridge mdb flush, the decrement runs against a zero counter. This triggers a WARN() at line 718, with the message n == 0. The call chain proceeds through br_mdb_flush_pgs(), br_mdb_del_bulk(), and rtnl_mdb_del() under a netlink message handler.

Root Cause

The root cause is asymmetric accounting between increment and decrement operations on mdb_n_entries for VLAN contexts. The fix removes the conditional increment, initializes the counter on port-VLAN context creation, and keeps it always updated for the lifetime of the VLAN. The MDB limit is enforced only when the context belongs to a port or when port-VLAN multicast snooping is enabled, preserving prior behavior for limit checks.

Attack Vector

The vulnerability is reachable from local privileged context. An attacker with CAP_NET_ADMIN constructs a sequence that creates a bridge with vlan_filtering and mcast_snooping enabled, adds a permanent MDB entry, toggles the bridge state, enables mcast_vlan_snooping, and then flushes the MDB. The unpaired decrement triggers the kernel warning. The vulnerability is described in prose because no public exploit code accompanies the syzbot reproducer.

// Conceptual reproducer sequence (not exploit code)
// ip link add br0 up type bridge vlan_filtering 1 mcast_snooping 1
// ip link add dumdum up master br0 type dummy
// bridge mdb add dev br0 port dumdum grp 239.0.0.1 permanent vid 1
// ip link set dev br0 down
// ip link set dev br0 type bridge mcast_vlan_snooping 1
// bridge mdb flush dev br0 -> triggers WARN at br_multicast.c:718

Detection Methods for CVE-2026-45913

Indicators of Compromise

  • Kernel log entries containing WARNING: net/bridge/br_multicast.c:718 and the message n == 0
  • Stack traces referencing br_multicast_port_ngroups_dec_one, br_multicast_del_pg, and br_mdb_flush_pgs
  • Unexpected bridge MDB flush operations following mcast_vlan_snooping toggles

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for the specific WARNING signature tied to br_multicast.c:718
  • Audit netlink RTM_DELMDB messages from non-administrative processes
  • Correlate bridge configuration changes with subsequent kernel warnings to identify reproduction attempts

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on br_multicast warning signatures
  • Track use of the bridge and ip link utilities by non-root contexts and namespaced processes
  • Review systems configured with panic_on_warn=1, as the warning will escalate to a kernel panic

How to Mitigate CVE-2026-45913

Immediate Actions Required

  • Apply the upstream stable kernel commits referenced in the kernel.org advisories
  • Restrict CAP_NET_ADMIN and unprivileged user namespaces where bridge configuration is not required
  • Disable panic_on_warn on production hosts to avoid availability impact from the warning

Patch Information

The fix removes conditional accounting and always updates mdb_n_entries while a VLAN context exists, enforcing the MDB limit only for port contexts or VLANs with multicast snooping enabled. Stable backports are available in the following commits: Kernel Git Commit 45525fd, Kernel Git Commit 724a405, Kernel Git Commit 8b769e3, Kernel Git Commit d0fdad1, and Kernel Git Commit fae260f.

Workarounds

  • Avoid toggling mcast_vlan_snooping on bridges with existing permanent MDB entries until patched
  • Disable VLAN-aware multicast snooping (mcast_vlan_snooping 0) on affected bridges where feasible
  • Constrain bridge management to trusted administrative accounts and prevent unprivileged user namespaces from creating bridge devices
bash
# Disable VLAN-aware multicast snooping as a temporary workaround
ip link set dev br0 type bridge mcast_vlan_snooping 0

# Prevent unprivileged user namespace creation (Debian/Ubuntu)
sysctl -w kernel.unprivileged_userns_clone=0

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 724a405

  • Kernel Git Commit 8b769e3

  • Kernel Git Commit d0fdad1

  • Kernel Git Commit fae260f
  • Related CVEs
  • CVE-2026-46015: Linux Kernel TCP Listener DOS Vulnerability

  • CVE-2026-45919: Linux Kernel Scheduler DoS Vulnerability

  • CVE-2026-43286: Linux Kernel DOS Vulnerability

  • CVE-2026-43060: Linux Kernel Netfilter 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