A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-45252

CVE-2026-45252: FreeBSD fusefs Information Disclosure

CVE-2026-45252 is an information disclosure flaw in FreeBSD fusefs that allows malicious daemons to read kernel heap memory or inject attacker-controlled bytes. This article covers technical details, impact, and mitigation.

Published: May 21, 2026

CVE-2026-45252 Overview

CVE-2026-45252 is a heap buffer overflow [CWE-122] in the FreeBSD fusefs kernel module. The vulnerability affects the handling of FUSE_LISTXATTR responses returned by a userspace FUSE daemon. The FUSE protocol requires the daemon to return a packed list of NUL-terminated strings representing extended attribute names. The fusefs kernel module calls strlen() on the daemon-supplied buffer without verifying that the list is properly NUL-terminated.

A malicious FUSE daemon can supply a non-terminated buffer, causing the kernel to read past one heap-allocated buffer and write past a second. The flaw enables disclosure of up to 253 bytes of kernel heap memory or injection of up to 250 attacker-controlled bytes into unallocated kernel heap space.

Critical Impact

A malicious userspace FUSE daemon can read kernel heap memory or corrupt adjacent kernel heap regions, enabling information disclosure and potential local privilege escalation.

Affected Products

  • FreeBSD operating system with the fusefs kernel module enabled
  • Systems mounting fusefs file systems backed by untrusted userspace daemons
  • Refer to the FreeBSD Security Advisory for specific affected releases

Discovery Timeline

  • 2026-05-21 - CVE-2026-45252 published to NVD
  • 2026-05-21 - Last updated in NVD database

Technical Details for CVE-2026-45252

Vulnerability Analysis

The FUSE (Filesystem in Userspace) protocol routes file system operations from the kernel to a userspace daemon. When a process queries extended attributes on a fusefs-backed file, the kernel sends a FUSE_LISTXATTR request and expects a packed buffer of NUL-terminated attribute names in response.

The fusefs kernel module iterates through the returned buffer using strlen() to compute the length of each entry. The module does not validate that the buffer ends with a NUL byte before calling strlen(). If the daemon omits the final NUL, strlen() reads past the end of the source heap buffer until it encounters an arbitrary NUL in adjacent kernel memory.

The over-read length is then used to copy data into a second destination buffer, allowing up to 253 bytes of out-of-bounds read and up to 250 bytes of out-of-bounds write into unallocated kernel heap space.

Root Cause

The root cause is missing input validation on data crossing the userspace-kernel trust boundary. The fusefs module trusts the daemon-supplied length and content of the FUSE_LISTXATTR reply without confirming the terminal NUL byte before invoking string-handling routines.

Attack Vector

An attacker must control a userspace FUSE daemon serving a mounted fusefs file system. On systems where unprivileged users can mount fusefs file systems, a local user can exploit the flaw by registering a malicious daemon and triggering an listxattr syscall against a file in the mount. The daemon returns a crafted non-NUL-terminated buffer to leak kernel heap memory or corrupt adjacent allocations.

The vulnerability manifests in the FUSE_LISTXATTR reply path. See the FreeBSD Security Advisory for low-level technical details.

Detection Methods for CVE-2026-45252

Indicators of Compromise

  • Unexpected fusefs mounts originating from non-administrative users or unfamiliar daemon binaries
  • Kernel panics, page faults, or memory corruption traces referencing fuse_vnop_listextattr or related fusefs symbols
  • Processes invoking listxattr, flistxattr, or extattr_list_file against paths within fusefs mounts shortly after a new mount event

Detection Strategies

  • Audit mount and nmount syscalls for fusefs file system types and correlate with the invoking user identity
  • Monitor /dev/fuse open events and the parent processes acting as FUSE daemons
  • Inspect kernel crash dumps for heap corruption signatures within the fusefs module call path

Monitoring Recommendations

  • Forward FreeBSD auditd and kernel log telemetry to a centralized analytics pipeline for correlation of mount events with subsequent extended-attribute queries
  • Alert on vfs.usermount sysctl changes that would permit unprivileged users to mount fusefs file systems
  • Track installation or execution of unsigned FUSE daemon binaries on production hosts

How to Mitigate CVE-2026-45252

Immediate Actions Required

  • Apply the patch published in the FreeBSD Security Advisory FreeBSD-SA-26:20.fusefs and reboot affected hosts
  • Set vfs.usermount=0 to prevent unprivileged users from mounting fusefs file systems until patched
  • Inventory hosts running fusefs and validate the trust level of every userspace FUSE daemon in use

Patch Information

FreeBSD has issued an official patch through advisory FreeBSD-SA-26:20.fusefs. The fix validates that the daemon-supplied FUSE_LISTXATTR buffer is properly NUL-terminated before invoking strlen(). Administrators should apply the kernel update using freebsd-update or rebuild and install the patched kernel from source.

Workarounds

  • Disable the fuse kernel module with kldunload fuse on hosts that do not require fusefs functionality
  • Restrict fusefs mounts to administrator-controlled daemons by setting vfs.usermount=0 in /etc/sysctl.conf
  • Remove or restrict execute permissions on third-party FUSE daemon binaries until the patch is deployed
bash
# Configuration example
# Disable unprivileged user mounts
sysctl vfs.usermount=0
echo 'vfs.usermount=0' >> /etc/sysctl.conf

# Unload fusefs kernel module if not required
kldunload fuse

# Apply FreeBSD security updates
freebsd-update fetch
freebsd-update install
shutdown -r now

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-122
  • Technical References
  • FreeBSD Security Advisory
  • Related CVEs
  • CVE-2026-31632: Linux Kernel Information Disclosure Flaw

  • CVE-2026-31461: Linux Kernel Information Disclosure

  • CVE-2026-23418: Linux Kernel Information Disclosure Flaw

  • CVE-2025-59105: Flash Memory Information Disclosure Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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