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

CVE-2025-71114: Linux Kernel VIA Watchdog DoS Vulnerability

CVE-2025-71114 is a denial of service flaw in the Linux kernel VIA watchdog driver that causes critical boot hangs due to unnamed resource allocation. This article covers the technical details, affected systems, and mitigation.

Published: January 23, 2026

CVE-2025-71114 Overview

CVE-2025-71114 is a vulnerability in the Linux kernel affecting the VIA watchdog driver (via_wdt). The driver uses allocate_resource() to reserve a MMIO region for the watchdog control register; however, the allocated resource was not assigned a name. This causes the kernel resource tree to contain an entry marked as "<BAD>" under /proc/iomem on x86 platforms. During boot, this unnamed resource can lead to a critical hang because subsequent resource lookups and conflict checks fail to handle the invalid entry properly.

Critical Impact

Systems using the VIA watchdog driver may experience critical boot hangs due to improper resource allocation handling in the kernel, potentially causing system unavailability and denial of service conditions.

Affected Products

  • Linux kernel with VIA watchdog driver (via_wdt) enabled
  • x86 platforms utilizing VIA chipset watchdog functionality

Discovery Timeline

  • 2026-01-14 - CVE-2025-71114 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2025-71114

Vulnerability Analysis

This vulnerability exists in the Linux kernel's VIA watchdog driver implementation. When the driver initializes, it calls allocate_resource() to reserve a memory-mapped I/O (MMIO) region for the watchdog control register. The fundamental issue is that the resource structure passed to this function lacks a proper name assignment.

In the Linux kernel's resource management subsystem, resources displayed in /proc/iomem are expected to have valid names for identification and conflict resolution purposes. When a resource is allocated without a name, the kernel marks it as "<BAD>" in the resource tree. This malformed entry creates problems during subsequent resource operations where the kernel attempts to perform lookups or conflict checks against the resource tree.

The impact is particularly severe during system boot when multiple drivers and subsystems are simultaneously registering and querying resources. The invalid "<BAD>" entry can cause these operations to fail unexpectedly, resulting in a boot hang that leaves the system unresponsive.

Root Cause

The root cause is a missing name assignment for the resource structure used in the allocate_resource() call within the VIA watchdog driver. The driver developer did not set the name field of the resource structure before allocation, leading to an unnamed resource being inserted into the kernel's I/O memory resource tree. This is a straightforward oversight in resource initialization that has severe consequences for system stability.

Attack Vector

This vulnerability is triggered during normal system boot on x86 platforms with VIA chipsets where the watchdog driver is loaded. While not directly exploitable by remote attackers, the vulnerability causes a denial of service condition through system unavailability. Systems configured to automatically load the via_wdt module would be affected whenever the system boots, making this particularly impactful for unattended server environments and embedded systems.

The vulnerability manifests in the resource allocation code path where the driver fails to properly name the MMIO region. The fix involves assigning a descriptive name string to the resource before calling allocate_resource(). See the kernel git commits for the complete patch details.

Detection Methods for CVE-2025-71114

Indicators of Compromise

  • System boot failures or hangs on x86 platforms with VIA chipsets
  • Presence of "<BAD>" entries in /proc/iomem output
  • Kernel log messages indicating resource allocation failures during watchdog driver initialization
  • Systems failing to complete boot sequence when via_wdt module is loaded

Detection Strategies

  • Monitor system boot logs for kernel panics or hangs related to resource allocation
  • Check /proc/iomem for entries marked as "<BAD>" which indicate unnamed resources
  • Review loaded kernel modules for via_wdt on affected systems
  • Implement boot monitoring to detect systems that fail to complete initialization

Monitoring Recommendations

  • Configure kernel logging to capture resource allocation events during boot
  • Set up automated alerts for systems that fail to complete boot sequences
  • Regularly audit /proc/iomem output on systems using VIA hardware
  • Monitor system availability metrics to detect boot-related denial of service conditions

How to Mitigate CVE-2025-71114

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for the VIA watchdog driver
  • If immediate patching is not possible, blacklist the via_wdt module to prevent it from loading during boot
  • Review systems with VIA chipsets for potential exposure to this vulnerability
  • Schedule maintenance windows to apply kernel updates on affected systems

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix properly assigns a name to the resource structure before calling allocate_resource(), ensuring the resource tree contains valid entries.

Multiple kernel stable branches have been patched. Apply the appropriate fix for your kernel version:

  • Kernel Commit c7b986adc9e9
  • Kernel Commit 1d56025a3af5
  • Kernel Commit 47c910965c93
  • Kernel Commit 7aa31ee9ec92
  • Kernel Commit c6a2dd4f2e4e
  • Kernel Commit d2c7c90aca7b
  • Kernel Commit f7b6370d0fbe

Workarounds

  • Blacklist the via_wdt kernel module by adding blacklist via_wdt to /etc/modprobe.d/blacklist.conf
  • Disable watchdog functionality in BIOS/UEFI if the VIA watchdog is not required
  • Use an alternative software watchdog solution that does not rely on the VIA hardware
  • Boot with the modprobe.blacklist=via_wdt kernel parameter as a temporary measure
bash
# Temporary workaround: Blacklist the via_wdt module
echo "blacklist via_wdt" | sudo tee /etc/modprobe.d/blacklist-via-wdt.conf
sudo update-initramfs -u

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23405: Linux Kernel AppArmor DOS Vulnerability

  • CVE-2026-23404: Linux Kernel AppArmor DoS Vulnerability

  • CVE-2026-23398: Linux Kernel ICMP DoS Vulnerability

  • CVE-2026-23312: Linux Kernel Kaweth Driver DoS 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