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-2025-21690

CVE-2025-21690: Linux Kernel StorVSC DoS Vulnerability

CVE-2025-21690 is a denial of service vulnerability in the Linux Kernel StorVSC driver that can flood kernel logs and max out CPU utilization. This article covers the technical details, affected versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-21690 Overview

CVE-2025-21690 is a Denial of Service vulnerability in the Linux kernel's storvsc SCSI driver. The vulnerability exists due to improper resource allocation without limits (CWE-770) in the logging mechanism of the storvsc driver, which handles SCSI operations for Hyper-V virtual machines. When a persistent error occurs in the hypervisor, the SCSI warning messages for failed I/O operations can flood the kernel log and consume excessive CPU resources, effectively preventing administrators from troubleshooting the virtual machine.

Critical Impact

Local attackers with low privileges can trigger excessive kernel log messages that max out CPU utilization, causing denial of service and preventing VM troubleshooting capabilities.

Affected Products

  • Linux Kernel versions prior to patched releases
  • Linux Kernel 6.13 (including release candidates rc1 through rc7)
  • Hyper-V virtual machines running affected kernel versions

Discovery Timeline

  • February 10, 2025 - CVE-2025-21690 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-21690

Vulnerability Analysis

The vulnerability resides in the storvsc driver, which is responsible for handling SCSI storage operations in Linux virtual machines running on Microsoft Hyper-V. When the hypervisor encounters a persistent error condition, the driver generates warning messages for each failed I/O operation. Without rate limiting on these warning logs, a sustained error condition causes the kernel to generate log messages at an extremely high rate.

This unconstrained logging behavior leads to two significant problems: first, the kernel log buffer fills rapidly with repetitive warning messages, making it impossible to identify and troubleshoot the root cause of issues; second, the CPU cycles consumed by the logging operations can reach levels that effectively render the virtual machine unresponsive.

Root Cause

The root cause of this vulnerability is the absence of rate limiting on SCSI warning log messages in the storvsc driver. The driver was designed to output warning messages for failed I/O operations, which is useful for debugging under normal circumstances. However, the implementation did not account for scenarios where persistent hypervisor errors could generate a continuous stream of failed I/O operations, each triggering a new warning message without any throttling mechanism.

This represents a CWE-770 (Allocation of Resources Without Limits or Throttling) vulnerability, where the logging subsystem allocates resources (CPU time, log buffer space) without appropriate constraints.

Attack Vector

The attack vector is local, requiring an attacker to have low-privilege access to the affected virtual machine. An attacker could potentially trigger this condition by:

  1. Inducing persistent I/O errors through malformed storage requests
  2. Exploiting conditions that cause the hypervisor to report continuous storage failures
  3. Creating scenarios where the storvsc driver enters a failure loop

The fix implements rate limiting on the warning messages using the kernel's printk_ratelimit() mechanism or similar rate-limiting functionality, ensuring that even during persistent error conditions, the logging does not consume excessive system resources.

Detection Methods for CVE-2025-21690

Indicators of Compromise

  • Excessive SCSI-related warning messages in /var/log/kern.log or dmesg output
  • Unusually high CPU utilization attributed to kernel logging operations
  • Virtual machine becoming unresponsive or sluggish during storage error conditions
  • Log files growing rapidly with repetitive storvsc driver warnings

Detection Strategies

  • Monitor kernel log message rates for storvsc driver entries using log aggregation tools
  • Configure alerts for sudden spikes in kernel message volume from storage subsystems
  • Implement system monitoring to detect abnormal CPU usage patterns in kernel space
  • Use SentinelOne's Linux agent to detect anomalous system behavior indicative of DoS conditions

Monitoring Recommendations

  • Enable centralized logging with rate-based anomaly detection for kernel messages
  • Set up monitoring thresholds for CPU utilization that could indicate log flooding
  • Review storvsc driver activity in Hyper-V environments during routine security audits
  • Deploy endpoint detection solutions capable of identifying resource exhaustion attacks

How to Mitigate CVE-2025-21690

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the rate-limiting fix
  • For Debian-based systems, review the Debian LTS Announcement for available patches
  • Consider temporarily reducing log verbosity for storvsc driver if immediate patching is not possible
  • Monitor affected systems for signs of exploitation until patches are applied

Patch Information

The Linux kernel maintainers have released patches across multiple stable kernel branches. The fix implements rate limiting on the warning messages to prevent the denial of service condition. The following kernel commits contain the fix:

  • Kernel Git Commit 01d1ebda
  • Kernel Git Commit 088bde86
  • Kernel Git Commit 182a4b7c
  • Kernel Git Commit 81d4dd05
  • Kernel Git Commit d0f0af1b
  • Kernel Git Commit d2138eab

Workarounds

  • Implement external log rate limiting using syslog configuration (e.g., rsyslog rate limiting)
  • Configure log rotation with aggressive retention policies to prevent disk exhaustion
  • Use kernel boot parameters to reduce overall kernel log verbosity as a temporary measure
  • Isolate affected VMs and monitor closely until patching is completed
bash
# Example rsyslog rate limiting configuration
# Add to /etc/rsyslog.conf to limit kernel message rates
$SystemLogRateLimitInterval 5
$SystemLogRateLimitBurst 500

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit 01d1ebda

  • Kernel Git Commit 088bde86

  • Kernel Git Commit 182a4b7c

  • Kernel Git Commit 81d4dd05

  • Kernel Git Commit d0f0af1b

  • Kernel Git Commit d2138eab
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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