Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23293

CVE-2026-23293: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23293 is a buffer overflow flaw in the Linux kernel VXLAN module that causes NULL pointer dereference when IPv6 is disabled. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23293 Overview

CVE-2026-23293 is a NULL pointer dereference vulnerability in the Linux kernel's VXLAN (Virtual Extensible LAN) network driver. The vulnerability occurs when the system is booted with IPv6 disabled via the ipv6.disable=1 kernel parameter. Under this configuration, the neighbor discovery table (nd_tbl) is never initialized because inet6_init() exits before ndisc_init() is called. When an IPv6 packet is subsequently injected into a VXLAN interface, the route_shortcircuit() function is invoked, leading to a NULL pointer dereference in neigh_lookup().

Critical Impact

This vulnerability can cause a kernel panic and system crash when IPv6 packets are processed on VXLAN interfaces while IPv6 is disabled at the kernel level, potentially leading to denial of service conditions.

Affected Products

  • Linux kernel with VXLAN module
  • Systems configured with ipv6.disable=1 boot parameter
  • Linux kernel versions prior to the security patches

Discovery Timeline

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

Technical Details for CVE-2026-23293

Vulnerability Analysis

The vulnerability stems from an uninitialized data structure in the Linux kernel's IPv6 neighbor discovery subsystem. When the kernel boots with IPv6 disabled (ipv6.disable=1), the initialization sequence in inet6_init() terminates early, preventing ndisc_init() from being called. This function is responsible for initializing the nd_tbl structure, which is the neighbor discovery table used for IPv6 address resolution.

The VXLAN driver's route_shortcircuit() function does not validate whether IPv6 is properly initialized before attempting to perform neighbor lookups. When an IPv6 packet (identified by ETH_P_IPV6 protocol) reaches this code path, the driver calls neigh_lookup() with the uninitialized nd_tbl, resulting in a NULL pointer dereference at address 0x0000000000000380.

The crash occurs in the following call chain:

  1. packet_sendmsg() - User-space packet injection
  2. __dev_queue_xmit() - Device queue transmission
  3. dev_hard_start_xmit() - Hardware transmission initiation
  4. vxlan_xmit() - VXLAN transmit handler
  5. neigh_lookup() - NULL dereference occurs here

Root Cause

The root cause is a missing safety check in the VXLAN driver's route_shortcircuit() function. The driver assumes that if it receives an IPv6 packet, the IPv6 subsystem must be properly initialized. However, this assumption is invalid when IPv6 is explicitly disabled at boot time via kernel parameters. The fix adds an early return check in route_shortcircuit() when the protocol is ETH_P_IPV6 and IPv6 is disabled.

Notably, the commonly used ipv6_mod_enabled() helper function cannot be used in this context because VXLAN can be built as a built-in kernel component even when IPv6 is configured as a loadable module.

Attack Vector

An attacker with the ability to inject network packets into a VXLAN interface can trigger this vulnerability. The attack scenario involves:

  1. Target system must be configured with ipv6.disable=1 boot parameter
  2. VXLAN interfaces must be configured and active
  3. Attacker injects an IPv6 packet (raw socket, packet injection, or network-based)
  4. The kernel processes the packet through the VXLAN transmit path
  5. NULL pointer dereference causes kernel panic and system crash

This vulnerability can be exploited locally through raw sockets or potentially remotely if the attacker can deliver IPv6 packets to the VXLAN interface from the network underlay.

Detection Methods for CVE-2026-23293

Indicators of Compromise

  • Kernel panic messages containing BUG: kernel NULL pointer dereference, address: 0000000000000380
  • Stack traces showing neigh_lookup+0x20/0x270 in the RIP register
  • Call traces including vxlan_xmit, dev_hard_start_xmit, and packet_sendmsg
  • System crashes occurring on hosts with VXLAN interfaces and ipv6.disable=1 configuration

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for NULL pointer dereference events in the vxlan module
  • Implement automated crash dump analysis to identify the specific crash signature
  • Deploy kernel tracing (ftrace/eBPF) to monitor neigh_lookup() calls with NULL table parameters
  • Configure crash collection services to capture and analyze kernel panics matching this pattern

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to preserve evidence of exploitation attempts
  • Set up alerts for system reboots following kernel panics on VXLAN-enabled hosts
  • Monitor for unusual IPv6 packet activity on systems configured with IPv6 disabled
  • Implement network monitoring to detect packet injection attempts targeting VXLAN interfaces

How to Mitigate CVE-2026-23293

Immediate Actions Required

  • Apply the kernel security patches from the stable kernel tree immediately
  • If patching is not immediately possible, consider disabling VXLAN interfaces on systems with ipv6.disable=1
  • Review and audit systems that use both VXLAN networking and have IPv6 disabled
  • Restrict access to raw socket capabilities to limit local exploitation potential

Patch Information

Security patches have been released to the Linux kernel stable tree. The fix adds an early check in route_shortcircuit() to safely handle IPv6 packets when IPv6 is disabled at the kernel level.

Available patches:

  • Kernel Patch Commit 168ff39
  • Kernel Patch Commit 5f93e6b
  • Kernel Patch Commit abcd48e
  • Kernel Patch Commit b5190fc
  • Kernel Patch Commit f0373e9
  • Kernel Patch Commit fbbd211

Workarounds

  • Remove the ipv6.disable=1 boot parameter if IPv6 functionality is acceptable in your environment
  • Disable or unload the VXLAN kernel module (rmmod vxlan) on affected systems until patching is complete
  • Implement network-level filtering to drop IPv6 packets before they reach VXLAN interfaces
  • Use network namespaces or container isolation to limit exposure of vulnerable VXLAN configurations
bash
# Check if system is vulnerable (IPv6 disabled with VXLAN loaded)
cat /proc/cmdline | grep -q "ipv6.disable=1" && lsmod | grep -q vxlan && echo "VULNERABLE"

# Temporary workaround: unload VXLAN module if not in use
sudo rmmod vxlan

# Verify kernel version after patching
uname -r

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Commit 168ff39

  • Kernel Patch Commit 5f93e6b

  • Kernel Patch Commit abcd48e

  • Kernel Patch Commit b5190fc

  • Kernel Patch Commit f0373e9

  • Kernel Patch Commit fbbd211
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31512: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31438: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31450: Linux Kernel Buffer Overflow Vulnerability
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