---
canonical: "https://firewall.lpm.dev/npm/aws-runtime-bridge/v/1.9.144"
markdown: "https://firewall.lpm.dev/npm/aws-runtime-bridge/v/1.9.144.md"
package: "aws-runtime-bridge"
report_status: "published"
title: "aws-runtime-bridge@1.9.144 npm security report"
verdict: "malicious"
version: "1.9.144"
---

# aws-runtime-bridge@1.9.144 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** — Unconsented host-wide package installation and network downloads occur during dependency installation.

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

Installing the package can change the host operating system before dependencies are installed. On Linux root installs it updates package indexes, installs build tools, and installs Chromium with system dependencies.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Malicious
- **Confidence:** 96.0%
- **Started:** 2026-09-04T10:40:56.523Z
- **Finished:** 2026-09-04T10:42:35.569Z
- **Download time:** 2280 ms
- **Static scan time:** 35561 ms
- **AI review time:** 61203 ms
- **Total time:** 99046 ms

## Security analysis

### Published attack-surface review

- **Summary:** Installing the package can change the host operating system before dependencies are installed. On Linux root installs it updates package indexes, installs build tools, and installs Chromium with system dependencies.

- **Trigger:** npm installation, especially a Linux root installation.

- **Impact:** Unconsented host-wide package installation and network downloads occur during dependency installation.

- **Evidence paths:** package.json, scripts/ensure-build-tools.mjs, scripts/ensure-playwright-browser.mjs

- **Review source:** ai\_review

- **Reviewed:** 2026-09-04T10:42:35.569Z

### AI review details

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

- **Mechanism:** Automatic lifecycle hooks invoke system package managers and Playwright's dependency installer.

- **Attack narrative:** The manifest activates preinstall and postinstall automatically. The preinstall script detects root on Linux, updates the selected distribution package index, and installs compiler tooling. The postinstall script invokes Playwright to install Chromium and, as root, requests system dependencies. These broad host mutations and downloads happen as a side effect of installing the npm package, rather than through an explicit setup command.

- **Rationale:** The package uses automatic install hooks to make broad operating-system changes and download a browser payload. That is concrete install-hook abuse even though secret theft was not confirmed.

- **Files touched:** package.json, scripts/ensure-build-tools.mjs, scripts/ensure-playwright-browser.mjs

- **Network endpoints:** https://npmmirror.com/mirrors/playwright

### Review decision

- **Verdict:** Malicious

- **Confidence:** 96.0%

- **Recommended action:** publish\_block

- **Intent class:** Malware

- **False-positive risk:** Low

- **Evidence for:** Installation automatically runs preinstall and postinstall hooks., The preinstall hook runs Linux package-manager updates and installs when executed as root., The postinstall hook downloads Chromium and requests its system dependencies on Linux root installs.

- **Evidence against:** No credential harvesting or unrelated data-exfiltration path was confirmed in the inspected lifecycle scripts., The hooks provide environment-variable opt-outs, but they still mutate systems by default.

## Public findings

### 1. High: Install Time Lifecycle Scripts
- **Category:** Manifest
- **Confidence:** 90.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/package.json>)

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = node scripts/ensure-bin-executable.mjs && node scripts/ensure-playwright-browser.mjs
```

### 2. Medium: Ambiguous Install Lifecycle Script
- **Category:** Manifest
- **Confidence:** 75.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/package.json>)

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

Public source snippet (untrusted):

```json
scripts.postinstall = node scripts/ensure-bin-executable.mjs && node scripts/ensure-playwright-browser.mjs
```

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

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

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

Package declares npm scripts.

### 5. High: Child Process
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** dist/index.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/index.js>)

Package source references child process execution.

Public source snippet (untrusted):

```javascript
L1: #!/usr/bin/env node
L2: import{existsSync as T,readFileSync as D}from"node:fs";import M from"node:os";import S from"node:path";import E from"cors";import P from"express";import{adapterRegistry as x}from"....
L3:
```

### 6. High: Shell
- **Category:** Source
- **Confidence:** 85.0%

Package source references shell execution.

### 7. Medium: Dynamic Require
- **Category:** Source
- **Confidence:** 75.0%
- **Path:** dist/utils/sdk-package-loader.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/utils/sdk-package-loader.js>)

Package source references dynamic require/import behavior.

Public source snippet (untrusted):

```javascript
L1: import{access as p,readFile as m}from"node:fs/promises";import n from"node:path";import{fileURLToPath as y,pathToFileURL as l}from"node:url";const d=n.resolve(n.dirname(y(import.me...
L2:
```

### 8. Low: Weak Crypto
- **Category:** Source
- **Confidence:** 64.0%
- **Path:** dist/routes/instance.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/routes/instance.js>)

Package source references weak cryptographic algorithms.

Public source snippet (untrusted):

```javascript
L1: import{spawn as A}from"node:child_process";import{createHash as W,timingSafeEqual as G}from"node:crypto";import I from"node:path";import{fileURLToPath as V}from"node:url";import _ ...
L2:
```

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

Package source references network APIs.

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

Package source references environment variables.

### 11. Medium: Install Persistence
- **Category:** Source
- **Confidence:** 75.0%
- **Path:** dist/services/cli-commands.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/services/cli-commands.js>)

Source writes installer persistence such as shell profile or service configuration.

Public source snippet (untrusted):

```javascript
L1: import{spawnSync as g}from"node:child_process";import{existsSync as h,mkdirSync as I,readFileSync as X,rmSync as Z,unlinkSync as H,writeFileSync as G}from"node:fs";import D from"no...
L2: `)}function le(e){process.stderr.write(`${e}
...
L5: `)}function b(e,r){return e("systemctl",r)}function C(e,r){return r.error?`[runtime-bridge] ${e}\u5931\u8D25: ${r.error.message}`:`[runtime-bridge] ${e}\u5931\u8D25\uFF0Csystemctl ...
L6: npm install -g aws-runtime-bridge`),{handled:!0,exitCode:1}}async function O(e){const r=e.windowsServiceManager;if(!r&&!ie())return ve(e.stderr);const t=e.windowsServiceLogPath||B,...
L7:
```

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

Package source references filesystem APIs.

### 13. High: Same File Env Network Execution
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** dist/adapter/OpencodeSdkAdapter.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/adapter/OpencodeSdkAdapter.js>)

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

Public source snippet (untrusted):

```javascript
L1: import{spawn as E}from"node:child_process";import{EventEmitter as T}from"node:events";import*as S from"node:fs";import*as x from"node:net";import*as A from"node:os";import*as g fro...
L2: `)):t}return this.sdkModule}async waitForServer(t,e,s,r){const i=Date.now()+s;for(;Date.now()<i;){try{if((await t.session.list({query:{directory:e}})).data!==void 0)return}catch{}a...
```

### 14. High: Sandbox Evasion Gated Capability
- **Category:** Source
- **Confidence:** 84.0%
- **Path:** scripts/ensure-playwright-browser.mjs
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/scripts/ensure-playwright-browser.mjs>)

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

Public source snippet (untrusted):

```javascript
L20: */
L21: import { execFile, spawnSync } from "node:child_process";
L22: import { createRequire } from "node:module";
...
L34: try {
L35: const packageJsonPath = require.resolve("playwright/package.json");
L36: return join(dirname(packageJsonPath), "cli.js");
...
L49: encoding: "utf-8",
L50: shell: process.platform === "win32",
L51: stdio: ["ignore", "pipe", "ignore"],
L52: });
L53: if (result.status === 0 && result.stdout) {
L54: const url = result.stdout.trim();
```

### 15. High: Obfuscated Payload Loader
- **Category:** Source
- **Confidence:** 86.0%
- **Path:** node\_modules/playwright/lib/common/index.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright/lib/common/index.js>)

Source contains an obfuscated payload loader that reconstructs and executes hidden code.

Public source snippet (untrusted):

```javascript
L65: getFromCompilationCache: () => getFromCompilationCache,
L66: getUserData: () => getUserData,
L67: installSourceMapSupport: () => installSourceMapSupport,
...
L80: var { calculateSha1 } = require("playwright-core/lib/coreBundle").utils;
L81: var cacheDir = process.env.PWTEST_CACHE_DIR || (() => {
L82: if (process.platform === "win32")
L83: return import_path.default.join(import_os.default.tmpdir(), `playwright-transform-cache`);
...
L100: return {
L101: map: JSON.parse(import_fs.default.readFileSync(sourceMapPath, "utf-8")),
L102: url: source
...
L407: return file2;
L408: return import_path2.default.relative(process.cwd(), file2);
```

### 16. Critical: Trojan Source Unicode
- **Category:** Source
- **Confidence:** 90.0%
- **Path:** node\_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-By56iMx7.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-By56iMx7.js>)

Source contains bidi control or invisible Unicode characters associated with Trojan Source attacks.

Public source snippet (untrusted):

```javascript
L7: contains invisible/control Unicode U+200B (zero width space)
                             height: `+(r-t)+`px`))}function d(t,n,r){var a=K(i,t),o=a.text.length,d,f;function p(n,r){return wr(e,J(t,n),`div`,a,r)}function m(t,n,r){var i=Ar(e,a,null,t),o=n==`ltr`==(r==`after`)?`left`:`right`;return p(r==
```

### 17. High: Cross File Remote Execution Context
- **Category:** Source
- **Confidence:** 72.0%
- **Path:** node\_modules/playwright-core/lib/coreBundle.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright-core/lib/coreBundle.js>)

Source spawns a local helper that also contains network and dynamic execution context; review data flow before blocking.

Public source snippet (untrusted):

```javascript
Cross-file remote execution chain: node_modules/playwright-core/lib/coreBundle.js spawns node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js; helper contains network access plus dynamic code execution.
L470: 
L471: // packages/isomorphic/base64.ts
L472: function base64ByteLength(data) {
...
L587: }
L588: return { data: Buffer.from(buffer), width: size.width, height: size.height };
L589: }
...
L3829: ["BrowserContext.setNetworkInterceptionPatterns", { title: "Route requests", group: "route" }],
L3830: ["BrowserContext.[redacted]", { title: "Route WebSockets", group: "route" }],
L3831: ["BrowserContext.setOffline", { title: "Set offline mode" }],
...
L5592: }
L5593: case "stdout": {
L5594: contextEntry.stdio.push(event);
```

### 18. High: Trigger Reachable Persistence
- **Category:** Source
- **Confidence:** 94.0%
- **Path:** dist/services/cli-commands.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/services/cli-commands.js>)

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

Public source snippet (untrusted):

```javascript
Trigger-reachable persistence chain: scripts.start -> dist/index.js -> dist/services/cli-commands.js
L1: import{spawnSync as g}from"node:child_process";import{existsSync as h,mkdirSync as I,readFileSync as X,rmSync as Z,unlinkSync as H,writeFileSync as G}from"node:fs";import D from"no...
L2: `)}function le(e){process.stderr.write(`${e}
...
L5: `)}function b(e,r){return e("systemctl",r)}function C(e,r){return r.error?`[runtime-bridge] ${e}\u5931\u8D25: ${r.error.message}`:`[runtime-bridge] ${e}\u5931\u8D25\uFF0Csystemctl ...
L6: npm install -g aws-runtime-bridge`),{handled:!0,exitCode:1}}async function O(e){const r=e.windowsServiceManager;if(!r&&!ie())return ve(e.stderr);const t=e.windowsServiceLogPath||B,...
L7:
```

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

Package source contains high-entropy string patterns.

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

Package source contains URL literals.

### 21. Medium: Ships Wasm Module
- **Category:** Artifact Inventory
- **Confidence:** 70.0%
- **Path:** package/acode/dist/grammars/grammars/tree-sitter-go.wasm
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/package/acode/dist/grammars/grammars/tree-sitter-go.wasm>)

Package ships WebAssembly modules.

Public source snippet (untrusted):

```text
path = [redacted]-sitter-go.wasm
kind = wasm_module
sizeBytes = 217182
magicHex = [redacted]
```

### 22. Medium: Ships Build Helper
- **Category:** Artifact Inventory
- **Confidence:** 70.0%
- **Path:** node\_modules/playwright-core/bin/reinstall\_msedge\_dev\_win.ps1
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1>)

Package ships non-JavaScript build or shell helper files.

Public source snippet (untrusted):

```text
path = node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1
kind = build_helper
sizeBytes = 869
magicHex = [redacted]
```

### 23. 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.

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

Package manifest does not declare a clear license.

### 25. High: Semantic Analysis Limited
- **Category:** Scanner Coverage
- **Confidence:** 100.0%
- **Path:** dist/remote-desktop/system-backend.js\#virtual:string-array:round1
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/remote-desktop/system-backend.js%23virtual%3Astring-array%3Around1>)

A bounded semantic-analysis stage reached its safety limit; remaining detectors completed, but this package requires AI review.

Public source snippet (untrusted):

```text
stage = ast_semantic_analysis; reason = ast_parse_error; limitedFiles = 8
```

### 26. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** node\_modules/playwright/lib/common/index.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright/lib/common/index.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = node_modules/playwright/lib/common/index.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 27. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** node\_modules/playwright/lib/runner/index.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright/lib/runner/index.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = node_modules/playwright/lib/runner/index.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 28. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/adapter/ClaudeSdkAdapter.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/adapter/ClaudeSdkAdapter.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/adapter/ClaudeSdkAdapter.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 29. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/adapter/OpencodeSdkAdapter.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/adapter/OpencodeSdkAdapter.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/adapter/OpencodeSdkAdapter.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 30. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/index.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/index.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/index.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 31. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/routes/terminal.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/routes/terminal.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/routes/terminal.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 32. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** node\_modules/playwright-core/lib/utilsBundle.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/node_modules/playwright-core/lib/utilsBundle.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = node_modules/playwright-core/lib/utilsBundle.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 33. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** scripts/ensure-playwright-browser.mjs
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/scripts/ensure-playwright-browser.mjs>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = scripts/ensure-playwright-browser.mjs
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 34. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/routes/git.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/routes/git.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/routes/git.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 35. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/routes/pty.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/routes/pty.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/routes/pty.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 36. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/services/cli-commands.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/services/cli-commands.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/services/cli-commands.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 37. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/services/plugin-manager.js
- **Public source:** [View source](<https://unpkg.com/aws-runtime-bridge@1.9.144/dist/services/plugin-manager.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = aws-runtime-bridge@1.9.142
matchedPath = dist/services/plugin-manager.js
matchedIdentity = npm:YXdzLXJ1bnRpbWUtYnJpZGdl:1.9.142
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

## Dependencies and install lifecycle
- **Lifecycle scripts present:** Yes
- **Published lifecycle scripts:** postinstall, preinstall, prepublishOnly
- **Dependencies:** 20
- **Optional dependencies:** 2
- **Peer dependencies:** 4
- **Development dependencies:** 23
- **Published dependency-graph edges:** 26

### Published dependency entries
- @agentswork/acode file:package/acode (Dependency)
- @modelcontextprotocol/sdk ^1.27.1 (Dependency)
- archiver ^8.0.0 (Dependency)
- axios ^1.7.9 (Dependency)
- cors ^2.8.5 (Dependency)
- diff ^7.0.0 (Dependency)
- express ^4.21.2 (Dependency)
- js-yaml ^4.1.1 (Dependency)
- koffi ^3.1.4 (Dependency)
- multer ^2.1.1 (Dependency)
- node-pty ^1.0.0 (Dependency)
- node-screenshots ^0.2.8 (Dependency)
- playwright ^1.62.0 (Dependency)
- tar ^7.5.15 (Dependency)
- unzipper ^0.12.3 (Dependency)
- uuid ^11.0.3 (Dependency)
- web-tree-sitter ^0.25.4 (Dependency)
- ws ^8.14.2 (Dependency)
- yaml ^2.3.4 (Dependency)
- zod ^4.1.12 (Dependency)
- node-windows ^1.0.0-beta.8 (OptionalDependency)
- sharp ^0.35.3 (OptionalDependency)
- @anthropic-ai/claude-agent-sdk ^0.3.143 (PeerDependency)
- @anthropic-ai/sdk ^0.96.0 (PeerDependency)
- @openai/codex-sdk ^0.130.0 (PeerDependency)
- @opencode-ai/sdk ^1.3.13 (PeerDependency)

## Package metadata
- **Package:** aws-runtime-bridge
- **Ecosystem:** npm
- **Version:** 1.9.144
- **Version published:** 2026-09-04T09:03:09.281Z
- **Package first seen:** 2026-07-18T11:16:13.424Z
- **Package last seen:** 2026-09-04T10:42:35.569Z
- **Known versions:** 29
- **Latest version:** 1.9.144
- **Appeal under review:** No
- **Description:** AgentsWorkStudio runtime bridge service for machine-level agent runtime integration
- **Runtime engines:** node: \>=20.0.0 \<25
- **Artifact files:** 649
- **Artifact unpacked size:** 40,260,525 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/aws-runtime-bridge/v/1.9.144>)
