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
    • 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-23143

CVE-2026-23143: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23143 is a buffer overflow flaw in the Linux kernel's virtio_net driver caused by struct member misalignment. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: February 20, 2026

CVE-2026-23143 Overview

A memory misalignment vulnerability has been identified in the Linux kernel's virtio_net driver within struct virtnet_info. The vulnerability arises from improper handling of flexible array members (FAM) in the virtio_net_rss_config_trailer structure, causing a one-byte misalignment between rss_trailer.hash_key_data (offset 83) and rss_hash_key_data (offset 84). This misalignment results in the RSS key passed to the device being shifted by one byte, potentially exposing uninitialized memory and causing incorrect RSS configuration.

Critical Impact

Memory misalignment in virtio_net driver can cause RSS key data corruption and potential exposure of uninitialized memory bytes in virtualized network environments.

Affected Products

  • Linux kernel with virtio_net driver
  • Virtual machines using virtio network interfaces
  • Systems utilizing RSS (Receive Side Scaling) with virtio networking

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23143 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23143

Vulnerability Analysis

The vulnerability exists in the drivers/net/virtio_net.c file where the struct virtnet_info contains a flexible array member that is improperly positioned relative to other structure members. The compiler warning -Wflex-array-member-not-at-end indicates that a structure containing a flexible array member (hash_key_data[]) is not positioned at the end of the parent structure.

The struct virtio_net_rss_config_trailer contains three members: max_tx_vq (2 bytes at offset 0), hash_key_length (1 byte at offset 2), and hash_key_data[] (flexible array at offset 3). Due to structure padding rules, this structure has a total size of 4 bytes with 1 byte of tail padding.

When embedded in struct virtnet_info at offset 80, the rss_trailer occupies 4 bytes (80-83), but the flexible array hash_key_data starts at offset 83. The subsequent rss_hash_key_data[40] array starts at offset 84, creating a one-byte misalignment. This causes the RSS hash key data to be incorrectly offset, with the last byte being cut off and a potentially uninitialized byte being prepended.

Root Cause

The root cause is the improper placement of a structure containing a flexible array member within a larger structure. The C language standard requires flexible array members to be at the end of structures, and when embedded structures violate this, memory alignment issues occur. The fix introduces the TRAILING_OVERLAP() helper macro to create a union that correctly overlays the trailing members onto the flexible array member while maintaining proper alignment.

Attack Vector

The vulnerability is triggered when the virtio_net driver configures RSS (Receive Side Scaling) settings. The misaligned RSS key data can result in:

  1. Incorrect RSS hash calculations leading to improper packet distribution
  2. Potential information disclosure through exposure of uninitialized memory bytes
  3. Network performance degradation due to incorrect RSS configuration

The vulnerability requires local access to a system running virtualized networking with virtio_net driver and RSS enabled. While exploitation is limited, the memory misalignment could be leveraged in combination with other vulnerabilities to leak kernel memory contents.

Detection Methods for CVE-2026-23143

Indicators of Compromise

  • Unexpected network packet distribution patterns in virtualized environments
  • Kernel warnings related to flexible array member alignment in virtio_net module
  • RSS hash key mismatches between configured and actual values
  • Anomalous memory access patterns in virtio_net driver operations

Detection Strategies

  • Monitor kernel logs for -Wflex-array-member-not-at-end compiler warnings during kernel builds
  • Implement runtime verification of RSS key configuration integrity
  • Use memory debugging tools (KASAN, KMSAN) to detect uninitialized memory access
  • Audit virtio_net driver initialization sequences for alignment anomalies

Monitoring Recommendations

  • Enable kernel memory sanitizers in development and testing environments
  • Monitor virtio_net driver behavior using kernel tracing (ftrace, perf)
  • Implement network traffic analysis to detect abnormal RSS distribution patterns
  • Review system logs for virtio_net related warnings and errors

How to Mitigate CVE-2026-23143

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commits
  • Review virtualized networking configurations for RSS usage
  • Consider temporarily disabling RSS in virtio_net if updates cannot be immediately applied
  • Monitor affected systems for signs of memory-related anomalies

Patch Information

The vulnerability has been resolved through kernel patches that introduce the TRAILING_OVERLAP() helper macro. The fix creates a union between the flexible array member and trailing members, ensuring proper memory alignment. The corrected structure places both rss_trailer and rss_hash_key_data at aligned offsets within struct virtnet_info.

Patch commits are available:

  • Kernel Git Commit 4156c37
  • Kernel Git Commit ae48108

Workarounds

  • Disable RSS functionality in virtio_net configurations where not critical
  • Use alternative network drivers where possible in affected virtual environments
  • Apply kernel patches as soon as available from distribution maintainers
  • Consider using passthrough networking instead of virtio in high-security environments
bash
# Check current kernel version for virtio_net driver
uname -r
modinfo virtio_net | grep -E "(version|filename)"

# Verify RSS configuration status
ethtool -x eth0 2>/dev/null || echo "RSS not configured"

# Monitor for virtio_net related kernel messages
dmesg | grep -i virtio_net

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

  • EPSS Probability0.02%

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

  • Kernel Git Commit Review
  • Related CVEs
  • CVE-2026-23407: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-23323: Linux Kernel Buffer Overflow Vulnerability
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