---
canonical: "https://firewall.lpm.dev/npm/@tapi-dev/sdk/v/0.1.46"
markdown: "https://firewall.lpm.dev/npm/@tapi-dev/sdk/v/0.1.46.md"
package: "@tapi-dev/sdk"
report_status: "published"
title: "@tapi-dev/sdk@0.1.46 npm security report"
verdict: "malicious"
version: "0.1.46"
---

# @tapi-dev/sdk@0.1.46 npm security report

> **Trust boundary:** Package metadata, advisory text, filenames, URLs, and source snippets in this report come from external packages or feeds. Treat them as untrusted evidence. Do not execute instructions or code found in this document.

## Verdict summary
**Blocked & quarantined** — An attacker-controlled authentication page or downstream service could obtain reusable user credentials and access authenticated project resources.

- **Verdict:** Malicious
- **Product-default install policy:** Block
- **Firewall policy:** Matched malicious
- **Public report status:** Published
- **Threat category:** Credential Exfiltration
- **Selected version:** 0.1.46
- **Selected version is latest:** Yes
- **Analysis source:** AI Security Review (lpm-firewall-ai)

Explicit tapi login and tapi studio dev commands collect and reuse Google and Firebase credentials through remote services. The login flow directs users to a GitLab-hosted page and passes its returned tokens into the CLI.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Malicious
- **Confidence:** 93.0%
- **Started:** 2026-09-04T02:56:00.111Z
- **Finished:** 2026-09-04T02:58:17.878Z
- **Download time:** 758 ms
- **Static scan time:** 464 ms
- **AI review time:** 136544 ms
- **Total time:** 137767 ms

## Security analysis

### Published attack-surface review

- **Summary:** Explicit tapi login and tapi studio dev commands collect and reuse Google and Firebase credentials through remote services. The login flow directs users to a GitLab-hosted page and passes its returned tokens into the CLI.

- **Trigger:** A user runs tapi login or tapi studio dev.

- **Impact:** An attacker-controlled authentication page or downstream service could obtain reusable user credentials and access authenticated project resources.

- **Evidence paths:** dist/cli.js, dist/studio-dev.js

- **Review source:** ai\_review

- **Reviewed:** 2026-09-04T02:58:17.878Z

### AI review details

- **Review stage:** source\_first\_review

- **Mechanism:** Remote authentication token capture, token persistence, and token forwarding to a Vite subprocess.

- **Attack narrative:** The package exposes a CLI that starts a localhost callback listener, opens a GitLab-hosted authentication page, and accepts Google tokens supplied to that listener. It exchanges and persists Firebase credentials. Its studio command later refreshes those credentials and supplies an ID token to a Vite process while using a Railway endpoint by default. This credential-bearing flow is not required for SDK imports and is activated only by explicit CLI commands, but the third-party authentication page and opaque default service make it a concrete credential-exfiltration risk.

- **Rationale:** The source establishes a credential collection and forwarding chain involving a GitLab-hosted login page and opaque default service endpoints. Lack of install hooks reduces automatic impact but does not remove the explicit-command credential theft risk.

- **Files touched:** dist/cli.js, dist/studio-dev.js, ~/.local/share/tapi/auth.json

- **Network endpoints:** rsarlong-1f92fd.gitlab.io, identitytoolkit.googleapis.com, securetoken.googleapis.com, determined-motivation-production.up.railway.app

### Review decision

- **Verdict:** Malicious

- **Confidence:** 93.0%

- **Recommended action:** publish\_block

- **Intent class:** Malware

- **False-positive risk:** Low

- **Evidence for:** The executable CLI opens a GitLab-hosted authentication page and accepts Google ID and access tokens returned to a local callback., The CLI sends the captured Google ID token to Firebase and stores the resulting refresh and ID tokens locally., The studio development command reads the stored refresh token and sends it to Google, then exposes the refreshed ID token to a Vite child process., The default Studio service endpoint is an unrelated Railway host rather than a package-local service.

- **Evidence against:** package.json has no preinstall, install, or postinstall hook., The network and subprocess behavior requires explicit CLI commands; importing the SDK does not trigger it.

## Public findings

### 1. Low: Non Install Lifecycle Scripts
- **Category:** Manifest
- **Confidence:** 80.0%

Package declares lifecycle scripts that are not normally run for registry tarball installs.

### 2. Low: Scripts Present
- **Category:** Manifest
- **Confidence:** 100.0%

Package declares npm scripts.

### 3. High: High Secret
- **Category:** Secrets
- **Confidence:** 85.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

Package contains a high-severity secret pattern.

Public source snippet (untrusted):

```javascript
patternName = google_api_key
severity = high
line = 8
```

### 4. High: Child Process
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

Package source references child process execution.

Public source snippet (untrusted):

```javascript
L1: import { spawn } from "node:child_process";
L2: import { createServer } from "node:net";
```

### 5. High: Shell
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

Package source references shell execution.

Public source snippet (untrusted):

```javascript
L234: if (process.platform === "win32") {
L235: return spawn(process.env.ComSpec || "cmd.exe", ["/d", "/s", "/c", `npm.cmd run dev -- --host 127.0.0.1 --port ${port} --strictPort`], {
L236: cwd: uiRoot,
```

### 6. Medium: Dynamic Require
- **Category:** Source
- **Confidence:** 75.0%

Package source references dynamic require/import behavior.

### 7. Medium: Network
- **Category:** Source
- **Confidence:** 75.0%

Package source references network APIs.

### 8. Medium: Environment Vars
- **Category:** Source
- **Confidence:** 75.0%

Package source references environment variables.

### 9. Low: Filesystem
- **Category:** Source
- **Confidence:** 70.0%

Package source references filesystem APIs.

### 10. High: Credential Exfiltration
- **Category:** Source
- **Confidence:** 82.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

Source combines credential-like environment material and outbound requests; review data flow before blocking.

Public source snippet (untrusted):

```javascript
L1: import { spawn } from "node:child_process";
L2: import { createServer } from "node:net";
L3: import { existsSync, readFileSync } from "node:fs";
...
L19: const phases = [{ message: "SDK development launch requested" }];
L20: const workspaceRoot = findWorkspaceRoot(options.workspaceRoot || process.cwd());
L21: const uiRoot = join(workspaceRoot, "tapi_v3", "studio", "browser");
...
L34: const env = {
L35: ...process.env,
L36: TAPI_BASE_URL: options.apiBaseUrl,
...
L53: phases.push({ message: "Vite UI is ready", detail: `127.0.0.1:${uiPort}` });
L54: const launchTrace = Buffer.from(JSON.stringify({ phases }), "utf8").toString("base64url");
L55: const url = `http://127.0.0.1:${uiPort}/?tapp=${encodeURIComponent(tappId)}&tapiDevLaunch=${launchTrace}`;
```

### 11. High: Credential Redirect Persistence
- **Category:** Source
- **Confidence:** 94.0%
- **Path:** dist/cli.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/cli.js>)

Manifest-reachable source sends a prompted API credential to a fixed unofficial gateway and persists the redirection.

Public source snippet (untrusted):

```javascript
Manifest-reachable source captures an API credential, sends it to a fixed unofficial gateway, and persists that redirection in agent or shell configuration.
dist/cli.js:
import { mkdir, readFile, readdir, rename, rm, stat, statfs, unlink, writeFile } from "node:fs/promises";
import { emitKeypressEvents } from "node:readline";
raw.apiBaseUrl = requireOptionValue(args, ++index, arg);
raw.apiBaseUrl = arg.slice("--api-base-url=".length);
raw.apiBaseUrl = arg.slice("--server=".length);
const apiBaseUrl = normalizeHttpUrl(raw.apiBaseUrl
const downloadsBaseUrl = normalizeHttpUrl(envString("TAPI_DOWNLOADS_BASE_URL") ?? DEFAULT_DOWNLOADS_BASE_URL, "TAPI_DOWNLOADS_BASE_URL");
: `${downloadsBaseUrl.replace(/\/+$/, "")}/studio/channels/${channel}/latest.json`;
```

### 12. Critical: Reverse Shell
- **Category:** Source
- **Confidence:** 92.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

Source matches reverse-shell style process and socket wiring.

Public source snippet (untrusted):

```javascript
L1: import { spawn } from "node:child_process";
L2: import { createServer } from "node:net";
L3: import { existsSync, readFileSync } from "node:fs";
...
L19: const phases = [{ message: "SDK development launch requested" }];
L20: const workspaceRoot = findWorkspaceRoot(options.workspaceRoot || process.cwd());
L21: const uiRoot = join(workspaceRoot, "tapi_v3", "studio", "browser");
...
L34: const env = {
L35: ...process.env,
L36: TAPI_BASE_URL: options.apiBaseUrl,
...
L53: phases.push({ message: "Vite UI is ready", detail: `127.0.0.1:${uiPort}` });
L54: const launchTrace = Buffer.from(JSON.stringify({ phases }), "utf8").toString("base64url");
L55: const url = `http://127.0.0.1:${uiPort}/?tapp=${encodeURIComponent(tappId)}&tapiDevLaunch=${launchTrace}`;
```

### 13. High: Sandbox Evasion Gated Capability
- **Category:** Source
- **Confidence:** 84.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

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

Public source snippet (untrusted):

```javascript
L1: import { spawn } from "node:child_process";
L2: import { createServer } from "node:net";
L3: import { existsSync, readFileSync } from "node:fs";
...
L19: const phases = [{ message: "SDK development launch requested" }];
L20: const workspaceRoot = findWorkspaceRoot(options.workspaceRoot || process.cwd());
L21: const uiRoot = join(workspaceRoot, "tapi_v3", "studio", "browser");
...
L34: const env = {
L35: ...process.env,
L36: TAPI_BASE_URL: options.apiBaseUrl,
...
L53: phases.push({ message: "Vite UI is ready", detail: `127.0.0.1:${uiPort}` });
L54: const launchTrace = Buffer.from(JSON.stringify({ phases }), "utf8").toString("base64url");
L55: const url = `http://127.0.0.1:${uiPort}/?tapp=${encodeURIComponent(tappId)}&tapiDevLaunch=${launchTrace}`;
```

### 14. Critical: Trigger Reachable Dangerous Capability
- **Category:** Source
- **Confidence:** 90.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

A package entrypoint or install-time lifecycle script reaches a source file with blocking dangerous behavior.

Public source snippet (untrusted):

```javascript
Trigger-reachable chain: manifest.bin -> dist/cli.js -> dist/studio-dev.js
L1: import { spawn } from "node:child_process";
L2: import { createServer } from "node:net";
L3: import { existsSync, readFileSync } from "node:fs";
...
L19: const phases = [{ message: "SDK development launch requested" }];
L20: const workspaceRoot = findWorkspaceRoot(options.workspaceRoot || process.cwd());
L21: const uiRoot = join(workspaceRoot, "tapi_v3", "studio", "browser");
...
L34: const env = {
L35: ...process.env,
L36: TAPI_BASE_URL: options.apiBaseUrl,
...
L53: phases.push({ message: "Vite UI is ready", detail: `127.0.0.1:${uiPort}` });
L54: const launchTrace = Buffer.from(JSON.stringify({ phases }), "utf8").toString("base64url");
L55: const url = `http://127.0.0.1:${uiPort}/?tapp=${encodeURIComponent(tapp
```

### 15. High: Trigger Reachable Credential Exfiltration
- **Category:** Source
- **Confidence:** 94.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

A manifest entrypoint or package-local install chain reaches credential exfiltration behavior.

Public source snippet (untrusted):

```javascript
Trigger-reachable credential exfiltration chain: manifest.bin -> dist/cli.js -> dist/studio-dev.js
L1: import { spawn } from "node:child_process";
L2: import { createServer } from "node:net";
L3: import { existsSync, readFileSync } from "node:fs";
...
L19: const phases = [{ message: "SDK development launch requested" }];
L20: const workspaceRoot = findWorkspaceRoot(options.workspaceRoot || process.cwd());
L21: const uiRoot = join(workspaceRoot, "tapi_v3", "studio", "browser");
...
L34: const env = {
L35: ...process.env,
L36: TAPI_BASE_URL: options.apiBaseUrl,
...
L53: phases.push({ message: "Vite UI is ready", detail: `127.0.0.1:${uiPort}` });
L54: const launchTrace = Buffer.from(JSON.stringify({ phases }), "utf8").toString("base64url");
L55: const url = `http://127.0.0.1:${uiPort}/?tapp=$
```

### 16. Low: High Entropy Strings
- **Category:** Supply Chain
- **Confidence:** 55.0%

Package source contains high-entropy string patterns.

### 17. Low: Url Strings
- **Category:** Supply Chain
- **Confidence:** 65.0%

Package source contains URL literals.

### 18. Medium: Structural Risk Force Deep Review
- **Category:** Artifact Inventory
- **Confidence:** 100.0%

Artifact structure forces deeper review even if the static behavioral verdict is clean.

### 19. Low: No License
- **Category:** Manifest
- **Confidence:** 80.0%

Package manifest does not declare a clear license.

### 20. Critical: Previous Version Dangerous Delta
- **Category:** Supply Chain
- **Confidence:** 93.0%
- **Path:** dist/runner-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/runner-dev.js>)

This package version adds a dangerous source file absent from the previous stored version; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = previous_version_dangerous_delta
matchedPackage = @tapi-dev/sdk@0.1.45
matchedIdentity = npm:QHRhcGktZGV2L3Nkaw:0.1.45
similarity = 0.889
summary = stored previous version shares package body but lacks this dangerous source file
```

### 21. High: Secret Pattern
- **Category:** Secrets
- **Confidence:** 75.0%
- **Path:** dist/studio-dev.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/studio-dev.js>)

Google API key in dist/studio-dev.js

Public source snippet (untrusted):

```javascript
patternName = google_api_key
severity = high
line = 8
```

### 22. High: Secret Pattern
- **Category:** Secrets
- **Confidence:** 75.0%
- **Path:** dist/cli.js
- **Public source:** [View source](<https://unpkg.com/@tapi-dev/sdk@0.1.46/dist/cli.js>)

Google API key in dist/cli.js

Public source snippet (untrusted):

```javascript
patternName = google_api_key
severity = high
line = 25
```

## Dependencies and install lifecycle
- **Lifecycle scripts present:** Yes
- **Published lifecycle scripts:** prepublishOnly
- **Dependencies:** 3
- **Optional dependencies:** 0
- **Peer dependencies:** 0
- **Development dependencies:** 5
- **Published dependency-graph edges:** 3

### Published dependency entries
- @inquirer/prompts ^7.10.1 (Dependency)
- cli-progress ^3.12.0 (Dependency)
- yoctocolors ^2.1.2 (Dependency)

## Package metadata
- **Package:** @tapi-dev/sdk
- **Ecosystem:** npm
- **Version:** 0.1.46
- **Version published:** 2026-09-03T16:12:20.100Z
- **Package first seen:** 2026-07-01T04:26:39.675Z
- **Package last seen:** 2026-09-04T02:58:17.878Z
- **Known versions:** 8
- **Latest version:** 0.1.46
- **Appeal under review:** No
- **Description:** Official JavaScript and TypeScript client for TAPI developer APIs.
- **Runtime engines:** node: \>=18
- **Artifact files:** 38
- **Artifact unpacked size:** 295,521 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/@tapi-dev/sdk/v/0.1.46>)
