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-71180

CVE-2025-71180: Linux Kernel Privilege Escalation Flaw

CVE-2025-71180 is a privilege escalation vulnerability in the Linux kernel's counter interrupt-cnt module caused by improper IRQ handler configuration. This article covers technical details, affected systems, and patches.

Published: February 6, 2026

CVE-2025-71180 Overview

A race condition vulnerability exists in the Linux kernel's counter subsystem, specifically within the interrupt-cnt driver. The flaw involves an invalid wait context when the IRQ handler attempts to acquire a spinlock_t while configured with the IRQF_NO_THREAD flag. This creates a lock nesting violation that can lead to system instability or denial of service conditions.

Critical Impact

This vulnerability can cause kernel instability through improper lock acquisition in interrupt context, potentially leading to system crashes or unpredictable behavior on affected Linux systems.

Affected Products

  • Linux kernel versions with the interrupt-cnt counter driver
  • Systems using GPIO-based interrupt counting functionality
  • ARM64 platforms utilizing the affected counter subsystem

Discovery Timeline

  • 2026-01-31 - CVE CVE-2025-71180 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2025-71180

Vulnerability Analysis

The vulnerability stems from an incompatible combination of interrupt handler flags and lock types in the Linux kernel's counter subsystem. When an IRQ handler is registered with the IRQF_NO_THREAD flag, it runs in hard interrupt context. However, the interrupt_cnt_isr function calls counter_push_event, which attempts to acquire counter->events_list_lock - a standard spinlock_t.

Under CONFIG_PROVE_RAW_LOCK_NESTING, the kernel's lock validator detects this as an invalid wait context violation. The kernel reports this as context {2:2} attempting to acquire a lock with context {3:3}, indicating a potential for deadlocks or priority inversion issues.

The call trace reveals the problematic execution path: when a GPIO interrupt triggers gpio_irq_handler, the interrupt propagates through handle_simple_irq to interrupt_cnt_isr, which then calls counter_push_event and attempts the invalid lock acquisition via _raw_spin_lock_irqsave.

Root Cause

The root cause is the architectural conflict between IRQF_NO_THREAD flag semantics and standard spinlock acquisition. IRQ handlers marked with IRQF_NO_THREAD cannot be threaded and run directly in hard interrupt context. In this context, only raw_spinlock_t can be safely acquired, not standard spinlock_t which may sleep on PREEMPT_RT kernels.

The kernel developers chose to remove IRQF_NO_THREAD rather than convert to raw_spinlock_t because using raw spinlocks would propagate constraints to all nested locks in the call chain, creating a broader maintenance burden.

Attack Vector

The vulnerability is triggered through normal system operation when GPIO interrupts are processed by the interrupt-cnt counter driver. The attack vector is local, requiring the presence of hardware or configuration that uses the affected driver. An attacker with local access could potentially trigger rapid interrupt generation to exploit timing windows and cause kernel panics or system instability.

The kernel's lock debugging output shows the specific conditions:

  • Process context: User-space process (PID 1251)
  • CPU: Single CPU (CPU 0)
  • Kernel version: 6.18.0-rc1 with PREEMPT enabled
  • Architecture: ARM64 (el0 exception level traces visible)

Detection Methods for CVE-2025-71180

Indicators of Compromise

  • Kernel log messages containing "BUG: Invalid wait context" errors
  • Stack traces showing counter_push_event in interrupt context
  • System instability or unexpected reboots when using counter/interrupt-cnt functionality
  • Lock validator warnings from CONFIG_PROVE_RAW_LOCK_NESTING

Detection Strategies

  • Enable CONFIG_PROVE_RAW_LOCK_NESTING in kernel configuration to detect lock context violations
  • Monitor kernel logs (dmesg) for lock acquisition warnings related to the counter subsystem
  • Audit loaded kernel modules for interrupt_cnt presence using lsmod
  • Use kernel tracing tools (ftrace) to monitor IRQ handler behavior

Monitoring Recommendations

  • Configure syslog to capture and alert on kernel lock validation warnings
  • Implement automated monitoring for kernel panic or BUG messages in system logs
  • Deploy endpoint detection agents capable of monitoring kernel-level events
  • Regularly review systems using GPIO-based interrupt counting for stability issues

How to Mitigate CVE-2025-71180

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix
  • If immediate patching is not possible, avoid loading the interrupt_cnt kernel module
  • Monitor affected systems for kernel instability symptoms
  • Prioritize patching for systems using GPIO-based counter functionality

Patch Information

The vulnerability has been addressed through multiple commits to the Linux kernel stable branches. The fix removes the IRQF_NO_THREAD flag from the interrupt-cnt driver, allowing the IRQ handler to be threaded and safely acquire standard spinlocks.

Relevant kernel patches are available:

  • Kernel Git Commit 1c5a317
  • Kernel Git Commit 23f9485
  • Kernel Git Commit 425886b
  • Kernel Git Commit 49a6682
  • Kernel Git Commit 51d2e5d
  • Kernel Git Commit ef668c9

Workarounds

  • Unload the interrupt_cnt module if not required: modprobe -r interrupt_cnt
  • Blacklist the module to prevent automatic loading by adding blacklist interrupt_cnt to /etc/modprobe.d/blacklist.conf
  • For systems requiring counter functionality, consider alternative drivers or hardware solutions until patching is completed
  • Apply kernel live patching if supported by your distribution and the patch is available
bash
# Configuration example
# Blacklist the vulnerable module until patching is complete
echo "blacklist interrupt_cnt" >> /etc/modprobe.d/blacklist-cve-2025-71180.conf

# Verify module is not loaded
lsmod | grep interrupt_cnt

# If loaded, remove the module (if not in active use)
modprobe -r interrupt_cnt

# Update initramfs to apply blacklist at boot
update-initramfs -u

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 23f9485

  • Kernel Git Commit 425886b

  • Kernel Git Commit 49a6682

  • Kernel Git Commit 51d2e5d

  • Kernel Git Commit ef668c9
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31443: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31463: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31459: Linux Kernel Privilege Escalation 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