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

CVE-2026-22998: Linux Kernel NVMe-TCP NULL Pointer Flaw

CVE-2026-22998 is a NULL pointer dereference vulnerability in the Linux kernel's NVMe-TCP implementation that can be triggered by malformed H2C_DATA PDUs. This article covers the technical details, attack vectors, and mitigation.

Published: January 30, 2026

CVE-2026-22998 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's NVMe-TCP (NVMe over TCP) target subsystem, specifically in the nvmet_tcp_build_pdu_iovec function. This vulnerability allows remote attackers to trigger kernel panics by sending malformed H2C_DATA Protocol Data Units (PDUs) before proper command initialization has occurred.

The flaw originates from incomplete validation introduced in a previous security patch (commit efa56305908b) that addressed H2C PDU length validation but failed to verify whether critical data structures (cmd->req.sg and cmd->iov) were properly initialized before dereferencing them.

Critical Impact

Remote attackers can cause system denial of service by crashing the Linux kernel through crafted NVMe-TCP packets, affecting any system running the NVMe-TCP target subsystem.

Affected Products

  • Linux kernel with NVMe-TCP target subsystem enabled
  • Systems running nvmet-tcp kernel module
  • NVMe-oF (NVMe over Fabrics) storage targets using TCP transport

Discovery Timeline

  • 2026-01-25 - CVE CVE-2026-22998 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-22998

Vulnerability Analysis

The vulnerability resides in the NVMe-TCP target implementation within the Linux kernel. When processing H2C_DATA (Host to Controller Data) PDUs, the nvmet_tcp_build_pdu_iovec() function directly dereferences the cmd->req.sg and cmd->iov pointers without verifying they have been properly initialized.

A previous fix attempted to add bounds checking for ttag and data_offset validation in nvmet_tcp_handle_h2c_data_pdu(), but this was insufficient. The code path still allows H2C_DATA PDUs to be processed in scenarios where the associated command structures remain uninitialized.

Root Cause

The root cause is missing NULL pointer validation for critical data structures before they are dereferenced in the PDU I/O vector building routine. The kernel assumes that any H2C_DATA PDU received corresponds to a fully initialized command, but the protocol flow allows packets to arrive before proper command setup:

  1. Pre-CONNECT scenario: H2C_DATA PDU sent after ICREQ/ICRESP handshake but before CONNECT command - both cmd->req.sg and cmd->iov are NULL
  2. READ command scenario: H2C_DATA PDU for a READ command results in cmd->req.sg being allocated but cmd->iov remaining NULL
  3. Uninitialized slot scenario: H2C_DATA PDU targeting an uninitialized command slot leaves both pointers NULL

Attack Vector

The attack can be executed remotely by any entity capable of establishing a TCP connection to an NVMe-TCP target service. The attacker initiates the NVMe-TCP protocol handshake (ICREQ/ICRESP) and then immediately sends a crafted H2C_DATA PDU before completing proper command initialization through CONNECT or write commands.

This attack does not require authentication and can be performed immediately after the initial protocol handshake, as the NVMe-TCP target processes the malicious PDU before validating command state. The resulting NULL pointer dereference causes a kernel panic, leading to immediate system unavailability.

Detection Methods for CVE-2026-22998

Indicators of Compromise

  • Kernel panic messages referencing nvmet_tcp_build_pdu_iovec in stack traces
  • Unexpected NVMe-TCP target service crashes without apparent cause
  • Network captures showing H2C_DATA PDUs immediately following ICREQ/ICRESP without intervening CONNECT commands
  • System logs indicating NULL pointer dereferences in NVMe-TCP subsystem

Detection Strategies

  • Monitor kernel logs for panic events involving nvmet_tcp module functions
  • Implement network intrusion detection rules to identify anomalous NVMe-TCP protocol sequences
  • Deploy endpoint detection monitoring for unexpected kernel crashes on storage target systems
  • Analyze NVMe-TCP traffic patterns for protocol state violations

Monitoring Recommendations

  • Enable kernel crash dump collection to capture diagnostic information for forensic analysis
  • Configure alerting on systems running NVMe-TCP targets for unexpected service restarts
  • Implement rate limiting and connection monitoring for NVMe-TCP listener ports (typically 4420/tcp)
  • Review system stability metrics for NVMe-oF storage infrastructure

How to Mitigate CVE-2026-22998

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel stable branches immediately
  • Restrict network access to NVMe-TCP target ports using firewall rules to trusted hosts only
  • Monitor NVMe-TCP target systems for unusual crash patterns or service disruptions
  • Consider temporarily disabling NVMe-TCP target functionality if not critical to operations

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix validates both cmd->req.sg and cmd->iov pointers before calling nvmet_tcp_build_pdu_iovec(), ensuring all required data structures are initialized before processing H2C_DATA PDUs.

Patches are available through the following kernel commits:

  • Linux Kernel Commit 32b63acd78f5
  • Linux Kernel Commit 374b095e265f
  • Linux Kernel Commit 3def52431507

Workarounds

  • Implement network-level access controls to restrict NVMe-TCP port access to authenticated management networks
  • Deploy firewall rules limiting connections to port 4420/tcp from trusted initiator hosts only
  • Unload the nvmet-tcp kernel module if NVMe-TCP target functionality is not required
  • Consider using alternative NVMe-oF transport mechanisms (RDMA) where applicable
bash
# Restrict NVMe-TCP access using iptables
iptables -A INPUT -p tcp --dport 4420 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 4420 -j DROP

# Disable NVMe-TCP target module if not needed
modprobe -r nvmet-tcp
echo "blacklist nvmet-tcp" >> /etc/modprobe.d/nvme-tcp.conf

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-23416: Linux Kernel VMA Merge Vulnerability

  • CVE-2026-23414: Linux Kernel TLS Memory Leak Vulnerability

  • CVE-2026-23403: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23399: Linux Kernel Memory Leak 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