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-2026-22989

CVE-2026-22989: Linux Kernel NFSD DoS Vulnerability

CVE-2026-22989 is a denial of service vulnerability in the Linux kernel's NFSD component that causes server crashes when unlocking filesystems. This article covers the technical details, affected systems, and mitigation strategies.

Published: January 30, 2026

CVE-2026-22989 Overview

A Use After Free vulnerability has been identified in the Linux kernel's NFS daemon (nfsd) subsystem. The flaw exists in the unlock_filesystem administrative interface, where attempting to unlock the filesystem when the nfsd server is not running results in a server crash. This occurs because nfsd4_revoke_states() accesses state structures (such as conf_id_hashtbl) that have already been freed during server shutdown.

Critical Impact

An attacker or administrator with access to the nfsd administrative interface can crash the server by invoking filesystem unlock operations when the NFS daemon is not running, leading to denial of service.

Affected Products

  • Linux kernel (nfsd module)
  • Systems running NFS server with administrative interfaces enabled
  • Linux distributions using affected kernel versions

Discovery Timeline

  • 2026-01-23 - CVE CVE-2026-22989 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-22989

Vulnerability Analysis

This vulnerability represents a classic Use After Free condition in kernel-level code. The issue stems from the NFS daemon's administrative interface not properly validating the server's runtime state before attempting to access internal data structures. When an administrator attempts to unlock a filesystem via the administrative interface while nfsd is not running, the code path through nfsd4_revoke_states() attempts to access memory structures like conf_id_hashtbl that have already been deallocated during server shutdown. This results in accessing freed memory, causing a kernel crash.

The call trace from the kernel crash reveals the execution flow:

  • nfsd4_revoke_states+0x1b4/0x898 accesses freed state structures
  • write_unlock_fs+0x258/0x440 invokes the revoke operation
  • nfsctl_transaction_write+0xb0/0x120 processes the administrative command
  • The crash occurs on ARM64 systems through the standard syscall path

Root Cause

The root cause is a missing state validation check in the write_unlock_fs() function. The code does not verify that the nfsd server is actually running before proceeding to call nfsd4_revoke_states(). Since the state hashtables and related data structures are freed when the server shuts down, any subsequent access to these structures results in a Use After Free condition. The fix requires acquiring nfsd_mutex and verifying the server is still operational before accessing any state structures.

Attack Vector

The attack vector requires administrative access to the nfsd control interface, typically through the /proc/fs/nfsd/ or sysfs interfaces. An attacker with sufficient privileges to interact with these interfaces can trigger the vulnerability by:

  1. Ensuring the nfsd server is stopped or has been shut down
  2. Issuing a filesystem unlock command through the administrative interface
  3. The kernel attempts to access freed memory, causing a crash

The vulnerability is exploitable locally by users with appropriate administrative privileges on the NFS server. The primary impact is denial of service through kernel crash rather than privilege escalation or code execution.

Detection Methods for CVE-2026-22989

Indicators of Compromise

  • Kernel crash logs containing nfsd4_revoke_states in the call trace
  • System instability or unexpected reboots on systems running NFS servers
  • Kernel panic messages referencing the nfsd module during filesystem unlock operations

Detection Strategies

  • Monitor kernel logs for crash signatures involving nfsd4_revoke_states+0x1b4/0x898 or similar offsets
  • Implement audit logging on nfsd administrative interface access (/proc/fs/nfsd/ operations)
  • Deploy kernel crash dump analysis to identify exploitation attempts
  • Use SentinelOne Singularity Platform for real-time kernel-level monitoring and anomaly detection

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture forensic data from crashes
  • Monitor sysfs and procfs writes to nfsd control files
  • Alert on unexpected nfsd service state transitions
  • Track administrative commands executed against NFS daemon interfaces

How to Mitigate CVE-2026-22989

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel stable tree immediately
  • Restrict access to nfsd administrative interfaces to only trusted administrators
  • Consider implementing SELinux or AppArmor policies to limit nfsd control interface access
  • Monitor systems for crash events until patches are deployed

Patch Information

The vulnerability has been addressed in the Linux kernel through commits that add proper mutex locking and server state validation. The fix ensures that nfsd_mutex is acquired and the server's running state is verified before calling nfsd4_revoke_states().

The following kernel git commits contain the fix:

  • Kernel Git Commit Update
  • Kernel Git Commit Fix
  • Kernel Git Commit Modification

Update to a patched kernel version or apply the relevant backport for your distribution.

Workarounds

  • Ensure nfsd is running before performing any filesystem unlock operations via administrative interfaces
  • Implement access controls to prevent unauthorized access to /proc/fs/nfsd/ control files
  • Use administrative scripts that verify nfsd server state before issuing unlock commands
  • Consider disabling the administrative interface entirely if not required in your environment

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.02%

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

  • Kernel Git Commit Fix

  • Kernel Git Commit Modification
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 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