A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46015

CVE-2026-46015: Linux Kernel TCP Listener DOS Vulnerability

CVE-2026-46015 is a denial of service flaw in the Linux kernel TCP implementation affecting socket listener migration. Blocking accept() and poll/epoll waiters can sleep indefinitely. This article covers technical details, impact, and mitigation.

Published: May 28, 2026

CVE-2026-46015 Overview

CVE-2026-46015 is a Linux kernel TCP networking flaw in the inet_csk_listen_stop() listener migration path. When an established child socket is migrated from a closing listener to another listener in the same SO_REUSEPORT group, the target listener's waiters are not notified. Blocking accept() callers and poll()/epoll_wait() waiters can sleep indefinitely. A secondary issue exists in reference counting: after inet_csk_reqsk_queue_add() succeeds, the listener reference is transferred and another CPU can drop it, leaving subsequent dereferences of nsk unsafe without RCU protection.

Critical Impact

Server applications relying on SO_REUSEPORT listener migration can stall indefinitely, leading to denial-of-service conditions on TCP services that depend on blocking accept loops or epoll-based event notification.

Affected Products

  • Linux kernel TCP/IPv4 stack (net/ipv4/inet_connection_sock.c)
  • Linux kernel builds using SO_REUSEPORT socket groups
  • Stable kernel branches receiving the fix commits referenced in git.kernel.org

Discovery Timeline

  • 2026-05-27 - CVE-2026-46015 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-46015

Vulnerability Analysis

The flaw resides in the TCP listener migration logic that runs when a listening socket is closed while peer listeners exist in the same SO_REUSEPORT group. The kernel transfers an already-established child socket to a surviving listener through inet_csk_reqsk_queue_add(). This path enqueues the new request onto the target listener's accept queue but omits the wakeup call. Nonblocking accept() callers tolerate the omission because they poll the queue directly. Blocking accept() consumers and poll()/epoll_wait() waiters depend on sk_data_ready() to wake them and therefore remain asleep until another event arrives.

Root Cause

The migration path in inet_csk_listen_stop() invokes inet_csk_reqsk_queue_add() without subsequently calling READ_ONCE(nsk->sk_data_ready)(nsk). A second defect compounds the issue: once inet_csk_reqsk_queue_add() succeeds, the reference acquired by reuseport_migrate_sock() is transferred to nreq->rsk_listener. A concurrent CPU can dequeue nreq via accept() or listener shutdown, call reqsk_put(), and drop the listener reference. Any post-queue-add dereference of nsk without RCU protection becomes a use-after-free candidate, even though listeners are SOCK_RCU_FREE.

Attack Vector

Exploitation requires triggering listener migration within a SO_REUSEPORT group while concurrent accept() or shutdown activity races against the migration. Locally co-resident workloads or attackers controlling traffic patterns to a multi-listener TCP service can induce repeated migrations to stall accept queues. The fix wraps the post-queue_add dereferences of nsk in rcu_read_lock()/rcu_read_unlock() and explicitly calls sk_data_ready() on the target listener after a successful migration. The reqsk_timer_handler() path is unaffected because half-open requests become readable only after the final ACK where tcp_child_process() already wakes the listener.

No public exploit code is associated with this issue. See the kernel commit references for the upstream fix.

Detection Methods for CVE-2026-46015

Indicators of Compromise

  • TCP server processes accumulating in uninterruptible or interruptible sleep on inet_csk_accept despite pending connections in the accept queue.
  • ss -lnt showing nonzero Recv-Q on listening sockets while the owning process remains blocked.
  • Unexpected hangs in services using SO_REUSEPORT worker pools after listener restarts or rolling reloads.

Detection Strategies

  • Inventory running kernels against the fixed stable commits (12625b4da84c, 3864c6ba1e04, 83bb57635d7c, ab5fdcd53564, bebd058ef40c) using configuration management tooling.
  • Audit applications for SO_REUSEPORT usage combined with blocking accept() or epoll_wait() loops, which are the conditions required to observe the hang.
  • Correlate kernel uname -r output with distribution advisories to identify hosts still running pre-patch builds.

Monitoring Recommendations

  • Alert on TCP listeners with sustained nonzero accept-queue depth combined with idle owning processes.
  • Track per-process scheduler wait states for long-lived accept() callers on production network services.
  • Monitor for repeated listener restart cycles in load balancers and reverse proxies that rely on SO_REUSEPORT socket groups.

How to Mitigate CVE-2026-46015

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the stable tree commits to all affected hosts.
  • Identify production workloads that use SO_REUSEPORT listener pools and prioritize them for kernel updates.
  • Restart long-running services after patching to ensure no processes remain blocked on the pre-patch accept path.

Patch Information

The fix is committed across multiple Linux stable branches. Reference commits: 12625b4da84c, 3864c6ba1e04, 83bb57635d7c, ab5fdcd53564, and bebd058ef40c. The patch adds the missing sk_data_ready() invocation and wraps post-migration nsk dereferences in an RCU read-side critical section.

Workarounds

  • Where patching is not yet possible, avoid relying on listener migration by performing graceful drain of SO_REUSEPORT groups before shutting down a listener.
  • Use nonblocking accept() with a short timeout fallback to bypass the missed-wakeup path in vulnerable kernels.
  • Stagger listener restarts so that migrations do not coincide with active accept() or epoll_wait() callers in peer listeners.
bash
# Verify kernel version against fixed stable commits
uname -r

# Identify processes blocked on accept while queues are non-empty
ss -lntp
for pid in $(pgrep -f your_service); do
  awk '/State|wchan/' /proc/$pid/status
done

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-45919: Linux Kernel Scheduler DoS Vulnerability

  • CVE-2026-45913: Linux Kernel Bridge MDB DoS Vulnerability

  • CVE-2026-43286: Linux Kernel DOS Vulnerability

  • CVE-2026-43060: Linux Kernel Netfilter DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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