Описание
serverless MCP Server vulnerable to Command Injection in list-projects tool
Summary
A command injection vulnerability exists in the Serverless Framework's built-in MCP server package (@serverless/mcp). This vulnerability only affects users of the experimental MCP server feature (serverless mcp), which represents less than 0.1% of Serverless Framework users. The core Serverless Framework CLI and deployment functionality are not affected.
The vulnerability is caused by the unsanitized use of input parameters within a call to child_process.exec, enabling an attacker to inject arbitrary system commands. Successful exploitation can lead to remote code execution under the server process's privileges.
The server constructs and executes shell commands using unvalidated user input directly within command-line strings. This introduces the possibility of shell metacharacter injection (|, >, &&, etc.).
Details
The MCP Server exposes several tools, including the list-project. The values of the parameter workspaceRoots (controlled by the user) is used to build a shell command without proper sanitization, leading to a command injection.
Vulnerable code
PoC
Setup
- start the
serverlessMCP server
Using MCP Client
-
setup your MCP client
-
Verify the file
/tmp/TEST2does not exist:
- Send the following prompt
- Confirm that the injected command executed:
NOTE1: some MCP clients allows tools execution automatically by setting some flags / configuration.
NOTE2: If the MCP server is exposed to the internet and remotely reachable, this issue can lead to remote code execution on the remote server.
Using MCP Inspector
- Open the MCP Inspector:
-
In MCP Inspector:
- set transport type:
SSE - set the
URLtohttp://localhost:3001/sse - click Connect
- go to the Tools tab and click List Tools
- select the
list-projectstool
- set transport type:
-
Verify the file
/tmp/TESTdoes not exist:
- In the workspaceRoots field, input:
while select the field userConfirmed
- Click Run Tool
- Observe the request being sent:
- Confirm that the injected command executed:
Impact
Command Injection / Remote Code Execution (RCE)
Remediation
To mitigate this vulnerability, I suggest to avoid using child_process.exec with untrusted input. Instead, use a safer API such as child_process.execFile, which allows you to pass arguments as a separate array - avoiding shell interpretation entirely.
References with fix commits
CVE-2025-53832- GHSA-xj5p-8h7g-76m7CVE-2025-54073- GHSA-vf9j-h32g-2764CVE-2025-53355- GHSA-gjv4-ghm7-q58qCVE-2025-53372- GHSA-5w57-2ccq-8w95CVE-2025-53107- GHSA-3q26-f695-pp76CVE-2025-53967- GHSA-gxw4-4fc5-9gr5
Ссылки
- https://github.com/serverless/serverless/security/advisories/GHSA-rwc2-f344-q6w6
- https://nvd.nist.gov/vuln/detail/CVE-2025-69256
- https://github.com/serverless/serverless/commit/681ca039550c7169369f98780c6301a00f2dc4c4
- https://github.com/serverless/serverless/blob/6213453da7df375aaf12fb3522ab8870488fc59a/packages/mcp/src/tools/list-projects.js#L68
- https://github.com/serverless/serverless/releases/tag/sf-core%404.29.3
Пакеты
serverless
>= 4.29.0, < 4.29.3
4.29.3
Связанные уязвимости
The Serverless Framework is a framework for using AWS Lambda and other managed cloud services to build applications. Starting in version 4.29.0 and prior to version 4.29.3, a command injection vulnerability exists in the Serverless Framework's built-in MCP server package (@serverless/mcp). This vulnerability only affects users of the experimental MCP server feature (serverless mcp), which represents less than 0.1% of Serverless Framework users. The core Serverless Framework CLI and deployment functionality are not affected. The vulnerability is caused by the unsanitized use of input parameters within a call to `child_process.exec`, enabling an attacker to inject arbitrary system commands. Successful exploitation can lead to remote code execution under the server process's privileges. The server constructs and executes shell commands using unvalidated user input directly within command-line strings. This introduces the possibility of shell metacharacter injection (`|`, `>`, `&&`, etc.).