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

CVE-2025-38089: Linux Kernel sunrpc DOS Vulnerability

CVE-2025-38089 is a denial of service flaw in Linux Kernel's sunrpc that allows remote attackers to trigger system crashes via crafted packets. This article covers technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2025-38089 Overview

A null pointer dereference vulnerability has been identified in the Linux kernel's sunrpc subsystem that can lead to a remotely-triggerable kernel crash. The vulnerability exists in the SVC authentication processing code, where specially crafted RPC packets can cause the server to dereference an uninitialized rq_accept_statp pointer, resulting in a kernel crash or potential memory corruption.

Critical Impact

Remote attackers can crash Linux systems running NFS services by sending specially crafted RPC packets, causing denial of service conditions.

Affected Products

  • Linux Kernel versions 6.4 through 6.4-rc7
  • Linux Kernel versions up to 6.16-rc2
  • Linux Kernel (multiple version ranges as per vendor advisories)

Discovery Timeline

  • June 30, 2025 - CVE-2025-38089 published to NVD
  • November 19, 2025 - Last updated in NVD database

Technical Details for CVE-2025-38089

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference), a type of memory corruption flaw that occurs when the kernel attempts to use a pointer that has not been properly initialized. The issue resides in the Linux kernel's sunrpc implementation, which provides the foundation for NFS (Network File System) services.

When the kernel RPC server receives a specially crafted packet that causes RPC reply decoding to fail, the code path may return SVC_GARBAGE without properly setting the rq_accept_statp pointer. Subsequent code then attempts to dereference this pointer and store a value at that memory location. If this is the first RPC processed by the thread, the pointer remains NULL, causing an immediate kernel panic. In other scenarios where the pointer contains stale data from previous operations, this could lead to memory corruption ("memory scribble") with unpredictable consequences.

Root Cause

The root cause lies in improper error handling within the sunrpc authentication processing code. The server incorrectly treats a SVC_GARBAGE return from svc_authenticate or pg_authenticate as a signal to send a GARBAGE_ARGS reply, which requires access to the rpc_accept_statp pointer. According to RFC 5531, authentication failures should instead result in RPC rejection with an AUTH_ERR status, which would not require accessing the problematic pointer.

The fix addresses this by handling SVC_GARBAGE returns as AUTH_ERROR with a reason of AUTH_BADCRED instead of attempting to return GARBAGE_ARGS. This approach follows the RFC specification and completely avoids the code path that dereferences the potentially uninitialized pointer.

Attack Vector

The attack vector is local, requiring access to send network packets to the vulnerable system. An attacker with network access to a Linux system running NFS or other sunrpc-based services can craft malicious RPC packets designed to trigger the vulnerable code path. The attack does not require authentication, making it accessible to any network-adjacent attacker who can reach the RPC service ports.

The vulnerability was reported by security researcher tianshuo han, and a proof-of-concept repository named "NFSundown" has been published on GitHub demonstrating the exploitation technique.

Detection Methods for CVE-2025-38089

Indicators of Compromise

  • Unexpected kernel panics or system crashes on NFS servers
  • Kernel oops messages referencing sunrpc or NULL pointer dereference in svc_authenticate code paths
  • Unusual or malformed RPC traffic targeting NFS services (typically port 2049 and RPC portmapper)
  • System logs showing repeated RPC authentication failures followed by crashes

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors related to sunrpc subsystem
  • Implement network intrusion detection rules to identify malformed RPC packets
  • Deploy endpoint detection tools to alert on unexpected kernel crashes involving NFS services
  • Use SentinelOne's kernel-level monitoring to detect exploitation attempts targeting sunrpc

Monitoring Recommendations

  • Enable detailed logging for NFS and sunrpc services
  • Monitor system stability metrics for servers running NFS services
  • Implement network traffic analysis for anomalous RPC protocol behavior
  • Set up alerts for multiple authentication failures from single source IPs

How to Mitigate CVE-2025-38089

Immediate Actions Required

  • Update affected Linux kernels to patched versions immediately
  • Consider temporarily disabling NFS services on critical systems until patches are applied
  • Implement network segmentation to limit exposure of NFS services
  • Monitor for exploitation attempts using the detection strategies outlined above

Patch Information

The Linux kernel development team has released patches addressing this vulnerability across multiple stable kernel branches. The fix modifies the sunrpc authentication handling to treat SVC_GARBAGE returns as authentication errors rather than attempting to send garbage arguments responses.

Official patches are available from the following kernel git commits:

  • Kernel Git Commit 353e75b
  • Kernel Git Commit 599c489
  • Kernel Git Commit 94d10a4
  • Kernel Git Commit c90459c

Additional security discussion is available on the Openwall OSS Security mailing list.

Workarounds

  • Restrict network access to NFS services using firewall rules to trusted IP ranges only
  • Disable NFS services on systems where they are not required
  • Implement iptables or nftables rules to rate-limit incoming RPC connections
  • Consider using TCP wrappers to add additional access controls to RPC services
bash
# Configuration example - Restrict NFS access with iptables
iptables -A INPUT -p tcp --dport 2049 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 2049 -j DROP
iptables -A INPUT -p udp --dport 2049 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p udp --dport 2049 -j DROP

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

  • 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-476
  • Technical References
  • Openwall OSS Security Update

  • Openwall OSS Security Discussion
  • Vendor Resources
  • Kernel Git Commit 353e75b

  • Kernel Git Commit 599c489

  • Kernel Git Commit 94d10a4

  • Kernel Git Commit c90459c

  • GitHub NFSundown Project
  • 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