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

CVE-2026-23331: Linux Kernel UDP DOS Vulnerability

CVE-2026-23331 is a denial of service vulnerability in the Linux kernel's UDP socket implementation that affects hash table management during socket disconnection. This article covers technical details, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23331 Overview

A vulnerability has been identified in the Linux kernel's UDP networking subsystem where connected sockets bound to wildcard addresses are not properly removed from the 4-tuple hash table when disconnected. This flaw occurs in the socket disconnection handling logic, specifically in the __udp_disconnect() function, which incorrectly attempts to rehash the socket rather than removing it from the hash table entirely.

When a UDP socket is bound to a wildcard address with a non-zero port and subsequently connected and disconnected, the kernel's rehash operation moves the socket to a new slot in the 4-tuple hash table based on the wildcard address. This leaves stale entries in the hash chain that no packet will ever match, leading to potential memory corruption and system instability.

Critical Impact

This vulnerability can result in hash table corruption in the Linux kernel's UDP networking stack, potentially leading to system instability, denial of service conditions, or unpredictable network behavior on affected systems.

Affected Products

  • Linux Kernel (UDP networking subsystem)
  • Systems using UDP socket auto-binding with connect/disconnect operations

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23331 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23331

Vulnerability Analysis

This vulnerability affects the UDP socket handling in the Linux kernel networking stack. The issue arises from improper socket lifecycle management when a UDP socket undergoes a specific sequence of operations: binding to a wildcard address (0.0.0.0 or ::) with a specified port, connecting to a remote address, and then disconnecting.

During the bind() operation, the kernel sets SOCK_BINDPORT_LOCK on sk->sk_userlocks but does not set SOCK_BINDADDR_LOCK. When connect() is called, the kernel invokes udp_lib_hash4() to insert the socket into the 4-tuple hash table for efficient packet lookup.

The problem manifests when __udp_disconnect() is called. Instead of properly removing the socket from the 4-tuple hash table, it calls sk->sk_prot->rehash(sk), which computes a new hash based on the wildcard address and moves the socket to a different slot. This leaves orphaned entries in the original hash chain.

Root Cause

The root cause is the incorrect handling of socket state transitions in the __udp_disconnect() function. When disconnecting an auto-bound connected socket, the kernel should call udp_unhash4() to properly remove the socket from the 4-tuple hash table. Instead, the rehash operation creates dangling references in the hash chain.

Additionally, the udp_sk(sk)->udp_portaddr_hash field needs to be updated after udp_hash4_dec(hslot2) is called in udp_unhash4() to maintain consistency in the hash table data structures.

Attack Vector

The vulnerability requires local access to create and manipulate UDP sockets. An attacker or application can trigger this condition through the following sequence:

  1. Create a UDP socket using socket(AF_INET, SOCK_DGRAM, 0)
  2. Bind the socket to a wildcard address with a specific port using bind()
  3. Connect the socket to a remote address using connect()
  4. Disconnect the socket by calling connect() with AF_UNSPEC
  5. Repeat steps 3-4 multiple times to accumulate garbage entries in the hash table

This can lead to hash table corruption, potentially causing denial of service through resource exhaustion or unpredictable kernel behavior when processing UDP packets.

Detection Methods for CVE-2026-23331

Indicators of Compromise

  • Unusual system performance degradation related to UDP networking operations
  • Kernel warnings or errors related to UDP socket hash table operations in system logs
  • Memory usage anomalies in networking subsystem kernel structures
  • Unexpected UDP packet delivery failures or delays

Detection Strategies

  • Monitor kernel logs for warnings related to UDP socket operations or hash table inconsistencies
  • Implement system call auditing for repeated patterns of UDP socket bind/connect/disconnect operations
  • Use kernel debugging tools such as ftrace or eBPF to monitor __udp_disconnect() and related hash table functions
  • Deploy SentinelOne Singularity XDR for real-time kernel-level threat detection and behavioral analysis

Monitoring Recommendations

  • Enable kernel auditing for socket-related system calls (socket, bind, connect)
  • Monitor for applications performing rapid UDP socket connect/disconnect cycles
  • Review system logs periodically for networking subsystem anomalies
  • Implement network performance baselines to detect degradation patterns

How to Mitigate CVE-2026-23331

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • Review and apply kernel patches from the official kernel git repository
  • Assess systems for applications that may trigger the vulnerable code path
  • Consider implementing network namespace isolation for untrusted applications

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix ensures that auto-bound connected sockets are properly removed from the 4-tuple hash table when disconnected, rather than being rehashed incorrectly.

Patch commits are available from the stable kernel git repository:

  • Kernel Git Commit 3b8f104
  • Kernel Git Commit 6996a2d
  • Kernel Git Commit b955350

Apply the appropriate patch for your kernel version and rebuild the kernel or wait for distribution-specific updates.

Workarounds

  • Limit UDP socket operations to trusted applications only through SELinux or AppArmor policies
  • Implement seccomp filters to restrict socket-related system calls for untrusted processes
  • Monitor and rate-limit applications performing frequent UDP socket connect/disconnect operations
  • Consider using TCP instead of UDP where application requirements permit
bash
# Example: Check current kernel version and verify if patched
uname -r

# Example: Monitor for vulnerable socket operations using auditd
auditctl -a always,exit -F arch=b64 -S connect -F a1=2 -k udp_connect_monitor

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 3b8f104

  • Kernel Git Commit 6996a2d

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

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

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

  • CVE-2026-31448: Linux Kernel ext4 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