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-2025-71098

CVE-2025-71098: Linux Kernel ip6_gre DOS Vulnerability

CVE-2025-71098 is a denial of service vulnerability in the Linux kernel's ip6_gre module that causes kernel crashes through skb_under_panic. This post covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-71098 Overview

A buffer underflow vulnerability has been identified in the Linux kernel's IPv6 GRE tunneling implementation, specifically within the ip6gre_header() function. This vulnerability was discovered through syzbot fuzzing and can cause a kernel panic when processing malformed network packets under specific conditions involving team or bonding drivers.

The vulnerability occurs when mld_newpack() allocates a socket buffer (skb) with insufficient headroom, and an ip6gre device is subsequently attached before mld_sendpack() is invoked. This race condition can trigger a skb_under_panic, resulting in a kernel crash.

Critical Impact

Exploitation can cause kernel panic and system crash, leading to denial of service on affected Linux systems using IPv6 GRE tunneling with team or bonding network drivers.

Affected Products

  • Linux Kernel (ip6_gre module)
  • Systems using IPv6 GRE tunneling
  • Configurations utilizing team or bonding network drivers

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71098 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71098

Vulnerability Analysis

The vulnerability resides in the ip6gre_header() function located in net/ipv6/ip6_gre.c. The root cause is a failure to properly validate buffer headroom when team or bonding drivers dynamically modify dev->needed_headroom and/or dev->hard_header_len values at runtime.

When mld_newpack() creates a socket buffer for multicast listener discovery operations, it calculates the required headroom based on the current device configuration. However, if an ip6gre tunnel device is attached to a team or bonding interface between buffer allocation and packet transmission, the headroom requirements may change. The ip6gre_header() function then attempts to push data beyond the allocated buffer space, triggering a buffer underflow condition.

The crash manifests as an skb_under_panic at net/core/skbuff.c:213, occurring when skb_push() attempts to add 40 bytes of header data to a buffer that lacks sufficient space, resulting in the data pointer moving before the buffer head.

Root Cause

The vulnerability stems from improper synchronization between socket buffer allocation and network device configuration changes. Team and bonding drivers can dynamically adjust headroom requirements, but the MLD (Multicast Listener Discovery) code path does not account for these runtime changes. This creates a time-of-check to time-of-use (TOCTOU) race condition where the headroom calculated during allocation becomes invalid by the time the packet header is constructed.

Attack Vector

The attack vector involves manipulation of network device configurations during active IPv6 multicast operations:

  1. A system must be running IPv6 with MLD enabled
  2. Team or bonding interfaces must be configured
  3. An attacker or system process triggers device attachment/modification during MLD packet processing
  4. The timing window between mld_newpack() and mld_sendpack() is exploited
  5. The kernel attempts to push header data into insufficient buffer space, causing a panic

The crash trace shows the following execution path: mld_ifc_work() → mld_sendpack() → ip6_output() → ip6_finish_output2() → neigh_connected_output() → dev_hard_header() → ip6gre_header() → skb_push() → skb_under_panic.

Detection Methods for CVE-2025-71098

Indicators of Compromise

  • Kernel panic messages containing skb_under_panic with reference to ip6gre_header
  • System crashes during IPv6 multicast operations on team or bonding interfaces
  • Kernel log entries showing buffer underflow at net/core/skbuff.c with ip6gre in the call stack

Detection Strategies

  • Monitor kernel logs for skb_under_panic events with call traces involving ip6gre_header
  • Implement kernel crash dump analysis to identify patterns matching this vulnerability signature
  • Deploy network monitoring to detect unusual GRE tunnel attachment patterns on bonding interfaces

Monitoring Recommendations

  • Enable kernel crash reporting and analysis for early detection of exploitation attempts
  • Monitor system stability metrics on hosts utilizing IPv6 GRE tunneling with team or bonding drivers
  • Configure alerting for unexpected kernel panics in network subsystem code paths

How to Mitigate CVE-2025-71098

Immediate Actions Required

  • Apply the kernel patches referenced in the security commits to affected systems
  • Consider temporarily disabling IPv6 GRE tunneling on team or bonding interfaces if patching is not immediately possible
  • Prioritize patching systems that heavily utilize team or bonding network configurations with IPv6

Patch Information

The Linux kernel development team has released fixes across multiple stable kernel branches. The patches make ip6gre_header() more robust by properly validating buffer headroom before attempting to push header data.

Patches are available through the following commits:

  • Kernel commit 1717357007db
  • Kernel commit 5fe210533e34
  • Kernel commit 91a2b25be07c
  • Kernel commit adee129db814
  • Kernel commit db5b4e39c4e6

Workarounds

  • Avoid using IPv6 GRE tunnels on team or bonding interfaces until patched
  • Implement network segmentation to limit exposure of vulnerable configurations
  • Consider using alternative tunneling protocols that are not affected by this vulnerability
bash
# Check if ip6_gre module is loaded
lsmod | grep ip6_gre

# Temporarily unload the module if not required (requires no active tunnels)
sudo modprobe -r ip6_gre

# Prevent module auto-loading by blacklisting
echo "blacklist ip6_gre" | sudo tee /etc/modprobe.d/blacklist-ip6gre.conf

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

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

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • 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-23459: Linux Kernel 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