execbro
npm
v2.11.0
Source verified
Published by igorzheludkov — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.
ExecBro — MCP server giving AI agents eyes and hands into React Native apps. Logs, REPL, state inspection, tap, screenshot.
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 2.1 = 98. What the published surface and source actually contain:
| Points | What was found | Category |
|---|---|---|
| −2.1 | Hardcoded JSON Web Token in test/example/packaging ×3 MTC-SRC-008 | exfiltration |
2. Client adoption risk — 98 − 6 = 92. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −6 | capability blast radius (high) — client exposure if the model is manipulated |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
In the server's implementation (`build/core/exec.js:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: , execFile } from "node:child_process"; export function execFileAsync(file, args, opts = {}) { const { signal, ...ex
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/core/exec.js
In the server's implementation (`build/core/fingerprint.js:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: { execFileSync } from "child_process"; import { readFileSync, existsSync, writeFileSync, mkdirSync } from "fs"; import
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/core/fingerprint.js
In the server's implementation (`build/core/ocr.js:7`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: import { spawn } from "child_process"; import { getInstallationId } from "./telemetry.js"; const OCR_ENDPOINT = "https:
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/core/ocr.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/networkInterceptorXhr.test.js:307`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: lFetch; sandbox.fetch("https://api.example.com/dual"); expect(events().filter((e) => e.type === "request
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/networkInterceptorXhr.test.js
A hardcoded JSON Web Token (an embedded JSON Web Token (often an example or expired token)) appears in `build/__tests__/unit/httpRequest.test.js:6`. Verify whether this is a real credential; if so, remove and rotate it.
Evidence: JSON Web Token: eyJh…(redacted)
Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.
Location: server build/__tests__/unit/httpRequest.test.js
A hardcoded JSON Web Token (an embedded JSON Web Token (often an example or expired token)) appears in `build/__tests__/unit/vault.test.js:2`. Verify whether this is a real credential; if so, remove and rotate it.
Evidence: JSON Web Token: eyJh…(redacted)
Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.
Location: server build/__tests__/unit/vault.test.js
A hardcoded JSON Web Token (an embedded JSON Web Token (often an example or expired token)) appears in `build/__tests__/unit/vaultSlots.test.js:3`. Verify whether this is a real credential; if so, remove and rotate it.
Evidence: JSON Web Token: eyJh…(redacted)
Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.
Location: server build/__tests__/unit/vaultSlots.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/helpers/mock-harness.js:61`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: teContext(sandbox); vm.runInContext(getInterceptorScript(), sandbox); vm.runInContext(buildMockPushScript(JSON.s
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/helpers/mock-harness.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/appContext.test.js:6`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ) { const run = new Function("globalThis", source + "; return (" + expr + ");"); return run(globalStub);
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/appContext.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/appRequest.test.js:40`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ); expect(() => new Function("return " + src.replace(/^\(function/, "(function"))).not.toThrow(); }); it
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/appRequest.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/inputTarget.test.js:158`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: }; return eval(expr); }; it("still reports the wrapper as the field's name", () => { const
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/inputTarget.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/measureComponentResolution.test.js:53`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: dex); return (await new Function(`return (${expr});`)()); } afterEach(() => { const g = globalThis; delete g
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/measureComponentResolution.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/moduleRegistry.test.js:27`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: }; const run = new Function("globalThis", source + "; return __eb_require;"); const req = run(globalThi
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/moduleRegistry.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/navigation.test.js:6`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ) { const run = new Function("globalThis", source + "; return __eb_nav;"); return run(globalStub); }
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/navigation.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/networkInterceptorXhr.test.js:59`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: teContext(sandbox); vm.runInContext(getInterceptorScript(), sandbox); return { sandbox: sandbox,
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/networkInterceptorXhr.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/pressablesLongPress.test.js:44`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: d) { const fn = new Function("globalThis", `return (${expression.trim()});`); last = fn(globalThisStub);
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/pressablesLongPress.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/pressablesSwitch.test.js:44`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: d) { const fn = new Function("globalThis", `return (${expression.trim()});`); last = fn(globalThisStub);
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/pressablesSwitch.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/componentFormatNaming.test.js:4`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: { execSync } from "node:child_process"; describe("component formatter naming", () => { it("no production source, doc
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/componentFormatNaming.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/fingerprint.test.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ss = await import("node:child_process"); const realFs = await import("node:fs"); const realOs = await import("node:os");
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/fingerprint.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/keyboardMetrics.test.js:9`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: eyboardState(undefined, exec({ visible: true, metrics: { height: 345, screenY: 567, width: 420 } })); expect(s).
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/__tests__/unit/keyboardMetrics.test.js
Each tool and what it can reach — statically extracted from the published source.
devno sensitive capabilityios_buttonno sensitive capabilityScan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v2.11.0 latest |
A 92/100 | 20 | 1.13.0 | 2026-09-08 |
v2.10.3 |
A 92/100 | 20 | 1.13.0 | 2026-09-07 |
v2.10.2 |
A 92/100 | 20 | 1.13.0 | 2026-09-06 |
v2.9.8 |
A 94/100 | 17 | 1.13.0 | 2026-09-05 |
v2.9.4 |
A 94/100 | 17 | 1.13.0 | 2026-09-01 |
v2.9.3 |
A 94/100 | 17 | 1.13.0 | 2026-08-25 |
v2.9.2 |
A 94/100 | 17 | 1.12.1 | 2026-08-23 |
v2.9.1 |
A 94/100 | 17 | 1.12.1 | 2026-08-22 |
v2.9.0 |
A 94/100 | 17 | 1.12.1 | 2026-08-17 |
v2.8.9 |
A 94/100 | 17 | 1.12.1 | 2026-08-16 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan execbro --online
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.