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-2023-1390

CVE-2023-1390: Linux Kernel TIPC Module DoS Vulnerability

CVE-2023-1390 is a denial of service flaw in the Linux Kernel's TIPC module that causes 100% CPU utilization through malformed UDP packets. This article covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-1390 Overview

A remote denial of service vulnerability was found in the Linux kernel's TIPC (Transparent Inter-Process Communication) kernel module. The while loop in tipc_link_xmit() hits an unknown state while attempting to parse SKBs (socket buffers), which are not in the queue. Sending two small UDP packets to a system with a UDP bearer results in the CPU utilization for the system to instantly spike to 100%, causing a denial of service condition.

Critical Impact

Remote attackers can cause complete system unavailability by sending two small UDP packets to systems with TIPC UDP bearer enabled, causing immediate 100% CPU utilization.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 5.11 rc1, rc2, rc3
  • NetApp products using affected Linux Kernel versions

Discovery Timeline

  • 2023-03-16 - CVE-2023-1390 published to NVD
  • 2025-04-23 - Last updated in NVD database

Technical Details for CVE-2023-1390

Vulnerability Analysis

This denial of service vulnerability exists in the Linux kernel's TIPC protocol implementation, specifically within the tipc_link_xmit() function in net/tipc/link.c. The vulnerability stems from improper handling of empty or malformed packet queues, which can trigger an infinite loop condition when processing network traffic.

When the TIPC module receives specially crafted UDP packets, the function attempts to access message headers from an empty SKB queue without first validating that packets exist in the queue. This causes the while loop to enter an unknown state, resulting in CPU exhaustion. The attack requires network access and can be executed remotely without authentication, making it particularly dangerous for systems exposed to untrusted networks with TIPC UDP bearers configured.

Root Cause

The root cause is a missing null check and packet count validation in tipc_link_xmit(). The function originally called buf_msg(skb_peek(list)) and msg_importance(hdr) before verifying that the packet list contained any entries. When the list is empty, skb_peek() returns NULL, leading to undefined behavior when the code attempts to dereference the message header. The while loop then enters an unexpected state attempting to process a non-existent queue.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying a target system with TIPC module loaded and UDP bearer configured
  2. Sending two small malformed UDP packets to the target
  3. Triggering the infinite loop condition in tipc_link_xmit()
  4. Causing immediate 100% CPU utilization and system unavailability

The following patch demonstrates the fix implemented in the Linux kernel:

c
 int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
 		   struct sk_buff_head *xmitq)
 {
-	struct tipc_msg *hdr = buf_msg(skb_peek(list));
 	struct sk_buff_head *backlogq = &l->backlogq;
 	struct sk_buff_head *transmq = &l->transmq;
 	struct sk_buff *skb, *_skb;
 	u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
 	u16 ack = l->rcv_nxt - 1;
 	u16 seqno = l->snd_nxt;
 	int pkt_cnt = skb_queue_len(list);
-	int imp = msg_importance(hdr);
 	unsigned int mss = tipc_link_mss(l);
 	unsigned int cwin = l->window;
 	unsigned int mtu = l->mtu;
+	struct tipc_msg *hdr;
 	bool new_bundle;
 	int rc = 0;
+	int imp;
+
+	if (pkt_cnt <= 0)
+		return 0;

+	hdr = buf_msg(skb_peek(list));
 	if (unlikely(msg_size(hdr) > mtu)) {
 		pr_warn("Too large msg, purging xmit list %d %d %d %d %d!\n",
 			skb_queue_len(list), msg_user(hdr),

Source: Linux Kernel GitHub Commit

Detection Methods for CVE-2023-1390

Indicators of Compromise

  • Sudden and sustained 100% CPU utilization on systems running Linux with TIPC module
  • Unusual UDP traffic patterns targeting TIPC ports (default 6118)
  • System unresponsiveness or kernel soft lockups related to TIPC processing
  • Log entries indicating TIPC module errors or abnormal packet processing

Detection Strategies

  • Monitor for abnormal CPU usage spikes correlated with network activity on TIPC-enabled systems
  • Implement network intrusion detection rules for malformed TIPC UDP packets
  • Deploy kernel-level monitoring to detect infinite loops or soft lockups in TIPC code paths
  • Use SentinelOne's kernel-level visibility to detect anomalous TIPC module behavior

Monitoring Recommendations

  • Enable kernel auditing for TIPC module operations and socket buffer handling
  • Configure alerting thresholds for CPU utilization anomalies on critical infrastructure
  • Monitor network traffic for suspicious UDP packets targeting TIPC services
  • Implement SentinelOne Singularity platform for real-time kernel behavior analysis and threat detection

How to Mitigate CVE-2023-1390

Immediate Actions Required

  • Update Linux kernel to a patched version containing commit b77413446408fdd256599daf00d5be72b5f3e7c6
  • Disable TIPC kernel module if not required: modprobe -r tipc
  • Implement firewall rules to restrict access to TIPC UDP ports from untrusted networks
  • Monitor systems for signs of exploitation while patching is in progress

Patch Information

The vulnerability has been addressed through Linux kernel commit b77413446408fdd256599daf00d5be72b5f3e7c6. This patch adds a validation check to ensure the packet queue is not empty before attempting to access message headers. The fix adds if (pkt_cnt <= 0) return 0; at the beginning of tipc_link_xmit() and moves the header pointer assignment after this check. System administrators should update to kernel versions containing this fix or apply vendor-specific patches. NetApp has also released an advisory at their Security Advisory Portal for affected products.

Workarounds

  • Disable TIPC module if not required for operations: echo "blacklist tipc" >> /etc/modprobe.d/blacklist.conf
  • Implement network segmentation to limit exposure of TIPC services to trusted networks only
  • Configure iptables or nftables rules to block UDP traffic to TIPC ports from external sources
  • Consider using SentinelOne's network protection capabilities to detect and block exploitation attempts
bash
# Configuration example
# Disable TIPC module loading
echo "blacklist tipc" >> /etc/modprobe.d/blacklist.conf
echo "install tipc /bin/false" >> /etc/modprobe.d/blacklist.conf

# Remove currently loaded TIPC module
modprobe -r tipc

# Block TIPC UDP traffic from external networks (adjust interface as needed)
iptables -A INPUT -p udp --dport 6118 -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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.68%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1050

  • NVD-CWE-Other
  • Technical References
  • GitHub Gist PoC

  • InfoSec Exchange Post

  • NetApp Security Advisory
  • Vendor Resources
  • GitHub Linux Commit
  • Related CVEs
  • CVE-2026-31418: Linux Kernel Netfilter IPset DoS Flaw

  • CVE-2026-31420: Linux Kernel Bridge MRP DoS Vulnerability

  • CVE-2026-31415: Linux Kernel IPv6 DoS Vulnerability

  • CVE-2026-31424: Linux Kernel Netfilter 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