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
    • 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-23459

CVE-2026-23459: Linux Kernel DOS Vulnerability

CVE-2026-23459 is a denial of service vulnerability in the Linux kernel affecting ip_tunnel statistics handling. It can cause data corruption or system freezes on 32-bit systems. This article covers technical details, impact, and mitigation.

Published: April 10, 2026

CVE-2026-23459 Overview

A memory corruption vulnerability has been identified in the Linux kernel's ip_tunnel component, specifically within the iptunnel_xmit_stats() function. The vulnerability stems from an incorrect assumption that tunnels were only using NETDEV_PCPU_STAT_TSTATS, when in fact vxlan/geneve implementations use udp_tunnel[6]_xmit_skb() which call iptunnel_xmit_stats() with NETDEV_PCPU_STAT_DSTATS.

The issue arises because the @syncp offset differs between pcpu_sw_netstats and pcpu_dstats structures. On 32-bit kernels, this mismatch could lead to memory corruptions or system freezes if the syncp sequence was overwritten during tunnel statistics processing.

Critical Impact

32-bit Linux kernel systems utilizing vxlan or geneve tunnels may experience memory corruption or complete system freezes due to improper handling of per-CPU statistics structures.

Affected Products

  • Linux kernel (versions with affected ip_tunnel implementation)
  • Systems using vxlan tunnel configurations
  • Systems using geneve tunnel configurations

Discovery Timeline

  • 2026-04-03 - CVE-2026-23459 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23459

Vulnerability Analysis

The vulnerability exists in the Linux kernel's network tunneling subsystem, specifically in how iptunnel_xmit_stats() handles per-CPU statistics. The function was designed with the assumption that all tunnel implementations would use NETDEV_PCPU_STAT_TSTATS (standard per-CPU statistics). However, the vxlan and geneve tunnel implementations use udp_tunnel[6]_xmit_skb(), which invoke iptunnel_xmit_stats() with NETDEV_PCPU_STAT_DSTATS (device-specific per-CPU statistics).

The critical issue lies in the different memory layouts of pcpu_sw_netstats and pcpu_dstats structures. The @syncp field (used for synchronization in per-CPU statistics) is located at different offsets in these two structures. When iptunnel_xmit_stats() attempts to access @syncp using the wrong offset calculation, it can overwrite unrelated memory locations.

On 32-bit kernels where synchronization primitives are more sensitive to memory layout, this offset mismatch manifests as either memory corruption (if adjacent data structures are overwritten) or system freezes (if the overwritten data affects lock or synchronization state).

Root Cause

The root cause is a missing compatibility check in iptunnel_xmit_stats() for the pcpu_stat_type field. The blamed commits introduced NETDEV_PCPU_STAT_DSTATS support but failed to update iptunnel_xmit_stats() to properly handle both statistics structure types. The function continued to assume a fixed @syncp offset regardless of the actual statistics structure being used.

Additionally, the pcpu_stat_type field was not positioned optimally in the data structure, potentially causing additional cache line misses when iptunnel_xmit_stats() needed to read it to determine the correct offset.

Attack Vector

While this vulnerability is not easily exploitable remotely, it represents a significant stability and integrity risk for systems running affected kernel versions:

The vulnerability manifests when network traffic is processed through vxlan or geneve tunnels on 32-bit Linux kernels. The memory corruption or freeze condition occurs during the statistics update path when tunnel packets are transmitted. An attacker with the ability to generate or influence tunnel traffic could potentially trigger the corruption condition, though exploitation for code execution would be complex due to the nature of per-CPU statistics handling.

The attack surface is primarily local network configurations using overlay networking technologies common in containerized and virtualized environments.

Detection Methods for CVE-2026-23459

Indicators of Compromise

  • Unexpected system freezes on 32-bit Linux systems with active vxlan or geneve tunnels
  • Corrupted network statistics counters showing improbable values for tunnel interfaces
  • Kernel panic messages referencing iptunnel_xmit_stats or per-CPU statistics functions
  • Unexplained lockups during high tunnel throughput periods

Detection Strategies

  • Monitor kernel logs for warnings or errors related to ip_tunnel, vxlan, or geneve modules
  • Implement watchdog monitoring on systems running 32-bit kernels with tunnel configurations
  • Review network statistics counters for anomalous values that could indicate memory corruption
  • Deploy kernel debugging tools to capture backtraces if freezes occur

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information during freezes
  • Monitor system uptime and stability metrics for 32-bit systems with tunnel configurations
  • Set up alerts for sudden network interface statistics anomalies on tunnel interfaces
  • Track kernel module loading events for vxlan and geneve to identify potentially affected systems

How to Mitigate CVE-2026-23459

Immediate Actions Required

  • Apply the kernel patches from the official Git repository commits immediately
  • Consider temporarily disabling vxlan or geneve tunnels on 32-bit systems until patched
  • Migrate critical workloads to 64-bit kernel systems where the impact is less severe
  • Monitor affected systems closely for signs of instability until patches are applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adapts iptunnel_xmit_stats() to properly handle both NETDEV_PCPU_STAT_TSTATS and NETDEV_PCPU_STAT_DSTATS by correctly reading the pcpu_stat_type field and calculating the appropriate @syncp offset for each statistics structure type.

The patch also optimizes memory layout by moving pcpu_stat_type closer to dev->{t,d}stats to avoid potential cache line misses during the statistics update path.

Patches are available at:

  • Kernel Git Commit 0d087d0
  • Kernel Git Commit 8431c60

Workarounds

  • Avoid using vxlan or geneve tunnels on 32-bit Linux kernel systems until patches are applied
  • Migrate tunnel workloads to 64-bit systems where the syncp offset issue has less severe consequences
  • Reduce tunnel traffic throughput to minimize the frequency of statistics updates triggering the vulnerability
  • Consider alternative tunneling technologies (e.g., GRE, IPIP) that may not use the affected code path
bash
# Check if your system is running a 32-bit kernel
uname -m
# If output shows i686 or i386, the system is potentially affected

# Check for loaded tunnel modules
lsmod | grep -E "vxlan|geneve"

# Temporarily unload affected modules if not in use
# WARNING: This will disrupt any active tunnel connections
modprobe -r vxlan geneve

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23453: Linux Kernel ICSSG-PRUETH DoS 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