The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-23057

CVE-2026-23057: Linux Kernel Information Disclosure Flaw

CVE-2026-23057 is an information disclosure vulnerability in the Linux kernel vsock/virtio component that exposes uninitialized memory. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 6, 2026

CVE-2026-23057 Overview

A vulnerability has been discovered in the Linux kernel's vsock/virtio subsystem related to improper buffer coalescing in the receive queue. The vsock/virtio component attempts to coalesce buffers in the rx queue by joining a linear skb (with spare tail room) with a subsequent small skb. However, since the introduction of MSG_ZEROCOPY support, the assumption that small skbs will always be linear is no longer valid.

In the zerocopy case, when non-linear skbs are incorrectly coalesced, data is lost and the linear skb is appended with uninitialized kernel memory, potentially leading to information disclosure.

Critical Impact

Uninitialized kernel memory exposure through improper buffer coalescing in vsock/virtio loopback-transport, potentially allowing information leakage from kernel space.

Affected Products

  • Linux kernel with vsock/virtio loopback-transport enabled
  • Systems utilizing MSG_ZEROCOPY with virtio-based vsock transports
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23057 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23057

Vulnerability Analysis

The vulnerability resides in the vsock/virtio common code that handles buffer coalescing within the receive queue. The coalescing logic operates under the assumption that when a linear skb with spare tail room is followed by a small skb (with length limited by GOOD_COPY_LEN = 128), the small skb will always be linear. This assumption was valid prior to MSG_ZEROCOPY support being introduced.

With MSG_ZEROCOPY enabled, non-linear skbs can now appear in positions where linear skbs were previously expected. When the coalescing logic encounters this scenario, it fails to properly handle the non-linear skb data, resulting in data loss from the original skb and appending uninitialized kernel memory to the linear skb instead.

Of the three supported virtio-based transports, only loopback-transport is affected. G2H virtio-transport is safe because its rx queue operates on explicitly linear skbs via virtio_vsock_alloc_linear_skb() in virtio_vsock_rx_fill(). H2G vhost-transport may allocate non-linear skbs, but only for sizes exceeding coalescence thresholds as determined by PAGE_ALLOC_COSTLY_ORDER in virtio_vsock_alloc_skb().

Root Cause

The root cause is a missing linearity check in the buffer coalescing logic. The code assumed all small skbs eligible for coalescing would be linear, but MSG_ZEROCOPY support introduced the possibility of small non-linear skbs. The fix ensures that only linear skbs are coalesced by verifying that skb_tailroom(last_skb) > 0, which guarantees the skb is linear before attempting coalescing operations.

Attack Vector

An attacker could potentially exploit this vulnerability through local access to a system with vsock/virtio loopback-transport enabled. By crafting specific MSG_ZEROCOPY operations, an attacker might trigger the improper coalescing behavior, potentially causing uninitialized kernel memory to be exposed to userspace. This could lead to information disclosure of sensitive kernel data.

The vulnerability requires local access and the ability to interact with vsock interfaces using zerocopy messaging. Systems using vsock/virtio for inter-VM communication in virtualized environments may be at particular risk if loopback-transport is utilized.

Detection Methods for CVE-2026-23057

Indicators of Compromise

  • Unexpected behavior or data corruption in vsock/virtio communications
  • Memory disclosure patterns in network traffic involving vsock interfaces
  • Kernel log messages related to skb handling anomalies in virtio_vsock modules
  • Applications using MSG_ZEROCOPY with vsock experiencing data integrity issues

Detection Strategies

  • Monitor kernel logs for warnings or errors related to vsock/virtio buffer handling
  • Implement memory sanitization checks to detect potential uninitialized memory access
  • Deploy kernel-level monitoring for anomalous skb coalescing patterns
  • Use SentinelOne's kernel-level visibility to detect exploitation attempts targeting vsock subsystems

Monitoring Recommendations

  • Enable kernel auditing for vsock-related system calls and operations
  • Configure SentinelOne agents to monitor for suspicious vsock/virtio activity patterns
  • Track usage of MSG_ZEROCOPY flag in applications interacting with vsock interfaces
  • Monitor for unexpected memory access patterns that may indicate kernel information leakage

How to Mitigate CVE-2026-23057

Immediate Actions Required

  • Review systems for vsock/virtio loopback-transport usage and assess exposure
  • Apply the kernel patches from the official Linux kernel git repository
  • Consider disabling MSG_ZEROCOPY support if not required until patches are applied
  • Restrict local access to vsock interfaces on affected systems

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix ensures that only linear skbs are coalesced by adding proper linearity verification. The patches are available through the official kernel git repository:

  • Kernel Git Commit Update
  • Kernel Git Commit Fix
  • Kernel Git Commit Change

Update to a kernel version containing these commits to fully remediate the vulnerability.

Workarounds

  • Disable vsock/virtio loopback-transport if not required for operations
  • Avoid using MSG_ZEROCOPY flag with vsock interfaces on unpatched systems
  • Implement network segmentation to limit exposure of vsock interfaces
  • Apply kernel hardening measures to reduce the impact of potential memory disclosure
bash
# Check if vsock modules are loaded
lsmod | grep vsock

# Temporarily disable vsock modules if not required (requires root)
modprobe -r vmw_vsock_virtio_transport
modprobe -r vsock_loopback

# Verify current kernel version
uname -r

# Check for available kernel updates on Debian/Ubuntu
apt update && apt list --upgradable | grep linux

# Check for available kernel updates on RHEL/CentOS
yum check-update kernel

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Fix

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-23430: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23465: Linux Kernel Btrfs Logging Vulnerability

  • CVE-2026-23421: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw
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