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

CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

CVE-2026-31472 is a denial of service flaw in Linux kernel IPTFS that triggers an infinite loop via malformed IPv4 headers. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-31472 Overview

A Denial of Service vulnerability has been discovered in the Linux kernel's XFRM (IPsec Transformations) IPTFS (IP Traffic Flow Security) subsystem. The vulnerability exists in the __input_process_payload() function which fails to properly validate inner IPv4 header length fields (tot_len and ihl) when parsing decrypted IPTFS payloads. This insufficient input validation allows attackers to craft malicious ESP (Encapsulating Security Payload) packets that cause an infinite loop in softirq context, effectively hanging the affected system.

Critical Impact

A crafted ESP packet with an inner IPv4 header containing tot_len=0 causes the kernel to enter an infinite loop in softirq context, resulting in a complete system denial of service condition that requires a hard reboot to recover.

Affected Products

  • Linux kernel with XFRM IPTFS support enabled
  • Systems processing IPsec/ESP traffic with IPTFS mode
  • Network appliances and VPN gateways using affected kernel versions

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31472 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31472

Vulnerability Analysis

The vulnerability resides in the IPTFS payload processing logic within the Linux kernel's XFRM subsystem. IPTFS (IP Traffic Flow Security) is used to provide traffic flow confidentiality for IPsec connections by aggregating and fragmenting IP packets. When processing decrypted IPTFS payloads, the kernel extracts inner IP packets and processes them before they reach the standard IP receive path (ip_rcv_core()).

The root issue is that the __input_process_payload() function processes inner IPv4 packets without performing the same validation checks that the normal IP stack applies. When the inner IPv4 header's tot_len field is set to zero, the calculation for capturelen becomes min(0, remaining) = 0. This zero-length capture value means the data offset never advances during iteration, causing the while(data < tail) loop to spin indefinitely.

Root Cause

The vulnerability stems from missing input validation for inner IPv4 packet header fields in the IPTFS decryption path. Specifically:

  1. The tot_len (total length) field is not validated to ensure it meets minimum requirements
  2. The ihl (Internet Header Length) field is not checked against sizeof(struct iphdr)
  3. Unlike the standard IP receive path where ip_rcv_core() performs these validations, IPTFS extracts and processes inner packets before they reach that protective layer

The fix implements validation that rejects inner IPv4 packets where tot_len < ihl*4 or ihl*4 < sizeof(struct iphdr), catching both the tot_len=0 case and malformed ihl values.

Attack Vector

An attacker with the ability to send network traffic to a system processing IPTFS-encapsulated IPsec traffic can craft a malicious ESP packet containing an inner IPv4 header with manipulated length fields. The attack requires:

  1. Network access to the target system's IPsec/IPTFS processing path
  2. Ability to craft and send malformed ESP packets
  3. The target must have IPTFS mode enabled for IPsec transformations

The malicious packet triggers the infinite loop when processed, causing the system to become unresponsive as the softirq handler never completes. Since this executes in softirq context, it effectively disables network processing and can lead to a complete system hang.

The vulnerability mechanism involves the kernel's packet processing loop failing to advance through the payload buffer. When iplen is calculated as zero from the malformed tot_len field, each iteration processes zero bytes, creating an infinite loop condition that cannot be escaped through normal kernel scheduling.

Detection Methods for CVE-2026-31472

Indicators of Compromise

  • Sudden system unresponsiveness or hangs on systems processing IPsec/IPTFS traffic
  • Elevated softirq CPU usage that does not decrease
  • Network stack becoming completely unresponsive
  • Kernel watchdog triggers or NMI watchdog soft lockup warnings in system logs

Detection Strategies

  • Monitor for soft lockup warnings in kernel logs referencing XFRM or IPTFS functions
  • Implement network monitoring for malformed ESP packets with suspicious inner IP headers
  • Track softirq execution time anomalies that may indicate infinite loop conditions
  • Deploy intrusion detection signatures for ESP packets with zero-length inner IP payloads

Monitoring Recommendations

  • Enable kernel watchdog mechanisms to detect and report soft lockups
  • Configure IPsec traffic logging to capture packet metadata for forensic analysis
  • Implement system availability monitoring to detect sudden unresponsive states
  • Set up alerting on abnormal softirq CPU consumption patterns

How to Mitigate CVE-2026-31472

Immediate Actions Required

  • Apply the kernel patches from the official kernel git repository
  • Consider temporarily disabling IPTFS mode for IPsec connections if patching is not immediately possible
  • Implement network-level filtering to restrict sources of IPsec traffic to trusted peers
  • Monitor affected systems closely for signs of exploitation attempts

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds proper validation of inner IPv4 packet tot_len and ihl fields in the __input_process_payload() function. Patches are available through the following commits:

  • Commit 0d10393d5eac
  • Commit 3db7d4f777a0
  • Commit de6d8e8ce518

Organizations should update to the latest stable kernel version that includes these fixes.

Workarounds

  • Disable IPTFS mode for IPsec transformations and use alternative traffic flow security mechanisms
  • Restrict IPsec peer connections to known and trusted endpoints only
  • Implement strict firewall rules to limit exposure of IPsec services
  • Consider deploying network intrusion prevention systems capable of inspecting and filtering malformed ESP packets
bash
# Check if XFRM IPTFS is loaded/in use
lsmod | grep xfrm
cat /proc/net/xfrm_stat

# Verify kernel version and check for patches
uname -r
# Update to patched kernel version through your distribution's package manager

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 Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 DoS Vulnerability

  • CVE-2026-31437: 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