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

CVE-2026-31738: Linux Kernel VXLAN Option Validation Flaw

CVE-2026-31738 is an option validation flaw in the Linux Kernel VXLAN module that allows malformed ND options to cause parser errors. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 7, 2026

CVE-2026-31738 Overview

CVE-2026-31738 is a Linux kernel vulnerability in the VXLAN (Virtual Extensible LAN) driver. The flaw resides in the vxlan_na_create() function, which processes Neighbor Discovery (ND) options based on lengths supplied within the option itself. A malformed option can cause the parser to advance beyond the computed option span or read a source link-layer address (LLADDR) option payload that is too short to contain a valid Ethernet address.

The vulnerability affects Linux kernel builds that include VXLAN support and can be triggered by a local attacker with low privileges. Exploitation impacts system availability through kernel-side memory access errors.

Critical Impact

A local attacker with low privileges can trigger out-of-bounds reads in the Linux kernel VXLAN driver, leading to denial of service through kernel instability.

Affected Products

  • Linux Kernel (multiple stable branches as referenced by upstream commits)
  • Linux Kernel 3.14 release and 3.14-rc8
  • Linux Kernel 7.0 release candidates rc1 through rc6

Discovery Timeline

  • 2026-05-01 - CVE-2026-31738 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-31738

Vulnerability Analysis

The defect lies in vxlan_na_create(), a function that constructs Neighbor Advertisement (NA) responses based on incoming Neighbor Solicitation (NS) packets in IPv6 environments tunneled over VXLAN. The function iterates through ND options using the length field embedded in each option header. This length is attacker-influenced and was not previously validated against the remaining option area boundary.

When a malformed ND option declares a length larger than the actual remaining buffer, the parser advances past the legitimate option span and reads adjacent kernel memory. Additionally, when the source LLADDR option is present but truncated, the function reads an Ethernet address from a payload smaller than six bytes. Both behaviors result in out-of-bounds reads within kernel space.

Root Cause

The root cause is missing input validation on protocol-supplied length fields, classified under [CWE-noinfo] by NVD. The original loop trusted the option-provided length and copied or dereferenced data without confirming sufficient remaining bytes in the NS option area. The patch adds explicit bounds checks before each advance and gates LLADDR reads on a minimum option size matching ETH_ALEN.

Attack Vector

Exploitation requires local access with low privileges to send crafted IPv6 Neighbor Solicitation traffic through a VXLAN interface. An attacker with the ability to inject packets onto a VXLAN-attached network namespace can construct a malformed NS message containing ND options with falsified length fields. When the kernel processes this packet through vxlan_na_create(), the resulting out-of-bounds read can panic the kernel or destabilize the host, producing high availability impact with no confidentiality or integrity loss per the published CVSS vector.

No public proof-of-concept exploit code is currently available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog.

Detection Methods for CVE-2026-31738

Indicators of Compromise

  • Unexpected kernel oops or panic entries in dmesg or /var/log/kern.log referencing vxlan_na_create or the vxlan module.
  • Sudden network namespace or VXLAN interface failures coinciding with malformed IPv6 NS traffic on tunneled segments.
  • KASAN (Kernel Address Sanitizer) reports of out-of-bounds reads in the VXLAN code path on instrumented kernels.

Detection Strategies

  • Monitor kernel logs for crash signatures involving the VXLAN driver and IPv6 neighbor discovery functions.
  • Inspect IPv6 NS packets traversing VXLAN tunnels for option length fields exceeding the remaining packet payload.
  • Correlate host availability events with local user activity capable of crafting raw packets, such as processes with CAP_NET_RAW.

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) on hosts running VXLAN overlays to capture forensic data on kernel faults.
  • Track running kernel versions across the fleet against the patched commits published on git.kernel.org.
  • Audit which hosts run VXLAN interfaces and prioritize those for patch deployment and traffic monitoring.

How to Mitigate CVE-2026-31738

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the vendor advisory commits as soon as your distribution publishes updated packages.
  • Restrict the CAP_NET_RAW and CAP_NET_ADMIN capabilities to trusted users only, reducing the population able to inject crafted NS packets.
  • Inventory hosts running VXLAN tunnels, including container and Kubernetes nodes that depend on overlay networking.

Patch Information

The Linux kernel maintainers resolved this issue across multiple stable branches. The fix validates ND option lengths against the remaining NS option area before each advance and only reads the source LLADDR when the option is large enough to hold an Ethernet address. Reference commits include 901c1dd3bab2, e476745917a1, and eddfce70a6f3, among others published on git.kernel.org.

Workarounds

  • Disable VXLAN interfaces on hosts that do not require overlay networking until the kernel is patched.
  • Apply network policies that drop unexpected IPv6 Neighbor Solicitation traffic on VXLAN-attached segments.
  • Restrict local user access on multi-tenant systems and remove unnecessary network capabilities from unprivileged accounts.
bash
# Identify running kernel and VXLAN interfaces for patch planning
uname -r
ip -d link show type vxlan

# Temporarily remove a VXLAN interface if patching is delayed
sudo ip link set dev vxlan0 down
sudo ip link delete vxlan0

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • Related CVEs
  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability

  • CVE-2026-31746: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31752: Linux Kernel ND Option Vulnerability

  • CVE-2026-31737: Linux Kernel Memory Leak 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