The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-23381

CVE-2026-23381: Linux Kernel Privilege Escalation Flaw

CVE-2026-23381 is a privilege escalation vulnerability in the Linux kernel that causes NULL pointer dereference when IPv6 is disabled. This article covers the technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-23381 Overview

A NULL pointer dereference vulnerability exists in the Linux kernel's network bridge module when IPv6 is disabled. When the kernel is booted with the ipv6.disable=1 parameter, the nd_tbl (Neighbor Discovery table) is never initialized because inet6_init() exits before ndisc_init() is called. If neighbor suppression (neigh_suppress) is enabled and an ICMPv6 Neighbor Discovery packet reaches the bridge, the br_do_suppress_nd() function will dereference ipv6_stub->nd_tbl which is NULL, passing it to neigh_lookup(). This results in a kernel NULL pointer dereference, causing a system crash.

Critical Impact

Systems running Linux kernel with IPv6 disabled and bridge neighbor suppression enabled are vulnerable to kernel panic when processing ICMPv6 Neighbor Discovery packets, leading to denial of service.

Affected Products

  • Linux Kernel (multiple stable versions)
  • Linux systems with network bridge module loaded
  • Configurations using ipv6.disable=1 boot parameter with neigh_suppress enabled

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23381 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23381

Vulnerability Analysis

This vulnerability is classified as a Null Pointer Dereference that affects the Linux kernel's bridge networking subsystem. The issue stems from an improper initialization check when IPv6 functionality is disabled at boot time.

The vulnerability occurs in the network packet processing path, specifically within the bridge module's neighbor discovery suppression logic. When the kernel boots with IPv6 disabled (ipv6.disable=1), the initialization sequence is incomplete—inet6_init() returns early, preventing ndisc_init() from being called. As a result, the nd_tbl structure remains uninitialized (NULL).

During runtime, if bridge neighbor suppression is active and the system receives an ICMPv6 Neighbor Discovery packet, the br_do_suppress_nd() function attempts to perform a neighbor table lookup via neigh_lookup(). Since the code path uses IS_ENABLED(IPV6) (a compile-time check) rather than ipv6_mod_enabled() (a runtime check), it does not account for IPv6 being disabled at boot. This leads to dereferencing the NULL ipv6_stub->nd_tbl pointer at address 0x0000000000000268, triggering a kernel panic.

Root Cause

The root cause is the use of IS_ENABLED(IPV6) macro instead of ipv6_mod_enabled() function in the caller code paths. IS_ENABLED() is a compile-time check that evaluates whether IPv6 support was compiled into the kernel, but it cannot detect runtime disabling of IPv6 via boot parameters. The fix replaces this with ipv6_mod_enabled(), which properly checks whether IPv6 is actually available at runtime, effectively disabling NS/NA suppression when IPv6 is disabled.

Attack Vector

The attack vector involves sending ICMPv6 Neighbor Discovery packets to a target system running an affected Linux kernel configuration. The preconditions for exploitation are:

  1. The target system must be running a vulnerable Linux kernel version
  2. The kernel must be booted with ipv6.disable=1 parameter
  3. The bridge module must be loaded with neigh_suppress feature enabled
  4. An attacker must be able to send ICMPv6 Neighbor Discovery packets that reach the bridge interface

When these conditions are met, the kernel will crash upon processing the malicious packet, resulting in a denial of service. The crash occurs in the IRQ context during network packet processing, as shown by the kernel call trace originating from neigh_lookup() through br_do_suppress_nd() in the bridge module.

Detection Methods for CVE-2026-23381

Indicators of Compromise

  • Kernel panic logs containing BUG: kernel NULL pointer dereference, address: 0000000000000268
  • Crash dumps showing RIP: 0010:neigh_lookup+0x16/0xe0 in the call trace
  • System crashes occurring during network traffic processing with bridge interfaces
  • Oops messages referencing br_do_suppress_nd or br_handle_frame_finish in the bridge module

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors associated with the bridge module
  • Check system boot parameters for ipv6.disable=1 combined with bridge configurations using neigh_suppress
  • Review dmesg output for crash signatures matching the neigh_lookup function offset
  • Audit network configurations for bridge interfaces with neighbor suppression enabled

Monitoring Recommendations

  • Implement kernel crash dump collection and analysis for rapid incident response
  • Configure alerts on kernel panic events, particularly those involving network subsystems
  • Monitor for unexpected system reboots that may indicate exploitation attempts
  • Deploy network monitoring to detect unusual ICMPv6 Neighbor Discovery traffic patterns

How to Mitigate CVE-2026-23381

Immediate Actions Required

  • Apply the official kernel patches from the stable kernel branches
  • As a temporary workaround, disable neigh_suppress on bridge interfaces if IPv6 is disabled
  • Consider removing the ipv6.disable=1 boot parameter if IPv6 can be safely enabled
  • Review and audit all bridge configurations in production environments

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches to address this vulnerability. The fix involves replacing the compile-time IS_ENABLED(IPV6) check with the runtime ipv6_mod_enabled() function, which properly handles the case when IPv6 is disabled via boot parameters. This effectively disables NS/NA suppression when IPv6 is not available, preventing the NULL pointer dereference.

Patches are available at the following commits:

  • Kernel Git Commit 20ef5c2
  • Kernel Git Commit 33dec6f
  • Kernel Git Commit 7a894eb
  • Kernel Git Commit a12cdaa
  • Kernel Git Commit aa73deb
  • Kernel Git Commit e5e8906

Workarounds

  • Disable neighbor suppression on bridge interfaces using bridge link set dev <interface> neigh_suppress off
  • Remove the ipv6.disable=1 boot parameter and manage IPv6 through firewall rules instead
  • Implement network filtering to drop ICMPv6 Neighbor Discovery packets at the perimeter if neighbor suppression is required
  • Consider network segmentation to limit exposure of vulnerable bridge configurations
bash
# Disable neighbor suppression on bridge interface as temporary workaround
bridge link set dev br0 neigh_suppress off

# Verify the setting has been applied
bridge link show dev br0 | grep neigh_suppress

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 33dec6f

  • Kernel Git Commit 7a894eb

  • Kernel Git Commit a12cdaa

  • Kernel Git Commit aa73deb

  • Kernel Git Commit e5e8906
  • Related CVEs
  • CVE-2026-31411: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23438: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23439: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23437: Linux Kernel Privilege Escalation Flaw
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