Cyber Resilience

CVE-2025-67366

HighPublic PoC

Published: 07 January 2026

Published
07 January 2026
Modified
29 January 2026
KEV Added
Patch
CVSS Score v3.1 7.5 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
EPSS Score 0.0008 23.5th percentile
Risk Priority 15 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2025-67366 is a high-severity Relative Path Traversal (CWE-23) vulnerability in Sylphx Filesystem-Mcp. Its CVSS base score is 7.5 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 23.5th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

This vulnerability is AI-related — categorised as AI Agent Protocols and Integrations; in the Protocol-Specific Risks risk domain.

The strongest mitigations our analysis identified are NIST 800-53 AC-3 (Access Enforcement) and SI-10 (Information Input Validation).

Deeper analysis

CVE-2025-67366 is a critical path traversal vulnerability (CWE-23) affecting version 0.5.8 of @sylphxltd/filesystem-mcp, an MCP server that provides file content reading functionality. The flaw exists in the "read_content" tool due to improper symlink handling in the path validation mechanism. Specifically, the resolvePath function performs path validity checks before resolving symlinks, while the underlying fs.readFile operation automatically resolves symlinks during file access. This discrepancy allows attackers to bypass directory restrictions. The vulnerability has a CVSS v3.1 base score of 7.5 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N).

Remote attackers require no privileges or user interaction to exploit this vulnerability over the network with low complexity. By placing symlinks within the allowed directory that point to files outside the intended operational scope, attackers can trick the read_content tool into accessing and disclosing unauthorized file contents. Successful exploitation results in high-impact confidentiality violations, enabling the reading of sensitive data beyond the server's restricted filesystem boundaries.

Further details, including potential patches or mitigation guidance, are documented in the project's GitHub repository at https://github.com/sylphxltd/filesystem-mcp and the associated issue tracker at https://github.com/sylphxltd/filesystem-mcp/issues/134. Security practitioners should review these resources for updates on remediation steps.

EU & UK References

Vulnerability details

@sylphxltd/filesystem-mcp v0.5.8 is an MCP server that provides file content reading functionality. Version 0.5.8 of filesystem-mcp contains a critical path traversal vulnerability in its "read_content" tool. This vulnerability arises from improper symlink handling in the path validation mechanism: the resolvePath…

more

function checks path validity before resolving symlinks, while fs.readFile resolves symlinks automatically during file access. This allows attackers to bypass directory restrictions by leveraging symlinks within the allowed directory that point to external files, enabling unauthorized access to files outside the intended operational scope.

CWE(s)

AI Security AnalysisAI

AI Category
AI Agent Protocols and Integrations
Risk Domain
Protocol-Specific Risks
OWASP Top 10 for LLMs 2025
None mapped
Classification Reason
Matched keywords: mcp

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1005 Data from Local System Collection
Adversaries may search local system sources, such as file systems, configuration files, local databases, virtual machine files, or process memory, to find files of interest and sensitive data prior to Exfiltration.
Why these techniques?

Remote unauthenticated path traversal in public-facing MCP file server directly enables T1190 exploitation and unauthorized local file reads (T1005).

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2025-27553Shared CWE-23
CVE-2026-43533Shared CWE-23
CVE-2025-55747Shared CWE-23
CVE-2025-20059Shared CWE-23
CVE-2025-2056Shared CWE-23
CVE-2026-1022Shared CWE-23
CVE-2025-27610Shared CWE-23
CVE-2024-56340Shared CWE-23
CVE-2026-5422Shared CWE-23
CVE-2024-8551Shared CWE-23

Affected Assets

sylphx
filesystem-mcp
0.5.8

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

SI-10 mandates validation and sanitization of path inputs to prevent path traversal exploits arising from improper symlink handling in the resolvePath function.

prevent

AC-3 enforces approved access authorizations that directly counter unauthorized file reads outside the intended directory scope via symlink bypasses.

prevent

AC-6 applies least privilege to limit the filesystem-mcp server's read access, reducing the confidentiality impact of successful symlink-based path traversal.

References