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

CVE-2026-46234: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-46234 is a buffer overflow flaw in the Linux kernel's vsock implementation that allows memory boundaries to be exceeded. This article covers technical details, affected versions, impact, and mitigation.

Published: May 28, 2026

CVE-2026-46234 Overview

CVE-2026-46234 is a Linux kernel vulnerability in the virtual socket (vsock) subsystem. The flaw exists in the vsock_update_buffer_size() function, which clamps the requested buffer size in the wrong order. The implementation applies the maximum bound before the minimum, allowing a user-supplied minimum that exceeds the configured maximum to invert the constraint.

When exploited, this allows vsk->buffer_size to grow beyond vsk->buffer_max_size, breaking the intended socket memory boundaries. The issue affects Linux kernel builds with vsock support, commonly used for guest-to-host communication in virtualization platforms such as KVM, VMware, and Hyper-V.

Critical Impact

Local users can cause socket buffers to exceed configured maximum size limits, breaching kernel memory accounting boundaries in the vsock subsystem.

Affected Products

  • Linux kernel (vsock subsystem)
  • Distributions shipping affected kernel versions prior to the referenced stable patches
  • Virtualization hosts and guests relying on vsock for inter-VM communication

Discovery Timeline

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

Technical Details for CVE-2026-46234

Vulnerability Analysis

The vulnerability resides in vsock_update_buffer_size() inside the Linux kernel vsock subsystem. The function is responsible for adjusting the per-socket buffer size while keeping it within the bounds defined by vsk->buffer_min_size and vsk->buffer_max_size. The original implementation clamps the value to the maximum first, then to the minimum.

When a user sets buffer_min_size to a value larger than buffer_max_size, the second clamp overrides the first. The minimum bound effectively raises the buffer size above the configured maximum. This inverts the intended constraint and breaks the socket memory accounting model.

Root Cause

The root cause is incorrect ordering of bounds checks, a logic flaw classified under improper input validation. The function should validate the lower bound first, ensuring the requested size is not below the minimum, and then enforce the upper bound to clamp it at the maximum. Reversing this order allows a larger-than-maximum minimum to dominate the final result, leaving vsk->buffer_size exceeding vsk->buffer_max_size.

Attack Vector

A local user with permission to create and configure AF_VSOCK sockets can trigger the flaw by setting socket options that raise the minimum buffer size above the configured maximum. Once the inverted clamp takes effect, the kernel allocates buffers larger than intended for that socket. This can be abused to bypass memory accounting limits and pressure kernel memory allocators in shared virtualization environments.

The vulnerability is described in prose only; no public exploit code is referenced in the advisory. See the upstream stable patches for the precise diff: Kernel Patch 0b68881, Kernel Patch 2602f7b, Kernel Patch 310da27, Kernel Patch a998a7e, and Kernel Patch d114bfd.

Detection Methods for CVE-2026-46234

Indicators of Compromise

  • Unexpected growth of per-socket buffer memory attributed to AF_VSOCK sockets in /proc/net/sockstat or slabtop output.
  • Processes setting unusually large SO_VM_SOCKETS_BUFFER_MIN_SIZE values via setsockopt on AF_VSOCK sockets.
  • Kernel memory pressure or OOM events on virtualization hosts using vsock for guest communication.

Detection Strategies

  • Audit installed kernel package versions against the fixed stable releases referenced in the upstream patches.
  • Use auditd rules to log setsockopt calls on AF_VSOCK sockets that adjust buffer size parameters.
  • Correlate user-space activity with kernel slab allocator growth in the vsock slab caches.

Monitoring Recommendations

  • Track kernel version inventory across hypervisors and guests to confirm patch deployment status.
  • Monitor for anomalous local privilege boundary activity on systems exposing AF_VSOCK to untrusted workloads.
  • Alert on sustained increases in vsock buffer memory consumption per process.

How to Mitigate CVE-2026-46234

Immediate Actions Required

  • Apply the upstream Linux kernel patches that reorder the clamp logic in vsock_update_buffer_size() to check the minimum before the maximum.
  • Update to distribution kernel packages that incorporate the referenced stable commits.
  • Restrict access to AF_VSOCK sockets in multi-tenant or untrusted local-user environments until patches are deployed.

Patch Information

The fix reorders the clamp so the minimum bound is enforced first and the maximum bound is enforced last, guaranteeing vsk->buffer_size never exceeds vsk->buffer_max_size. The corrected logic is available in the stable kernel commits 0b68881, 2602f7b, 310da27, a998a7e, and d114bfd. Refer to the Linux stable kernel repository for the canonical diff and backport targets.

Workarounds

  • Where patching is not immediately possible, restrict which users and containers can open AF_VSOCK sockets using Linux capabilities, seccomp filters, or LSM policies.
  • Disable the vsock and vmw_vsock_* kernel modules on systems that do not require guest-to-host socket communication.
  • Apply cgroup memory limits to constrain the impact of buffer over-allocation on shared hosts.
bash
# Example: prevent loading vsock modules on hosts that do not need them
echo 'install vsock /bin/true' | sudo tee /etc/modprobe.d/disable-vsock.conf
echo 'install vmw_vsock_virtio_transport /bin/true' | sudo tee -a /etc/modprobe.d/disable-vsock.conf
echo 'install vmw_vsock_vmci_transport /bin/true' | sudo tee -a /etc/modprobe.d/disable-vsock.conf
sudo rmmod vmw_vsock_virtio_transport vmw_vsock_vmci_transport vsock 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
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch 0b68881

  • Kernel Patch 2602f7b

  • Kernel Patch 310da27

  • Kernel Patch a998a7e

  • Kernel Patch d114bfd
  • Related CVEs
  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46236: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46232: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43490: Linux Kernel ksmbd Buffer Overflow Flaw
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