Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-68751

CVE-2025-68751: Linux Kernel Use-After-Free Vulnerability

CVE-2025-68751 is a use-after-free vulnerability in the Linux kernel s390/fpu component that causes false-positive kmsan reports. This article covers the technical details, affected versions, security impact, and mitigation steps.

Updated: January 22, 2026

CVE-2025-68751 Overview

CVE-2025-68751 is a vulnerability in the Linux kernel affecting the s390 architecture's floating-point unit (FPU) code. The issue involves a false-positive Kernel Memory Sanitizer (KMSAN) report triggered in the fpu_vstl() function when running network operations such as the ping command. This vulnerability stems from a mismatch between compile-time inline assembly constraints and runtime behavior of the vstl instruction, which writes a variable number of bytes depending on the index argument.

The clang compiler generates KMSAN write helper calls based on inline assembly constraints evaluated at compile time. However, since the actual number of bytes written by vstl is determined at runtime, clang incorrectly generates a call to __msan_instrument_asm_store with only 1 byte as the size, leading to false-positive uninitialized memory reports.

Critical Impact

False-positive KMSAN reports can mask real memory safety issues and cause system instability or crashes during network operations on s390 systems running with KMSAN enabled.

Affected Products

  • Linux kernel with s390 architecture support
  • Systems running KMSAN-enabled kernels on IBM z/Architecture hardware
  • Linux kernel versions prior to the fix commits

Discovery Timeline

  • 2026-01-05 - CVE CVE-2025-68751 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2025-68751

Vulnerability Analysis

The vulnerability resides in the s390 FPU subsystem, specifically in the fpu_vstl() function which utilizes the vstl (Vector Store with Length) inline assembly instruction. This instruction is designed to write a variable number of bytes to memory based on a runtime-determined index argument. When index is greater than 0, the instruction writes at least 2 bytes to the destination.

The root of the problem lies in how the clang compiler handles KMSAN instrumentation for inline assembly. The compiler generates memory sanitizer helper calls based on constraints that are evaluated at compile time, but the actual byte count written by vstl depends on the runtime value of the index parameter. This disconnect causes clang to generate a call to __msan_instrument_asm_store specifying only 1 byte as the write size, regardless of the actual bytes written.

This mismatch triggers false-positive KMSAN "uninit-value" reports during legitimate network operations. The kernel logs show the issue manifesting in the virtqueue_add() function within the virtio subsystem during packet transmission, causing spurious warnings that can obscure genuine memory safety issues.

Root Cause

The root cause is the compile-time evaluation of inline assembly constraints by clang when generating KMSAN instrumentation code. The vstl instruction's variable-length write behavior cannot be accurately represented through static constraints, leading to incorrect memory sanitizer annotations. The fix manually invokes the KMSAN function with the correct byte count calculated at runtime, ensuring accurate memory tracking.

Attack Vector

This vulnerability does not represent a direct security exploit vector. Instead, it causes false-positive memory sanitizer reports that can:

  1. Generate excessive kernel log noise during normal network operations
  2. Potentially mask legitimate uninitialized memory access bugs
  3. Cause confusion during security audits and debugging sessions
  4. Impact system stability on KMSAN-enabled development or testing kernels

The issue is triggered during standard network operations such as ICMP ping requests, where the affected code path is exercised through the virtio network stack on s390 virtualized environments.

Detection Methods for CVE-2025-68751

Indicators of Compromise

  • KMSAN "BUG: KMSAN: uninit-value" reports in kernel logs referencing virtqueue_add() during network operations
  • Stack traces showing the path through start_xmit, dev_hard_start_xmit, and network transmission functions on s390 systems
  • False-positive reports triggered specifically when running ping or other ICMP operations on affected kernels

Detection Strategies

  • Monitor kernel logs for KMSAN reports containing the virtqueue_add+0x35c6/0x7c70 signature or similar addresses in the virtio subsystem
  • Check for stack traces including fpu_vstl() or s390 FPU-related functions in KMSAN reports
  • Audit systems running Linux kernels on IBM z/Architecture with KMSAN enabled for spurious uninitialized memory warnings

Monitoring Recommendations

  • Enable kernel log monitoring for KMSAN warnings on s390 development and testing systems
  • Review kernel version and compare against patched releases referenced in the fix commits
  • Track network-related KMSAN reports to distinguish between this false-positive and genuine memory safety issues

How to Mitigate CVE-2025-68751

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commits for s390 FPU KMSAN instrumentation
  • Review recent KMSAN reports on affected systems to identify any that may have been incorrectly flagged
  • Prioritize patching on development and testing environments where KMSAN is actively used

Patch Information

The vulnerability has been resolved through multiple kernel commits that manually invoke the KMSAN function with the correct byte count for the vstl instruction. The following commits address this issue:

  • Linux Kernel Commit 13dcd630
  • Linux Kernel Commit 14e4e417
  • Linux Kernel Commit 946357a5

System administrators should apply the appropriate patch based on their kernel version branch.

Workarounds

  • Temporarily disable KMSAN on affected s390 systems if immediate patching is not feasible
  • Filter or suppress KMSAN reports matching the known false-positive signature in virtqueue_add() until the patch can be applied
  • Consider using production kernels without KMSAN instrumentation, as KMSAN is typically intended for development and testing environments

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 13dcd630

  • Linux Kernel Commit 14e4e417

  • Linux Kernel Commit 946357a5
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31469: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31457: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31444: Linux Kernel Use-After-Free Vulnerability
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