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

CVE-2026-46214: Linux Kernel vsock/virtio DoS Vulnerability

CVE-2026-46214 is a denial of service flaw in Linux kernel vsock/virtio that causes accept queue count leaks, eventually blocking all new connections. This article covers the technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46214 Overview

CVE-2026-46214 is a resource management flaw in the Linux kernel's vsock/virtio subsystem. The function virtio_transport_recv_listen() invokes sk_acceptq_added() before calling vsock_assign_transport(). When transport assignment fails or selects a different transport, the error path returns without calling sk_acceptq_removed(), permanently incrementing sk_ack_backlog. After approximately backlog+1 such failures, sk_acceptq_is_full() returns true, causing the listening socket to reject all subsequent connections. The flaw enables a denial-of-service condition against vsock listeners on affected Linux kernel builds.

Critical Impact

Repeated transport-mismatch connection attempts permanently inflate the accept queue counter, eventually blocking all new vsock connections to the listener.

Affected Products

  • Linux kernel branches containing the vsock/virtio transport implementation prior to the referenced stable commits
  • Virtualization hosts and guests relying on virtio-vsock for hypervisor-guest communication
  • Container and confidential computing platforms using vsock listeners

Discovery Timeline

  • 2026-05-28 - CVE-2026-46214 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46214

Vulnerability Analysis

The vulnerability resides in virtio_transport_recv_listen() within the Linux kernel's virtio vsock transport layer. The function accounts for an incoming connection on the listener's accept queue by calling sk_acceptq_added() prior to validating that a transport can actually service the connection.

If vsock_assign_transport() subsequently fails or returns a transport different from the one expected, the error-handling path exits without a paired sk_acceptq_removed() call. The counter sk_ack_backlog increases on every failed attempt without ever being decremented.

Once the leaked count exceeds the socket's configured backlog, sk_acceptq_is_full() returns true on every check. The listener then rejects all valid connection attempts, producing a persistent denial of service that survives until the listening socket is closed and recreated.

Root Cause

The root cause is incorrect ordering of accounting and validation operations. Accept-queue accounting executes before transport validation, breaking the acquire-release symmetry that the kernel's socket API expects. The fix moves sk_acceptq_added() to after successful transport validation, aligning the code with the patterns already implemented in vmci_transport and hyperv_transport.

Attack Vector

An attacker with the ability to initiate vsock connections to a listening socket can repeatedly trigger transport mismatches. Each failed attempt leaks one accept-queue slot. After enough iterations, the listener becomes unreachable. The attack does not require kernel privileges, only the ability to open vsock sockets from a guest, container, or local context that can reach the listener.

No verified public exploitation code is associated with this CVE. The fix is distributed across the Linux kernel stable commits 29371f3, 52bcb57, 65c4847, 6d3275f, and e9edf98.

Detection Methods for CVE-2026-46214

Indicators of Compromise

  • Vsock listener sockets that stop accepting connections while remaining in the LISTEN state.
  • Elevated sk_ack_backlog values reported by socket diagnostics without a corresponding number of accepted connections.
  • Repeated ECONNRESET or connection-refused errors from clients targeting AF_VSOCK services.

Detection Strategies

  • Compare running kernel versions against the patched stable branches referenced in the kernel.org commits.
  • Audit virtualization hosts and guests for use of virtio-vsock listeners and inventory services that bind on AF_VSOCK.
  • Inspect kernel logs for high volumes of vsock connection attempts originating from a single guest or container.

Monitoring Recommendations

  • Track ss -lx and /proc/net/vsock output for vsock listeners whose accept queue depth grows without matching accept activity.
  • Alert on processes that issue large bursts of connect() calls against AF_VSOCK sockets.
  • Forward kernel and audit logs to a centralized analytics platform to correlate failed vsock connections across the fleet.

How to Mitigate CVE-2026-46214

Immediate Actions Required

  • Apply the latest Linux kernel update from your distribution that incorporates the upstream stable patches.
  • Restart vsock listener services after patching to clear any leaked accept-queue counters from prior exploitation attempts.
  • Restrict which guests, containers, or local users can initiate vsock connections to sensitive listeners.

Patch Information

The upstream fix reorders sk_acceptq_added() to execute only after vsock_assign_transport() validates the transport, mirroring the behavior of vmci_transport and hyperv_transport. The patch is available in the kernel.org stable tree under commits 29371f3, 52bcb57, 65c4847, 6d3275f, and e9edf98. Distribution vendors should ship corresponding kernel updates; consult vendor advisories for backports.

Workarounds

  • Periodically restart processes that hold long-lived AF_VSOCK listeners to reset sk_ack_backlog until patches are applied.
  • Where feasible, disable or unload the vmw_vsock_virtio_transport module on hosts that do not require virtio vsock connectivity.
  • Use hypervisor-level controls to limit which guests can communicate with vsock listeners on the host.
bash
# Verify the running kernel and reload vsock modules after patching
uname -r
lsmod | grep vsock
modprobe -r vmw_vsock_virtio_transport 2>/dev/null || true

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

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

  • Linux Kernel Commit 52bcb57

  • Linux Kernel Commit 65c4847

  • Linux Kernel Commit 6d3275f

  • Linux Kernel Commit e9edf98
  • Related CVEs
  • CVE-2026-46220: Linux Kernel AMDGPU SDMA4 DoS Vulnerability

  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-46193: Linux Kernel AH ESN DoS Vulnerability

  • CVE-2026-46184: Linux Kernel ua101 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