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
    • 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-31694

CVE-2026-31694: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-31694 is a buffer overflow vulnerability in the Linux Kernel FUSE subsystem that allows malicious servers to overflow cache pages. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 7, 2026

CVE-2026-31694 Overview

CVE-2026-31694 is an out-of-bounds write vulnerability in the Linux kernel's Filesystem in Userspace (FUSE) implementation. The flaw resides in fuse_add_dirent_to_cache(), which fails to validate that a serialized directory entry fits within a single page-cache page before copying it. A malicious FUSE server can supply a dirent with namelen=4095, producing a 4120-byte record that overflows a 4 KiB page by 24 bytes into the adjacent kernel page. The vulnerability affects multiple Linux kernel versions, including 7.1-rc1 and 7.1-rc2.

Critical Impact

A local attacker controlling a FUSE server can corrupt adjacent kernel memory, leading to privilege escalation, kernel memory disclosure, or system crash on 4 KiB page systems.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 7.1-rc1
  • Linux Kernel 7.1-rc2

Discovery Timeline

  • 2026-05-01 - CVE-2026-31694 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-31694

Vulnerability Analysis

The vulnerability exists in the FUSE readdir cache code path. The function fuse_add_dirent_to_cache() constructs a serialized dirent whose total size depends on the namelen field controlled by the userspace FUSE server. The existing logic verifies only that the record fits in the remaining space of the current page, advancing to a new page if it does not. It never validates that the record itself fits within PAGE_SIZE.

When a FUSE server returns namelen=4095, the serialized record reaches 4120 bytes. On systems with 4 KiB pages, the subsequent memcpy() writes 24 bytes past the end of the destination page into the next kernel page. The CWE classification is currently listed as NVD-CWE-noinfo, but the defect maps to an out-of-bounds write [CWE-787].

Root Cause

The root cause is missing bounds validation against PAGE_SIZE for server-controlled input. The cache insertion logic trusts the namelen field without asserting that the serialized dirent size cannot exceed a single page.

Attack Vector

Exploitation requires local access and the ability to mount or interact with a FUSE filesystem. An attacker operating a malicious FUSE server crafts directory entries with oversized names. When the kernel populates the readdir cache, the overflow corrupts adjacent kernel memory. Containers and unprivileged user namespaces that permit FUSE mounts widen the exposure.

No public exploit code or proof-of-concept is currently available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. The EPSS score is 0.013%.

Detection Methods for CVE-2026-31694

Indicators of Compromise

  • Unexpected kernel oops, panic, or BUG: messages referencing fuse_add_dirent_to_cache or memcpy in dmesg.
  • KASAN reports indicating slab-out-of-bounds or page-boundary writes originating from FUSE readdir paths.
  • Unprivileged processes mounting FUSE filesystems followed by directory enumeration of attacker-controlled mounts.

Detection Strategies

  • Audit kernel logs for FUSE-related crashes, stack traces, and KASAN diagnostics on hosts running pre-patch kernels.
  • Inventory running kernels against the fixed commits 45c05af3, 474ce83c, 51a8de6c, 7de93abf, and d23ad78b to identify vulnerable systems.
  • Monitor for unusual mount.fuse or fusermount invocations from non-administrative users and containers.

Monitoring Recommendations

  • Forward kernel ring buffer events and audit logs to a centralized SIEM for correlation across the fleet.
  • Alert on creation of FUSE mounts inside unprivileged user namespaces and container workloads.
  • Track process telemetry for binaries that implement FUSE servers running outside expected application paths.

How to Mitigate CVE-2026-31694

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the stable kernel commits once available from your distribution.
  • Restrict FUSE mount privileges by disallowing unprivileged user namespaces from mounting FUSE filesystems where feasible.
  • Identify and patch container hosts and multi-tenant systems first, as they present the broadest local attack surface.

Patch Information

The fix rejects dirents that cannot fit in a single page before copying them into the readdir cache. Patches are available in five stable-tree commits: 45c05af3, 474ce83c, 51a8de6c, 7de93abf, and d23ad78b.

Workarounds

  • Disable the FUSE module (modprobe -r fuse) on systems that do not require user-space filesystems.
  • Set /sys/module/fuse/parameters/userns_mounts or equivalent distribution controls to prohibit FUSE mounts from non-root users.
  • Constrain container runtimes to block the mount syscall and FUSE device access via seccomp and device cgroup policies.
bash
# Configuration example: prevent unprivileged FUSE mounts and block the module
sysctl -w kernel.unprivileged_userns_clone=0
chmod 600 /dev/fuse
echo "install fuse /bin/true" >> /etc/modprobe.d/disable-fuse.conf

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 45c05af3

  • Kernel Git Commit 474ce83c

  • Kernel Git Commit 51a8de6c

  • Kernel Git Commit 7de93abf

  • Kernel Git Commit d23ad78b
  • Related CVEs
  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43051: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31742: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31774: Linux Kernel Buffer Overflow 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