FastMCP vulnerable to windows command injection in FastMCP Cursor installer via server_name
MediumCVE-2025-62801 · Published Oct 29, 2025 · updated Jul 7, 2026
### Summary A command-injection vulnerability lets any attacker who can influence the server_name field of an MCP execute arbitrary OS commands on Windows hosts that run fastmcp install cursor ### Details 1. generate_cursor_deeplink(server_name, …) embeds server_name verbatim in a cursor://…?name= query string. 2. open_deeplink() is invoked with shell=True only on Windows. That calls cmd.exe /c start <deeplink>. 3. Any cmd metacharacter inside server_name (&, |, >, ^, …) escapes the start command and spawns an attacker-chosen process. ### PoC server.py ``` import random from fastmcp import FastMCP mcp = FastMCP(name="test&calc") @mcp.tool def roll_dice(n_dice: int) -> list[int]: """Roll `n_dice` 6-sided dice and return the results.""" return [random.randint(1, 6) for _ in range(n_dice)] if __name__ == "__main__": mcp.run() ``` then run in the terminal: `fastmcp install cursor server.py` ### Impact OS Command / Shell Injection (CWE-78) Every Windows host that runs fastmcp install cursor is at risk. Developers on their local workstations, CI/CD agents and corporate build machines alike.
Affected versions
| Package | Affected | Fixed in |
|---|---|---|
| fastmcp PyPI | < 2.13.0 | 2.13.0 |
Details and references
- CVSS 4.0
- CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
- Severity from
- GitHub (reviewed advisory)
- Weakness
- CWE-78
- Also known as
- CVE-2025-62801, PYSEC-2026-1365
More fastmcp advisories
All fastmcp| Date | Advisory | Severity | Fixed in |
|---|---|---|---|
| Mar 31 | FastMCP: Missing Consent Verification in OAuth Proxy Callback Facilitates Confused Deputy Vulnerabilities | High | 3.2.0 |
| Mar 31 | FastMCP has a Command Injection vulnerability - Gemini CLI | Medium6.7 | 3.2.0 |
| Mar 16 | FastMCP OAuth Proxy token reuse across MCP servers | High | 2.14.2 |
| Dec 262025 | FastMCP updated to MCP 1.23+ due to CVE-2025-66416 | High | 2.14.0 |
| Oct 292025 | FastMCP vulnerable to reflected XSS in client's callback page | Medium | 2.13.0 |
| Oct 292025 | FastMCP Auth Integration Allows for Confused Deputy Account Takeover | High | 2.13.0 |