GHSA-7HGR-7H44-33W2
Vulnerability from github – Published: 2026-05-19 20:13 – Updated: 2026-05-19 20:13Unauthenticated HTTP MCP browser-control surface in camofox-mcp
Summary
camofox-mcp exposed a Streamable HTTP MCP endpoint at /mcp with rate limiting but no inbound MCP-layer authentication. When HTTP mode was enabled, any client that could reach /mcp could list and invoke browser-control tools.
If CAMOFOX_API_KEY was configured, the server then forwarded that server-side key to the underlying camofox-browser backend. That means an unauthenticated MCP caller could exercise the server's browser authority without knowing the backend browser API key.
Reviewed vulnerable commit: 10e3ac08cb50d830eb4ee00a789229f02f28a1a4
Fixed commit observed on main: 599f56ee40f8062aeca541c251ed1d39fb437f50
Fixed release observed: v1.13.2
Suggested severity: High, with the caveat that default loopback-only deployments reduce practical exposure.
Root cause
In the reviewed commit, src/http.ts creates the Express MCP app and applies only a rate limiter to /mcp:
const app = createMcpExpressApp({ host: config.httpHost });
const limiter = rateLimit({
windowMs: 60_000,
limit: config.httpRateLimit,
standardHeaders: true,
legacyHeaders: false
});
app.use("/mcp", limiter);
The POST /mcp handler then creates a server and StreamableHTTPServerTransport and passes the request body into the MCP transport without checking Authorization, an inbound API key, allowed hosts, or public-bind safety:
app.post("/mcp", async (req: any, res: any) => {
try {
const { server } = createServer(config);
const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: undefined });
await server.connect(transport);
await transport.handleRequest(req, res, req.body);
src/config.ts made HTTP mode configurable and defaulted the HTTP host to loopback, but it did not require an inbound HTTP client secret:
transport: cli.transport ?? envTransport ?? "stdio",
httpPort: cli.httpPort ?? (Number.isNaN(httpPortFromEnv) ? 3000 : httpPortFromEnv),
httpHost: cli.httpHost ?? env.CAMOFOX_HTTP_HOST ?? "127.0.0.1",
Separately, src/client.ts forwarded CAMOFOX_API_KEY server-side to the browser backend:
if (this.apiKey) {
headers.set("x-api-key", this.apiKey);
headers.set("authorization", `Bearer ${this.apiKey}`);
}
So CAMOFOX_API_KEY protected the MCP server's outbound requests to the backend browser service, but did not authenticate inbound HTTP MCP clients.
Auth boundary
The vulnerable boundary was the HTTP MCP endpoint. The client did not need to provide Authorization or any CAMOFOX_API_KEY value to call MCP tools.
The default bind was 127.0.0.1, which lowers severity for default local-only deployments. The risky cases are documented HTTP/remote-client deployments, Docker/port-forwarded deployments, or any environment where a browser page, local network client, reverse proxy, or another user can reach the /mcp endpoint.
Proof of concept
I used a fake camofox-browser backend so no real browser was launched and no external navigation occurred. The harness starts the reviewed dist/http.js server with CAMOFOX_API_KEY=server-side-secret, connects an MCP SDK client to /mcp with no auth headers, lists tools, then calls create_tab and navigate.
Observed output:
{
"authUsedByClient": false,
"listedToolCount": 46,
"backendRequests": [
{
"method": "POST",
"url": "/tabs",
"headers": {
"authorization": "Bearer server-side-secret",
"x-api-key": "server-side-secret"
}
},
{
"method": "POST",
"url": "/tabs/fake-tab-1/navigate",
"headers": {
"authorization": "Bearer server-side-secret",
"x-api-key": "server-side-secret"
}
}
],
"observedUnauthenticatedBrowserControl": true,
"serverSideSecretForwardedToBackend": true
}
This demonstrates both parts of the issue:
- The MCP client used no inbound authentication.
- The server still used its configured backend browser secret when forwarding the tool calls.
Impact
An unauthenticated client that can reach the HTTP MCP endpoint can exercise browser-control tools as the MCP server. Depending on the user's active browser profiles and configured backend, that can allow page navigation, tab creation, interaction with authenticated browser contexts, screenshot/content observation, and other browser-automation actions exposed by the MCP tool surface.
The impact is strongest when HTTP mode is intentionally exposed for remote MCP clients or through Docker/reverse-proxy deployment and the operator assumes CAMOFOX_API_KEY protects the whole control plane.
Fix notes
The public issue indicates this has been fixed in 599f56e and released as v1.13.2 by adding dedicated inbound CAMOFOX_HTTP_API_KEY Bearer auth, public-bind startup validation, auth before /mcp JSON parsing, loopback Host-header protection, and optional allowed-hosts handling. Those are the right mitigation directions.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "camofox-mcp"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "1.13.2"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-306"
],
"github_reviewed": true,
"github_reviewed_at": "2026-05-19T20:13:35Z",
"nvd_published_at": null,
"severity": "HIGH"
},
"details": "# Unauthenticated HTTP MCP browser-control surface in `camofox-mcp`\n\n## Summary\n\n`camofox-mcp` exposed a Streamable HTTP MCP endpoint at `/mcp` with rate limiting but no inbound MCP-layer authentication. When HTTP mode was enabled, any client that could reach `/mcp` could list and invoke browser-control tools.\n\nIf `CAMOFOX_API_KEY` was configured, the server then forwarded that server-side key to the underlying `camofox-browser` backend. That means an unauthenticated MCP caller could exercise the server\u0027s browser authority without knowing the backend browser API key.\n\nReviewed vulnerable commit: `10e3ac08cb50d830eb4ee00a789229f02f28a1a4`\nFixed commit observed on main: `599f56ee40f8062aeca541c251ed1d39fb437f50`\nFixed release observed: `v1.13.2`\nSuggested severity: High, with the caveat that default loopback-only deployments reduce practical exposure.\n\n## Root cause\n\nIn the reviewed commit, `src/http.ts` creates the Express MCP app and applies only a rate limiter to `/mcp`:\n\n```ts\nconst app = createMcpExpressApp({ host: config.httpHost });\n\nconst limiter = rateLimit({\n windowMs: 60_000,\n limit: config.httpRateLimit,\n standardHeaders: true,\n legacyHeaders: false\n});\n\napp.use(\"/mcp\", limiter);\n```\n\nThe `POST /mcp` handler then creates a server and `StreamableHTTPServerTransport` and passes the request body into the MCP transport without checking `Authorization`, an inbound API key, allowed hosts, or public-bind safety:\n\n```ts\napp.post(\"/mcp\", async (req: any, res: any) =\u003e {\n try {\n const { server } = createServer(config);\n const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: undefined });\n\n await server.connect(transport);\n await transport.handleRequest(req, res, req.body);\n```\n\n`src/config.ts` made HTTP mode configurable and defaulted the HTTP host to loopback, but it did not require an inbound HTTP client secret:\n\n```ts\ntransport: cli.transport ?? envTransport ?? \"stdio\",\nhttpPort: cli.httpPort ?? (Number.isNaN(httpPortFromEnv) ? 3000 : httpPortFromEnv),\nhttpHost: cli.httpHost ?? env.CAMOFOX_HTTP_HOST ?? \"127.0.0.1\",\n```\n\nSeparately, `src/client.ts` forwarded `CAMOFOX_API_KEY` server-side to the browser backend:\n\n```ts\nif (this.apiKey) {\n headers.set(\"x-api-key\", this.apiKey);\n headers.set(\"authorization\", `Bearer ${this.apiKey}`);\n}\n```\n\nSo `CAMOFOX_API_KEY` protected the MCP server\u0027s outbound requests to the backend browser service, but did not authenticate inbound HTTP MCP clients.\n\n## Auth boundary\n\nThe vulnerable boundary was the HTTP MCP endpoint. The client did not need to provide `Authorization` or any `CAMOFOX_API_KEY` value to call MCP tools.\n\nThe default bind was `127.0.0.1`, which lowers severity for default local-only deployments. The risky cases are documented HTTP/remote-client deployments, Docker/port-forwarded deployments, or any environment where a browser page, local network client, reverse proxy, or another user can reach the `/mcp` endpoint.\n\n## Proof of concept\n\nI used a fake `camofox-browser` backend so no real browser was launched and no external navigation occurred. The harness starts the reviewed `dist/http.js` server with `CAMOFOX_API_KEY=server-side-secret`, connects an MCP SDK client to `/mcp` with no auth headers, lists tools, then calls `create_tab` and `navigate`.\n\nObserved output:\n\n```json\n{\n \"authUsedByClient\": false,\n \"listedToolCount\": 46,\n \"backendRequests\": [\n {\n \"method\": \"POST\",\n \"url\": \"/tabs\",\n \"headers\": {\n \"authorization\": \"Bearer server-side-secret\",\n \"x-api-key\": \"server-side-secret\"\n }\n },\n {\n \"method\": \"POST\",\n \"url\": \"/tabs/fake-tab-1/navigate\",\n \"headers\": {\n \"authorization\": \"Bearer server-side-secret\",\n \"x-api-key\": \"server-side-secret\"\n }\n }\n ],\n \"observedUnauthenticatedBrowserControl\": true,\n \"serverSideSecretForwardedToBackend\": true\n}\n```\n\nThis demonstrates both parts of the issue:\n\n1. The MCP client used no inbound authentication.\n2. The server still used its configured backend browser secret when forwarding the tool calls.\n\n## Impact\n\nAn unauthenticated client that can reach the HTTP MCP endpoint can exercise browser-control tools as the MCP server. Depending on the user\u0027s active browser profiles and configured backend, that can allow page navigation, tab creation, interaction with authenticated browser contexts, screenshot/content observation, and other browser-automation actions exposed by the MCP tool surface.\n\nThe impact is strongest when HTTP mode is intentionally exposed for remote MCP clients or through Docker/reverse-proxy deployment and the operator assumes `CAMOFOX_API_KEY` protects the whole control plane.\n\n## Fix notes\n\nThe public issue indicates this has been fixed in `599f56e` and released as `v1.13.2` by adding dedicated inbound `CAMOFOX_HTTP_API_KEY` Bearer auth, public-bind startup validation, auth before `/mcp` JSON parsing, loopback Host-header protection, and optional allowed-hosts handling. Those are the right mitigation directions.",
"id": "GHSA-7hgr-7h44-33w2",
"modified": "2026-05-19T20:13:35Z",
"published": "2026-05-19T20:13:35Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/redf0x1/camofox-mcp/security/advisories/GHSA-7hgr-7h44-33w2"
},
{
"type": "WEB",
"url": "https://github.com/redf0x1/camofox-mcp/commit/599f56ee40f8062aeca541c251ed1d39fb437f50"
},
{
"type": "PACKAGE",
"url": "https://github.com/redf0x1/camofox-mcp"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/VI:N/VA:N/SC:H/SI:H/SA:L",
"type": "CVSS_V4"
}
],
"summary": "CamoFox MCP: Unauthenticated HTTP MCP browser-control surface"
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.