GHSA-54j7-grvr-9xwg
Vulnerability from github
Command Injection in adb-mcp MCP Server
The MCP Server at https://github.com/srmorete/adb-mcp is written in a way that is vulnerable to command injection vulnerability attacks as part of some of its MCP Server tool definition and implementation.
The MCP Server is also published publicly to npm at www.npmjs.com/package/adb-mcp and allows users to install it.
Vulnerable tool
The MCP Server defines the function executeAdbCommand()
which executes commands via string as a parameter and wraps the promise-based exec
function.
The MCP Server then exposes the tool inspect_ui
which relies on Node.js child process API exec
(through the function wrapper) to execute the Android debugging command (adb
). Relying on exec
is an unsafe and vulnerable API if concatenated with untrusted user input.
Data flows from the tool definition here which takes in args.device
and calls execPromise()
in this definitino that uses exec
in an insecure way.
Vulnerable line of code: https://github.com/srmorete/adb-mcp/blob/master/src/index.ts#L334-L352
```js // Add adb UI dump tool server.tool( "inspect_ui", AdbUidumpSchema.shape, async (args: z.infer, _extra: RequestHandlerExtra) => { log(LogLevel.INFO, "Dumping UI hierarchy");
const deviceArg = formatDeviceArg(args.device);
const tempFilePath = createTempFilePath("adb-mcp", "window_dump.xml");
const remotePath = args.outputPath || "/sdcard/window_dump.xml";
try {
// Dump UI hierarchy on device
const dumpCommand = `adb ${deviceArg}shell uiautomator dump ${remotePath}`;
await execPromise(dumpCommand);
// Pull the UI dump from the device
const pullCommand = `adb ${deviceArg}pull ${remotePath} ${tempFilePath}`;
await execPromise(pullCommand);
// Clean up the remote file
await execPromise(`adb ${deviceArg}shell rm ${remotePath}`);
```
The argument to the tool, AdbDevicesSchema
, is a Zod inferred type defined in the src/types.ts
file in the project:
js
export const inspectUiInputSchema = {
device: z.string().optional().describe("Specific device ID (optional)"),
outputPath: z.string().optional().describe("Custom output path on device (default: /sdcard/window_dump.xml)"),
asBase64: z.boolean().optional().default(false).describe("Return XML content as base64 (default: false)")
};
and exposes device
as a string which is an open way to trick the LLM into pushing arbitrary strings into it and hence achieve the command injection exploitation.
Exploitation
When LLMs are tricked through prompt injection (and other techniques and attack vectors) to call the tool with input that uses special shell characters such as ; rm -rf /tmp;#
(be careful actually executing this payload) and other payload variations, the full command-line text will be interepted by the shell and result in other commands except of ps
executing on the host running the MCP Server.
Reference example from prior security research on this topic, demonstrating how a similarly vulnerable MCP Server connected to Cursor is abused with prompt injection to bypass the developer's intended command:
Impact
User initiated and remote command injection on a running MCP Server.
Recommendation
- Don't use
exec
. UseexecFile
instead, which pins the command and provides the arguments as array elements. - If the user input is not a command-line flag, use the
--
notation to terminate command and command-line flag, and indicate that the text after the--
double dash notation is benign value.
References and Prior work
- Command Injection in codehooks-mcp-server MCP Server project https://www.nodejs-security.com/blog/command-injection-vulnerability-codehooks-mcp-server-security-analysis identified as CVE-2025-53100
- Command Injection in ios-simulator-mcp-server MCP Server project https://www.nodejs-security.com/blog/ios-simulator-mcp-server-command-injection-vulnerability identified as CVE-2025-52573
- Liran's Node.js Secure Coding: Defending Against Command Injection Vulnerabilities
Credit
Disclosed by Liran Tal
{ "affected": [ { "package": { "ecosystem": "npm", "name": "adb-mcp" }, "ranges": [ { "events": [ { "introduced": "0" }, { "last_affected": "0.1.0" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2025-59834" ], "database_specific": { "cwe_ids": [ "CWE-77", "CWE-78" ], "github_reviewed": true, "github_reviewed_at": "2025-09-24T18:59:22Z", "nvd_published_at": "2025-09-25T14:15:46Z", "severity": "CRITICAL" }, "details": "# Command Injection in adb-mcp MCP Server\n\nThe MCP Server at https://github.com/srmorete/adb-mcp is written in a way that is vulnerable to command injection vulnerability attacks as part of some of its MCP Server tool definition and implementation.\n\nThe MCP Server is also published publicly to npm at www.npmjs.com/package/adb-mcp and allows users to install it.\n\n## Vulnerable tool\n\nThe MCP Server defines the function `executeAdbCommand()` which executes commands via string as a parameter and wraps the promise-based `exec` function.\n\nThe MCP Server then exposes the tool `inspect_ui` which relies on Node.js child process API `exec` (through the function wrapper) to execute the Android debugging command (`adb`). Relying on `exec` is an unsafe and vulnerable API if concatenated with untrusted user input.\n\nData flows from the tool definition [here](https://github.com/srmorete/adb-mcp/blob/master/src/index.ts#L334-L343) which takes in `args.device` and calls `execPromise()` in [this definitino](https://github.com/srmorete/adb-mcp/blob/master/src/index.ts#L346-L348C13) that uses `exec` in an insecure way.\n\nVulnerable line of code: [https://github.com/srmorete/adb-mcp/blob/master/src/index.ts#L334-L352](https://github.com/srmorete/adb-mcp/blob/master/src/index.ts#L334-L355)\n\n```js\n// Add adb UI dump tool\nserver.tool(\n \"inspect_ui\",\n AdbUidumpSchema.shape,\n async (args: z.infer\u003ctypeof AdbUidumpSchema\u003e, _extra: RequestHandlerExtra) =\u003e {\n log(LogLevel.INFO, \"Dumping UI hierarchy\");\n \n const deviceArg = formatDeviceArg(args.device);\n const tempFilePath = createTempFilePath(\"adb-mcp\", \"window_dump.xml\");\n const remotePath = args.outputPath || \"/sdcard/window_dump.xml\";\n \n try {\n // Dump UI hierarchy on device\n const dumpCommand = `adb ${deviceArg}shell uiautomator dump ${remotePath}`;\n await execPromise(dumpCommand);\n \n // Pull the UI dump from the device\n const pullCommand = `adb ${deviceArg}pull ${remotePath} ${tempFilePath}`;\n await execPromise(pullCommand);\n \n // Clean up the remote file\n await execPromise(`adb ${deviceArg}shell rm ${remotePath}`);\n```\n\nThe argument to the tool, `AdbDevicesSchema`, is a Zod inferred type defined in the `src/types.ts` file in the project:\n\n```js\nexport const inspectUiInputSchema = {\n device: z.string().optional().describe(\"Specific device ID (optional)\"),\n outputPath: z.string().optional().describe(\"Custom output path on device (default: /sdcard/window_dump.xml)\"),\n asBase64: z.boolean().optional().default(false).describe(\"Return XML content as base64 (default: false)\")\n};\n```\n\nand exposes `device` as a string which is an open way to trick the LLM into pushing arbitrary strings into it and hence achieve the command injection exploitation.\n\n\n## Exploitation\n\nWhen LLMs are tricked through prompt injection (and other techniques and attack vectors) to call the tool with input that uses special shell characters such as `; rm -rf /tmp;#` (be careful actually executing this payload) and other payload variations, the full command-line text will be interepted by the shell and result in other commands except of `ps` executing on the host running the MCP Server.\n\nReference example from prior security research on this topic, demonstrating how a similarly vulnerable MCP Server connected to Cursor is abused with prompt injection to bypass the developer\u0027s intended command:\n\n\n\n## Impact\n\nUser initiated and remote command injection on a running MCP Server.\n\n## Recommendation\n\n- Don\u0027t use `exec`. Use `execFile` instead, which pins the command and provides the arguments as array elements.\n- If the user input is not a command-line flag, use the `--` notation to terminate command and command-line flag, and indicate that the text after the `--` double dash notation is benign value.\n\n## References and Prior work\n\n1. Command Injection in codehooks-mcp-server MCP Server project https://www.nodejs-security.com/blog/command-injection-vulnerability-codehooks-mcp-server-security-analysis identified as CVE-2025-53100\n2. Command Injection in ios-simulator-mcp-server MCP Server project https://www.nodejs-security.com/blog/ios-simulator-mcp-server-command-injection-vulnerability identified as CVE-2025-52573\n3. Liran\u0027s [Node.js Secure Coding: Defending Against Command Injection Vulnerabilities](https://www.nodejs-security.com/book/command-injection)\n\n## Credit\n\nDisclosed by [Liran Tal](https://lirantal.com)", "id": "GHSA-54j7-grvr-9xwg", "modified": "2025-09-26T16:29:51Z", "published": "2025-09-24T18:59:22Z", "references": [ { "type": "WEB", "url": "https://github.com/srmorete/adb-mcp/security/advisories/GHSA-54j7-grvr-9xwg" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-59834" }, { "type": "WEB", "url": "https://github.com/srmorete/adb-mcp/commit/041729c0b25432df3199ff71b3163a307cf4c28c" }, { "type": "PACKAGE", "url": "https://github.com/srmorete/adb-mcp" }, { "type": "WEB", "url": "https://github.com/srmorete/adb-mcp/blob/master/src/index.ts#L334-L355" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "type": "CVSS_V3" } ], "summary": "Command Injection in adb-mcp MCP Server" }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.