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

CVE-2026-23398: Linux Kernel ICMP DoS Vulnerability

CVE-2026-23398 is a denial of service flaw in the Linux kernel's ICMP handling that causes NULL pointer dereference and kernel panic. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23398 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's ICMP handling code within the icmp_tag_validation() function. The vulnerability occurs when the function unconditionally dereferences the result of rcu_dereference(inet_protos[proto]) without checking for NULL. Since the inet_protos[] array is sparse (only approximately 15 of 256 protocol numbers have registered handlers), receiving an ICMP Fragmentation Needed error with a quoted inner IP header containing an unregistered protocol number can trigger a kernel panic in softirq context.

Critical Impact

When ip_no_pmtu_disc is set to 3 (hardened PMTU mode), a remote attacker can send crafted ICMP packets to cause a kernel panic, resulting in complete denial of service of the affected Linux system.

Affected Products

  • Linux kernel (versions with vulnerable icmp_tag_validation() implementation)
  • Systems configured with ip_no_pmtu_disc=3 (hardened PMTU mode)
  • Network-exposed Linux servers and infrastructure

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-23398 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-23398

Vulnerability Analysis

This vulnerability represents a Null Pointer Dereference condition in the Linux kernel's IPv4 ICMP error handling path. The root issue lies in the icmp_tag_validation() function, which is called during processing of ICMP error messages such as "Fragmentation Needed" (ICMP Type 3, Code 4).

The function retrieves a protocol handler using rcu_dereference(inet_protos[proto]) but fails to validate the result before attempting to access the icmp_strict_tag_validation field. When the kernel operates in hardened PMTU discovery mode (ip_no_pmtu_disc=3), it performs additional validation on received ICMP error messages.

An attacker can exploit this vulnerability remotely by crafting ICMP Fragmentation Needed packets that contain an inner IP header with an unregistered protocol number (any protocol not in the ~15 registered handlers). When the kernel processes such a packet, the NULL pointer dereference occurs in softirq context, causing a kernel panic and complete system denial of service.

Root Cause

The vulnerability stems from a missing NULL check in icmp_tag_validation() located in net/ipv4/icmp.c. The code assumes that every protocol number will have a registered handler in the inet_protos[] array, but this assumption is incorrect. The array is sparse by design, with only a small subset of the 256 possible protocol numbers having registered handlers. When ip_no_pmtu_disc=3 is enabled, the code path that accesses icmp_strict_tag_validation is triggered, and attempting to read this field from a NULL pointer results in a general protection fault.

Attack Vector

The attack vector is network-based and requires the ability to send ICMP packets to the target system. An attacker constructs an ICMP Fragmentation Needed message with a quoted inner IP header that specifies an unregistered protocol number. When this packet reaches a vulnerable system with ip_no_pmtu_disc=3 configured, the kernel attempts to validate the ICMP tags using a non-existent protocol handler, triggering the NULL pointer dereference.

The kernel crash trace shows the fault occurring at icmp_unreach (net/ipv4/icmp.c:1085 net/ipv4/icmp.c:1143) in the interrupt context (<IRQ>), with the call chain flowing through icmp_rcv, ip_protocol_deliver_rcu, ip_local_deliver_finish, ip_local_deliver, ip_rcv, and ultimately handle_softirqs.

Detection Methods for CVE-2026-23398

Indicators of Compromise

  • Unexpected kernel panics with "general protection fault" errors referencing icmp_unreach or icmp_tag_validation
  • KASAN reports showing "null-ptr-deref in range [0x0000000000000010-0x0000000000000017]"
  • System logs showing crashes in softirq context related to ICMP processing
  • Unusual ICMP Fragmentation Needed packets with non-standard protocol numbers in the quoted inner header

Detection Strategies

  • Monitor for kernel oops/panic events with RIP pointing to icmp_unreach in net/ipv4/icmp.c
  • Deploy network intrusion detection rules to identify ICMP Type 3 Code 4 packets with unusual protocol values (outside commonly used protocols like TCP/6, UDP/17, ICMP/1)
  • Enable kernel crash dump analysis to identify NULL pointer dereferences in ICMP handling paths
  • Review system configurations for ip_no_pmtu_disc=3 setting to identify potentially vulnerable systems

Monitoring Recommendations

  • Configure kdump/kexec for automated kernel crash collection on affected systems
  • Implement network flow analysis to detect anomalous ICMP traffic patterns targeting infrastructure
  • Set up alerting for unexpected system reboots or kernel panics on critical Linux systems
  • Monitor syslog for kernel crash messages containing references to icmp.c or icmp_tag_validation

How to Mitigate CVE-2026-23398

Immediate Actions Required

  • Apply the kernel patches from the stable kernel tree immediately
  • If patching is not immediately possible, consider temporarily changing ip_no_pmtu_disc from 3 to a lower value
  • Review firewall rules to limit exposure to potentially malicious ICMP traffic
  • Prioritize patching for internet-facing Linux systems and critical infrastructure

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds a NULL check before accessing icmp_strict_tag_validation, returning false for protocols without registered handlers since they cannot perform strict tag validation.

Patches are available through the following kernel commits:

  • Linux Kernel Commit 1e4e2f5
  • Linux Kernel Commit 1f9f2c6
  • Linux Kernel Commit 614aefe
  • Linux Kernel Commit 9647e99
  • Linux Kernel Commit b61529c
  • Linux Kernel Commit d938dd5

Workarounds

  • Change the ip_no_pmtu_disc sysctl setting from 3 to a lower value (0, 1, or 2) to avoid the vulnerable code path
  • Implement firewall rules to filter suspicious ICMP Fragmentation Needed packets at network boundaries
  • Deploy rate limiting on ICMP traffic to reduce the impact of potential exploitation attempts
  • Consider using iptables/nftables to drop ICMP Type 3 Code 4 packets from untrusted sources
bash
# Configuration example
# Temporary workaround: Change ip_no_pmtu_disc setting
sysctl -w net.ipv4.ip_no_pmtu_disc=2

# Make persistent across reboots
echo "net.ipv4.ip_no_pmtu_disc = 2" >> /etc/sysctl.conf

# Optional: Rate limit ICMP at the firewall
iptables -A INPUT -p icmp --icmp-type fragmentation-needed -m limit --limit 10/second -j ACCEPT
iptables -A INPUT -p icmp --icmp-type fragmentation-needed -j DROP

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
  • Linux Kernel Commit 1e4e2f5

  • Linux Kernel Commit 1f9f2c6

  • Linux Kernel Commit 614aefe

  • Linux Kernel Commit 9647e99

  • Linux Kernel Commit b61529c

  • Linux Kernel Commit d938dd5
  • Related CVEs
  • CVE-2026-23312: Linux Kernel Kaweth Driver DoS Vulnerability

  • CVE-2026-23382: Linux Kernel HID Driver DoS Vulnerability

  • CVE-2026-23385: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-23379: Linux Kernel ETS Scheduler DOS Vulnerability
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