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

CVE-2026-46207: Linux Kernel vsock/virtio Vulnerability

CVE-2026-46207 is a buffer handling flaw in Linux kernel vsock/virtio that causes empty payload in tap skb for non-linear buffers. This post covers the technical details, affected versions, impact, and mitigation strategies.

Published: May 28, 2026

CVE-2026-46207 Overview

CVE-2026-46207 is an uninitialized memory use vulnerability in the Linux kernel's vsock/virtio subsystem. The flaw resides in virtio_transport_build_skb(), which calls virtio_transport_copy_nonlinear_skb() to copy payload data into a new socket buffer destined for the vsockmon tap device. The helper manually initializes an iov_iter structure but fails to set iov_iter.count, leaving it zero. As a result, no payload is copied to the monitor interface, and the tap skb is delivered with uninitialized kernel memory in place of the expected data.

Critical Impact

Tap socket buffers delivered to vsockmon monitor interfaces contain uninitialized kernel memory, potentially exposing sensitive data to processes capturing vsock traffic.

Affected Products

  • Linux kernel — vsock/virtio transport (mainline)
  • Linux stable kernel branches receiving the referenced backports
  • Distributions packaging affected stable kernels prior to the fix commits

Discovery Timeline

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

Technical Details for CVE-2026-46207

Vulnerability Analysis

The Linux kernel's vsock/virtio transport supports duplication of socket buffers to a vsockmon tap device for traffic monitoring. When the original skb is non-linear, virtio_transport_build_skb() delegates payload copying to virtio_transport_copy_nonlinear_skb(). This helper builds an iov_iter on the stack to describe the destination buffer but neglects to populate the count field. Because the structure is zero-initialized, the copy operation walks zero bytes and returns without writing payload data. The resulting tap skb retains whatever kernel memory occupied the newly allocated buffer, which is then delivered to any process observing the vsockmon interface.

Root Cause

The root cause is improper initialization of an iov_iter structure prior to use in a kernel-to-kernel copy path. Manual construction of the iterator omitted the byte count, which controls how much data is transferred. With count set to zero, the copy is a no-op, and the destination skb is forwarded with uninitialized contents. This is an Uninitialized Memory Use defect [CWE-908] that surfaces as an information exposure to monitoring consumers.

Attack Vector

Exploitation requires the ability to observe traffic on the vsockmon tap interface, which typically requires elevated privileges such as CAP_NET_ADMIN. An adversary with that access can capture frames containing residual kernel memory from skb allocations. While this is not a remote code execution path, the leaked bytes may include sensitive kernel data adjacent to networking allocations. The upstream remediation removes the linear vs non-linear split entirely and replaces it with skb_copy_datagram_iter() combined with iov_iter_kvec(), mirroring the approach already used by vhost-vsock. The fix also adds error checking on the return value of skb_copy_datagram_iter().

Detection Methods for CVE-2026-46207

Indicators of Compromise

  • Presence of vsockmon tap interfaces on systems running unpatched kernels with vsock/virtio enabled.
  • Captured vsockmon frames whose payload bytes do not match the original vsock traffic sent or received by guests.
  • Loaded vsock, vmw_vsock_virtio_transport, or vhost_vsock modules on kernels lacking the referenced commits.

Detection Strategies

  • Compare installed kernel versions against the fix commits 06747f52ab15, 378b131a25bd, 3a3e3d90cbc7, and 52da6a74ca3d from the kernel.org stable tree.
  • Audit hosts running virtualization workloads using virtio-vsock and verify whether vsockmon is in use for diagnostics.
  • Use distribution security trackers to confirm vendor backports have been applied to deployed kernel packages.

Monitoring Recommendations

  • Track creation of vsockmon interfaces via ip link auditing or netlink monitoring on production hypervisors.
  • Log loading of vsock family modules and correlate with the kernel build identifier reported by uname -r.
  • Review packet captures taken from vsockmon for anomalous content patterns that could indicate the uninitialized-memory condition.

How to Mitigate CVE-2026-46207

Immediate Actions Required

  • Inventory all Linux hosts running virtio-vsock workloads, including KVM/QEMU hypervisors and Firecracker deployments.
  • Apply vendor kernel updates that incorporate the upstream fix replacing virtio_transport_copy_nonlinear_skb() with skb_copy_datagram_iter().
  • Restrict CAP_NET_ADMIN and access to vsockmon interfaces to trusted administrators only.

Patch Information

The vulnerability is resolved in the Linux stable tree through the following commits: 06747f52ab15, 378b131a25bd, 3a3e3d90cbc7, and 52da6a74ca3d. The fix removes the linear vs non-linear branch in virtio_transport_build_skb(), uses iov_iter_kvec() to correctly initialize the iterator, and checks the return value of skb_copy_datagram_iter().

Workarounds

  • Avoid creating vsockmon tap interfaces on unpatched hosts until kernel updates are deployed.
  • Where virtio-vsock is not required, unload the vsock and vmw_vsock_virtio_transport modules and blacklist them via /etc/modprobe.d/.
  • Limit which user accounts can hold CAP_NET_ADMIN to reduce the set of principals able to attach monitor interfaces.
bash
# Configuration example
# Verify the running kernel and vsock module status
uname -r
lsmod | grep -E 'vsock|vhost_vsock'

# Blacklist vsock modules on hosts that do not require virtio-vsock
cat <<'EOF' | sudo tee /etc/modprobe.d/disable-vsock.conf
blacklist vsock
blacklist vmw_vsock_virtio_transport
blacklist vhost_vsock
EOF

# Remove any existing vsockmon tap interface
sudo ip link show type vsockmon
sudo ip link delete vsockmon0 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
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Note 1

  • Kernel Patch Note 2

  • Kernel Patch Note 3

  • Kernel Patch Note 4
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
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