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

CVE-2026-31685: Linux Kernel Netfilter MAC Vulnerability

CVE-2026-31685 is a netfilter flaw in the Linux kernel's ip6t_eui64 module that improperly validates MAC headers, potentially allowing invalid header access. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-31685 Overview

A critical vulnerability has been identified in the Linux kernel's netfilter subsystem, specifically in the ip6t_eui64 module. The eui64_mt6() function, responsible for deriving a modified EUI-64 identifier from the Ethernet source address and comparing it with the low 64 bits of the IPv6 source address, contains a flaw in its MAC header validation logic. The existing guard only rejects invalid MAC headers when par->fragoff != 0, allowing packets with par->fragoff == 0 to reach eth_hdr(skb) even when the MAC header is not valid. This can lead to undefined behavior and potential security impacts when processing malformed network packets.

Critical Impact

Remote attackers can exploit this vulnerability by sending specially crafted IPv6 packets with invalid MAC headers, potentially causing memory access violations, information disclosure, or system instability in affected Linux kernel systems.

Affected Products

  • Linux kernel with netfilter ip6t_eui64 module enabled
  • Systems using IPv6 with EUI-64 address matching rules
  • Network appliances and servers running vulnerable kernel versions

Discovery Timeline

  • 2026-04-25 - CVE CVE-2026-31685 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-31685

Vulnerability Analysis

This vulnerability exists in the eui64_mt6() function within the ip6t_eui64 netfilter module. The function's purpose is to match IPv6 packets where the source address contains an EUI-64 identifier derived from the Ethernet source MAC address. However, the validation logic that ensures a valid MAC header exists before accessing it is incomplete.

The core issue lies in the conditional check that was intended to prevent access to invalid MAC headers. The original code only validated the MAC header when processing fragmented packets (par->fragoff != 0). For non-fragmented packets where par->fragoff == 0, the function proceeds to call eth_hdr(skb) without first verifying that the MAC header is valid. This can result in the function reading from an invalid memory location when the packet arrives without a proper Ethernet header, such as through certain tunnel interfaces or when the MAC header has been stripped.

The vulnerability is network-accessible, requires no authentication, and has no user interaction requirements, making it particularly dangerous in exposed network environments.

Root Cause

The root cause is an insufficient boundary condition check in the eui64_mt6() function. The original implementation incorrectly assumed that MAC header validation was only necessary for fragmented packets. The fix removes the par->fragoff != 0 condition, ensuring that all packets—regardless of their fragmentation status—are validated for a proper MAC header before the function attempts to access it via eth_hdr(skb).

Attack Vector

An attacker can exploit this vulnerability remotely over the network by sending specially crafted IPv6 packets to a system with the ip6t_eui64 netfilter rule active. The attack does not require any authentication or user interaction.

The attack scenario involves:

  1. Identifying a target system running a vulnerable Linux kernel with netfilter rules using the EUI-64 matching module
  2. Crafting IPv6 packets with par->fragoff == 0 (non-fragmented) but with an invalid or missing MAC header
  3. Sending these packets to the target, causing the kernel to access invalid memory when processing the packet through the EUI-64 matching function

The vulnerability can be triggered through packets arriving on interfaces where the MAC header may not be present or valid, such as certain tunnel configurations or when packets are injected through mechanisms that bypass normal Ethernet framing.

Detection Methods for CVE-2026-31685

Indicators of Compromise

  • Kernel panic or oops messages referencing eui64_mt6 or ip6t_eui64 in system logs
  • Unexpected system crashes or reboots on systems processing IPv6 traffic
  • Unusual IPv6 traffic patterns targeting systems with EUI-64 netfilter rules
  • Memory corruption indicators in kernel logs related to netfilter processing

Detection Strategies

  • Monitor kernel logs for panics or warnings related to the ip6t_eui64 module using dmesg or syslog analysis
  • Deploy network intrusion detection rules to identify malformed IPv6 packets with suspicious header configurations
  • Implement kernel crash dump analysis to identify exploitation attempts
  • Use kernel tracing tools (ftrace, eBPF) to monitor eui64_mt6() function calls and their return values

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture evidence of exploitation attempts
  • Configure centralized logging for all kernel messages with severity level 4 (warning) or higher
  • Implement network flow analysis to detect anomalous IPv6 traffic patterns
  • Set up automated alerts for any kernel oops or panic events on critical systems

How to Mitigate CVE-2026-31685

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • If patching is not immediately possible, consider temporarily disabling ip6tables rules using the EUI-64 match module
  • Audit existing netfilter configurations to identify systems using ip6t_eui64 matching
  • Implement network-level filtering to limit IPv6 traffic to trusted sources on critical systems

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix removes the par->fragoff != 0 condition, ensuring that packets with invalid MAC headers are rejected before accessing eth_hdr(skb) regardless of fragmentation status.

Patches are available through the following kernel git commits:

  • Kernel Git Commit 288138418bef
  • Kernel Git Commit 309ae3e9a51a
  • Kernel Git Commit 807d6ee15804
  • Kernel Git Commit 9eda5478746e
  • Kernel Git Commit fdce0b3590f7

Apply the appropriate patch for your kernel version from the stable kernel releases.

Workarounds

  • Remove or disable ip6tables rules that use the -m eui64 match until patches can be applied
  • Use alternative IPv6 filtering methods that do not rely on EUI-64 address matching
  • Implement network segmentation to reduce exposure of vulnerable systems to untrusted IPv6 traffic
  • Deploy compensating controls at the network perimeter to filter potentially malicious IPv6 packets
bash
# Check if EUI-64 rules are in use
ip6tables -L -v | grep eui64

# Temporarily remove EUI-64 rules (example)
ip6tables -D INPUT -m eui64 -j ACCEPT

# Verify kernel version
uname -r

# Check for available kernel updates
apt list --upgradable 2>/dev/null | grep linux-image || yum check-update kernel

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

  • SeverityCRITICAL

  • CVSS Score9.4

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel Git Commit Reference

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference
  • 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-31738: Linux Kernel VXLAN Option Validation 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