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

# @siranjeevan/gitnest@1.0.3 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** — Remote release content can become executable; GitHub identity and device metadata are exfiltrated to a third-party Firestore project.

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

Installation silently fetches an unverified native executable, which is later run by the CLI. After a user logs in, the Rust source transmits their GitHub username, email, OS, and architecture to Firestore despite no opt-in.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Malicious
- **Confidence:** 98.0%
- **Started:** 2026-08-09T08:58:38.546Z
- **Finished:** 2026-08-09T08:59:28.518Z
- **Download time:** 509 ms
- **Static scan time:** 29 ms
- **AI review time:** 49433 ms
- **Total time:** 49972 ms

## Security analysis

### Published attack-surface review

- **Summary:** Installation silently fetches an unverified native executable, which is later run by the CLI. After a user logs in, the Rust source transmits their GitHub username, email, OS, and architecture to Firestore despite no opt-in.

- **Trigger:** npm postinstall; subsequently running gitnest and completing OAuth login

- **Impact:** Remote release content can become executable; GitHub identity and device metadata are exfiltrated to a third-party Firestore project.

- **Evidence paths:** package.json, bin/install.js, bin/gitnest.js, src/services/telemetry\_service.rs, src/cli/handlers.rs, README.md

- **Review source:** ai\_review

- **Reviewed:** 2026-08-09T08:59:28.518Z

### AI review details

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

- **Mechanism:** unchecked native payload installation plus undisclosed identity telemetry

- **Attack narrative:** The postinstall hook downloads and extracts a native GitNest binary without checksum or signature verification, and the launcher executes it later. Independently, the login flow obtains GitHub identity data and unconditionally calls telemetry code that patches a Firestore users collection with the real GitHub username and email plus device metadata. This contradicts the package’s stated privacy claim and is not controlled by the configuration telemetry flag.

- **Rationale:** Source establishes concrete undisclosed identity exfiltration and an unchecked install-time native-payload chain. These are sufficient for a malicious firewall verdict.

- **Files touched:** package.json, bin/install.js, bin/gitnest.js, vendor/gitnest, src/services/telemetry\_service.rs, src/cli/handlers.rs

- **Network endpoints:** https://github.com/siranjeevan/GitNest/releases/download/v1.0.3/, https://firestore.googleapis.com/v1/projects/projects-495f4/databases/(default)/documents/telemetry/, https://firestore.googleapis.com/v1/projects/projects-495f4/databases/(default)/documents/users/

### Review decision

- **Verdict:** Malicious

- **Confidence:** 98.0%

- **Recommended action:** publish\_block

- **Intent class:** Malware

- **False-positive risk:** Low

- **Evidence for:** package.json runs bin/install.js in postinstall., bin/install.js downloads an unchecked release archive and installs vendor/gitnest., bin/gitnest.js executes the installed native binary with inherited environment., src/services/telemetry\_service.rs sends GitHub username and email to Firestore., src/cli/handlers.rs calls telemetry after OAuth login without a telemetry opt-in., README.md says identities are never transmitted, contradicting the source.

- **Evidence against:** OAuth, SSH-key upload, and git operations are tied to explicit CLI login/workflow actions., No source evidence of AI-agent control-surface mutation or destructive install-time behavior.

## Public findings

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

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = node bin/install.js
```

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

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

Public source snippet (untrusted):

```json
scripts.postinstall = node bin/install.js
```

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

Package declares npm scripts.

### 4. High: High Secret
- **Category:** Secrets
- **Confidence:** 85.0%
- **Path:** src/config/model.rs
- **Public source:** [View source](<https://unpkg.com/@siranjeevan/gitnest@1.0.3/src/config/model.rs>)

Package contains a high-severity secret pattern.

Public source snippet (untrusted):

```rust
patternName = google_api_key
severity = high
line = 59
matchedText = api_key:...g(),
```

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

Package source references network APIs.

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

Package source references environment variables.

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

Package source references filesystem APIs.

### 8. High: Unverified Remote Native Payload Install
- **Category:** Source
- **Confidence:** 94.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/@siranjeevan/gitnest@1.0.3/package.json>)

Install-time source downloads a native archive from a fixed external host without transport verification, extracts it, and installs an executable payload.

Public source snippet (untrusted):

```json
scripts.postinstall = node bin/install.js
Install-time code downloads an unverified remote native archive, stages it locally, activates an executable path, and exposes it to process execution.
L4: const path = require('path');
L5: const https = require('https');
L6: const { execSync } = require('child_process');
...
L16: if (platform === 'darwin') {
L17: artifactName = arch === 'arm64' ? `gitnest-v${VERSION}-macos-arm64.tar.gz` : `gitnest-v${VERSION}-macos-x86_64.tar.gz`;
L18: } else if (platform === 'linux') {
L19: if (arch === 'x64') {
L20: artifactName = `gitnest-v${VERSION}-linux-x86_64.tar.gz`;
L21: } else {
...
L31: 
L32: const downloadUrl = `https://github.com/${REPO}/releases/download/v${VERSION}/${artifactName}`;
L33: const binDir = path.join(__dirname, '..', 'vendor');
```

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

Package source contains high-entropy string patterns.

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

Package source contains URL literals.

### 11. Medium: Ships Build Helper
- **Category:** Artifact Inventory
- **Confidence:** 70.0%
- **Path:** install.sh
- **Public source:** [View source](<https://unpkg.com/@siranjeevan/gitnest@1.0.3/install.sh>)

Package ships non-JavaScript build or shell helper files.

Public source snippet (untrusted):

```shell
path = install.sh
kind = build_helper
sizeBytes = 1410
magicHex = [redacted]
```

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

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

### 13. High: Previous Version Dangerous Delta
- **Category:** Supply Chain
- **Confidence:** 93.0%
- **Path:** bin/install.js
- **Public source:** [View source](<https://unpkg.com/@siranjeevan/gitnest@1.0.3/bin/install.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 = @siranjeevan/gitnest@1.0.1
matchedIdentity = npm:QHNpcmFuamVldmFuL2dpdG5lc3Q:1.0.1
similarity = 0.667
summary = stored previous version shares package body but lacks this dangerous source file
```

### 14. High: Secret Pattern
- **Category:** Secrets
- **Confidence:** 75.0%
- **Path:** src/config/model.rs
- **Public source:** [View source](<https://unpkg.com/@siranjeevan/gitnest@1.0.3/src/config/model.rs>)

Google API key in src/config/model.rs

Public source snippet (untrusted):

```rust
patternName = google_api_key
severity = high
line = 59
matchedText = api_key:...g(),
```

### 15. High: Secret Pattern
- **Category:** Secrets
- **Confidence:** 75.0%
- **Path:** src/services/telemetry\_service.rs
- **Public source:** [View source](<https://unpkg.com/@siranjeevan/gitnest@1.0.3/src/services/telemetry_service.rs>)

Google API key in src/services/telemetry\_service.rs

Public source snippet (untrusted):

```rust
patternName = google_api_key
severity = high
line = 11
matchedText = .or_else...()))
```

## 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:** @siranjeevan/gitnest
- **Ecosystem:** npm
- **Version:** 1.0.3
- **License:** MIT
- **Version published:** 2026-08-08T13:26:42.662Z
- **Package first seen:** 2026-08-09T08:59:22.429Z
- **Package last seen:** 2026-08-09T09:00:13.146Z
- **Known versions:** 3
- **Latest version:** 1.0.4
- **Appeal under review:** No
- **Description:** One Workspace. Multiple Git Identities.
- **Author:** GitNest Team
- **Keywords:** git, ssh, identity, cli, tui, github
- **Artifact files:** 62
- **Artifact unpacked size:** 373,423 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/@siranjeevan/gitnest/v/1.0.3>)
- [Repository](<https://github.com/siranjeevan/GitNest.git>)
- [Homepage](<https://github.com/siranjeevan/GitNest#readme>)
- [Issues](<https://github.com/siranjeevan/GitNest/issues>)
