registry  /  mcpzero-cli  /  0.1.9

mcpzero-cli@0.1.9

MCPZERO tunnel CLI — installs the prebuilt `mcpzero` binary for your platform.

Static Scan Results

scanned 9d ago · by rust-scanner

Static analysis flagged 11 finding(s) at 72.0% confidence. This version is warn-only unless an AI or security-team review confirms malicious behavior.

Static reason
One or more suspicious static signals were detected.

Decision evidence

public snapshot
Behavioral surface
Source
ChildProcessEnvironmentVarsFilesystemNetwork
Supply chain
UrlStrings
ManifestNo manifest risk signals triggered.
scanned 2 file(s), 3.26 KB of source, external domains: github.com, mcpzero.io

Source & flagged code

5 flagged · loading source
package.jsonView file
scripts.postinstall = node install.js
High
Install Time Lifecycle Scripts

Package defines install-time lifecycle scripts.

package.jsonView on unpkg
scripts.postinstall = node install.js
Medium
Ambiguous Install Lifecycle Script

Install-time lifecycle script is not statically allowlisted and needs review.

package.jsonView on unpkg
bin/mcpzero.jsView file
6const fs = require("fs"); L7: const { spawnSync } = require("child_process"); L8:
High
Child Process

Package source references child process execution.

bin/mcpzero.jsView on unpkg · L6
6const fs = require("fs"); L7: const { spawnSync } = require("child_process"); L8: L9: const binName = process.platform === "win32" ? "mcpzero.exe" : "mcpzero"; L10: const binPath = path.join(__dirname, binName); L11: ... L14: "mcpzero-cli: binary not found. Reinstall the package (npm install mcpzero-cli) " + L15: "or install manually from https://mcpzero.io/docs/cli/install/." L16: );
High
Sandbox Evasion Gated Capability

Source gates dangerous network, credential, or execution behavior behind CI, host, platform, time, or geo fingerprint checks.

bin/mcpzero.jsView on unpkg · L6
install.jsView file
8const path = require("path"); L9: const https = require("https"); L10: const { execFileSync } = require("child_process"); L11: L12: // GitHub Release assets: <base>/v<version>/mcpzero-cli_<version>_<os>_<arch>.<ext> L13: const BASE_URL = (process.env.MCPZERO_BASE_URL || "https://github.[redacted]").replace(/\/$/, ""); L14: const VERSION = require("./package.json").version;
High
Same File Env Network Execution

A single source file combines environment access, network access, and code or shell execution; review context before blocking.

install.jsView on unpkg · L8

Findings

4 High4 Medium3 Low
HighInstall Time Lifecycle Scriptspackage.json
HighChild Processbin/mcpzero.js
HighSame File Env Network Executioninstall.js
HighSandbox Evasion Gated Capabilitybin/mcpzero.js
MediumAmbiguous Install Lifecycle Scriptpackage.json
MediumNetwork
MediumEnvironment Vars
MediumStructural Risk Force Deep Review
LowScripts Present
LowFilesystem
LowUrl Strings