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-2025-67364

CVE-2025-67364: fast-filesystem-mcp Path Traversal Flaw

CVE-2025-67364 is a path traversal vulnerability in fast-filesystem-mcp version 3.4.0 that allows attackers to bypass directory restrictions via symlinks. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-67364 Overview

CVE-2025-67364 is a path traversal vulnerability affecting fast-filesystem-mcp version 3.4.0. The vulnerability exists in file operation tools including fast_read_file and stems from improper path validation that fails to properly resolve symbolic links to their actual physical paths. This security flaw allows attackers to bypass directory access restrictions and gain unauthorized access to sensitive files on the system.

Critical Impact

Attackers can bypass directory access controls by exploiting symlink resolution weaknesses, potentially accessing sensitive system files, configuration data, and credentials outside allowed directories.

Affected Products

  • fast-filesystem-mcp version 3.4.0

Discovery Timeline

  • 2026-01-07 - CVE CVE-2025-67364 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2025-67364

Vulnerability Analysis

This path traversal vulnerability (CWE-24) exists in the path validation logic of fast-filesystem-mcp. The core issue lies in how the safePath and isPathAllowed functions handle path resolution. These functions rely on path.resolve() to normalize and validate file paths before granting access, but this approach fails to account for symbolic links.

When a symbolic link is created within an allowed directory that points to a restricted system path, the validation functions only verify that the symlink's location is within the permitted directory tree. They do not follow the symlink to verify that the actual target file or directory is also within allowed boundaries. This creates a security gap where the path validation is performed on the link itself rather than on the final resolved destination.

The attack is network-accessible without requiring authentication or user interaction, and successful exploitation results in unauthorized file disclosure from restricted paths.

Root Cause

The root cause is the use of path.resolve() for path validation without subsequently calling fs.realpathSync() or equivalent to resolve symbolic links to their actual physical paths. The path.resolve() function only performs string-based path normalization (removing . and .. segments, converting to absolute paths) but does not interact with the filesystem to follow symlinks. This means a validated path like /allowed/dir/link may actually point to /etc/passwd or other sensitive locations.

Attack Vector

An attacker with the ability to create files or symbolic links within an allowed directory can exploit this vulnerability by:

  1. Creating a symbolic link inside an allowed directory that points to a restricted system path (e.g., /etc/passwd, /etc/shadow, or application configuration files)
  2. Using the fast_read_file tool or similar file operation functions to access the symlink through its allowed path
  3. The path validation passes because the symlink's location is within the allowed directory
  4. The file system then follows the symlink and returns the content of the restricted file

The vulnerability can be exploited remotely over the network and requires no privileges or user interaction, making it particularly dangerous in exposed deployments.

The vulnerable pattern in the safePath and isPathAllowed functions fails to use fs.realpathSync() after path.resolve(), which would properly resolve symbolic links and reveal when a path ultimately targets a location outside allowed directories. Technical details and discussion are available in GitHub Issue #10.

Detection Methods for CVE-2025-67364

Indicators of Compromise

  • Unexpected symbolic links appearing in allowed directories, especially those pointing to sensitive system paths like /etc/, /root/, or application configuration directories
  • Access logs showing file read operations returning content from paths outside the configured allowed directories
  • Unusual file access patterns where legitimate-looking paths return sensitive system data

Detection Strategies

  • Implement file integrity monitoring to detect creation of new symbolic links in allowed directories
  • Audit file system operations to identify when accessed file paths differ from their resolved real paths
  • Monitor for access attempts to sensitive files like /etc/passwd, /etc/shadow, or credential files that originate from allowed directory contexts

Monitoring Recommendations

  • Enable detailed logging for all file operations performed through fast-filesystem-mcp tools
  • Implement alerts for symlink creation events within allowed directories
  • Regularly scan allowed directories for symbolic links and verify they point to legitimate, permitted locations

How to Mitigate CVE-2025-67364

Immediate Actions Required

  • Audit all allowed directories for existing symbolic links that may point to sensitive or restricted paths
  • Remove or remediate any suspicious symbolic links found in allowed directories
  • Consider restricting the ability to create symbolic links within directories exposed to fast-filesystem-mcp
  • Monitor the project repository for security patches

Patch Information

As of the last NVD update on 2026-01-08, patch information is not available. Users should monitor the fast-filesystem-mcp GitHub repository and Issue #10 for updates regarding a security fix.

Workarounds

  • Disable or restrict file operations through fast-filesystem-mcp until a patch is available
  • Implement additional access controls at the operating system level to prevent symlink creation in allowed directories
  • Use bind mounts or containers to isolate allowed directories from sensitive system paths
  • Apply file system restrictions such as nosymfollow mount options where supported
bash
# Example: Restrict symlink creation in allowed directory
chmod -h o-w /path/to/allowed/directory

# Example: Mount with nosymfollow option (Linux kernel 5.10+)
mount -o remount,nosymfollow /path/to/allowed/directory

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechFast Filesystem Mcp

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-24
  • Technical References
  • GitHub Repository: Fast Filesystem MCP

  • GitHub Issue #10: Fast Filesystem MCP
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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