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

CVE-2026-33150: Libfuse Use-After-Free Vulnerability

CVE-2026-33150 is a use-after-free flaw in Libfuse's io_uring subsystem that enables local attackers to crash filesystem processes or execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33150 Overview

CVE-2026-33150 is a use-after-free vulnerability affecting libfuse, the reference implementation of the Linux FUSE (Filesystem in Userspace) interface. The vulnerability exists in the io_uring subsystem of libfuse versions 3.18.0 through 3.18.1, allowing local attackers to crash FUSE filesystem processes and potentially achieve arbitrary code execution.

When io_uring thread creation fails due to resource exhaustion conditions—such as cgroup pids.max limits being reached—the fuse_uring_start() function frees the ring pool structure but incorrectly stores a dangling pointer in the session state. This dangling pointer is subsequently accessed when the FUSE session shuts down, triggering the use-after-free condition.

Critical Impact

Local attackers can exploit this vulnerability to crash FUSE filesystem processes and potentially execute arbitrary code. The trigger is particularly reliable in containerized environments where cgroup pids.max limits naturally constrain thread creation.

Affected Products

  • libfuse versions 3.18.0 to 3.18.1

Discovery Timeline

  • 2026-03-20 - CVE-2026-33150 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-33150

Vulnerability Analysis

This use-after-free vulnerability (CWE-416) occurs within the io_uring subsystem of libfuse. The io_uring interface is a high-performance asynchronous I/O mechanism in Linux, and libfuse leverages this for improved filesystem operation throughput. The vulnerability emerges during error handling when io_uring thread creation fails.

The flaw is particularly impactful in containerized environments where resource constraints are common. Container orchestration platforms frequently impose pids.max cgroup limits to prevent fork bombs and resource exhaustion attacks. These legitimate security controls inadvertently create the exact conditions needed to trigger this vulnerability reliably.

When exploited, an attacker with local access can cause denial of service by crashing FUSE-mounted filesystems. More critically, the use-after-free condition opens the door to arbitrary code execution if the attacker can control the memory contents at the freed location before the dangling pointer is dereferenced.

Root Cause

The root cause lies in improper memory management during error handling in the fuse_uring_start() function. When io_uring thread creation fails due to resource exhaustion, the function correctly frees the allocated ring pool structure. However, it fails to clear or nullify the pointer stored in the session state, leaving a dangling reference. During session shutdown, the cleanup code attempts to access this already-freed memory, resulting in the use-after-free condition.

Attack Vector

The attack vector is local, requiring an attacker to have local access to the system running a vulnerable version of libfuse. The exploitation process involves:

  1. Identifying a system using libfuse versions 3.18.0 or 3.18.1 with io_uring enabled
  2. Triggering resource exhaustion conditions, particularly by manipulating cgroup pids.max limits in containerized environments
  3. Causing the fuse_uring_start() function to fail during thread creation
  4. Waiting for or triggering a FUSE session shutdown to access the dangling pointer
  5. Potentially controlling freed memory contents for code execution

The vulnerability is especially concerning in multi-tenant container environments where attackers may have limited access to manipulate their own cgroup constraints while affecting shared FUSE filesystems.

Detection Methods for CVE-2026-33150

Indicators of Compromise

  • Unexpected FUSE filesystem process crashes, particularly during shutdown operations
  • Segmentation faults or memory corruption errors in FUSE-related processes
  • Log entries indicating io_uring thread creation failures followed by process termination
  • Anomalous memory access patterns in FUSE daemon processes

Detection Strategies

  • Monitor for FUSE process crashes with memory corruption signatures in system logs
  • Implement runtime memory debugging tools (AddressSanitizer, Valgrind) in development and testing environments to detect use-after-free conditions
  • Track cgroup pids.max limit violations that may indicate exploitation attempts
  • Deploy endpoint detection solutions capable of identifying memory corruption exploitation patterns

Monitoring Recommendations

  • Enable core dump collection for FUSE processes to facilitate forensic analysis
  • Configure alerting for repeated FUSE daemon restarts or unexpected terminations
  • Monitor container orchestration logs for unusual cgroup limit interactions
  • Implement process monitoring for FUSE-related binaries to detect anomalous behavior patterns

How to Mitigate CVE-2026-33150

Immediate Actions Required

  • Upgrade libfuse to version 3.18.2 or later immediately
  • Audit systems for vulnerable libfuse versions (3.18.0 through 3.18.1)
  • Prioritize patching containerized environments where the vulnerability is most easily triggered
  • Review and restrict local access to systems running critical FUSE filesystems

Patch Information

The libfuse project has released version 3.18.2 which addresses this vulnerability. The fix ensures proper pointer management when io_uring thread creation fails, preventing the dangling pointer condition.

For detailed patch information, refer to the following resources:

  • GitHub Security Advisory GHSA-qxv7-xrc2-qmfx
  • GitHub Commit 49fcd891a58f622c098e2ca67d66086f7b213836
  • libfuse 3.18.2 Release

Workarounds

  • If immediate patching is not possible, consider disabling io_uring support in libfuse configurations where feasible
  • Implement additional cgroup monitoring to detect and alert on pids.max limit violations
  • Restrict local access to systems running vulnerable libfuse versions
  • In containerized environments, carefully review and adjust pids.max limits to balance security controls with operational stability
bash
# Verify libfuse version and upgrade
# Check current version
fusermount3 --version

# On Debian/Ubuntu systems, update to patched version
sudo apt update && sudo apt install libfuse3-3

# On RHEL/CentOS/Fedora systems
sudo dnf update fuse3-libs

# Verify upgrade was successful
fusermount3 --version

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLibfuse

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • 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
  • CWE-416
  • Technical References
  • GitHub Release Fuse 3.18.2
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-qxv7-xrc2-qmfx
  • Related CVEs
  • CVE-2026-33179: libfuse 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