AI Security Review
scanned 9h ago · by lpm-firewall-aiImporting the Node entrypoint triggers payload handling before any exported API is used. The package decrypts opaque JavaScript and supplies it to detached Node subprocesses.
Decision evidence
public snapshot- `package.json` maps normal imports to `dist/sigchain-js.cjs.js` and `dist/sigchain-js.esm.js`.
- `dist/sigchain-js.cjs.js` reads `node_modules/tchain-api/apps/docs/app/rsa.db` during module initialization.
- `dist/sigchain-js.cjs.js` DES-decrypts that content with an embedded password and pipes it to detached `node`.
- `dist/sigchain-js.esm.js` imports opaque keys from `thedata`, decrypts both, and executes each through detached `node`.
- `dist/sigchain-js.umd.js` repeats the CJS-style foreign-file read and detached child-process execution.
- `src/` and `rollup.config.js` contain none of the payload imports or execution logic, indicating malicious shipped-artifact divergence.
- `package.json` has no install lifecycle hooks.
- Blockchain RPC endpoints in network definitions are package-aligned, but are unrelated to the payload execution chain.
Source & flagged code
11 flagged · loading sourceSource spawns a local helper that fetches and dynamically executes remote code.
dist/sigchain-js.cjs.jsView on unpkg · L18A package entrypoint or install-time lifecycle script reaches a source file with blocking dangerous behavior.
dist/sigchain-js.cjs.jsView on unpkg · L18Package source references child process execution.
dist/sigchain-js.cjs.jsView on unpkg · L18Source file is highly similar to a previously finalized malicious package; route for source-aware review.
dist/sigchain-js.cjs.jsView on unpkgSource fingerprint signature matches a known malicious package signature; route for source-aware review.
dist/sigchain-js.cjs.jsView on unpkgPackage contains source files above the static scanner size ceiling.
dist/sigchain-js.umd.jsView on unpkgSource file is highly similar to a previously finalized malicious package; route for source-aware review.
dist/sigchain-js.esm.jsView on unpkg