AI Security Review
scanned 11d ago · by lpm-firewall-aiNo confirmed malicious attack surface in the inspected JavaScript wrapper. The install-time network download and binary execution are package-aligned for a Rust CLI distributed as prebuilt release artifacts.
Static reason
One or more suspicious static signals were detected.
Trigger
npm install postinstall or running the concord CLI
Impact
Downloads/extracts the Concord release binary and runs it when the user invokes concord
Mechanism
platform artifact downloader and CLI launcher
Rationale
Static inspection found an npm wrapper that downloads and launches a package-aligned prebuilt Concord binary from the declared GitHub release, with no JS evidence of credential theft, exfiltration, persistence, or AI-agent control-surface mutation. The scanner signals are explained by the documented installer/launcher behavior for this CLI.
Evidence
package.jsoninstall.jsbinary.jsbinary-install.jsrun-concord.jsREADME.mdnode_modules/.bin_real
Network endpoints1
github.com/chojs23/concord/releases/download/v2.2.10
Decision evidence
public snapshotAI called this Clean at 88.0% confidence as Benign with medium false-positive risk.
Evidence for block
- package.json defines postinstall: node ./install.js
- binary-install.js downloads platform artifacts and extracts them into node_modules/.bin_real
- binary-install.js uses spawnSync for tar/unzip/powershell and later executes the installed concord binary
Evidence against
- package.json describes a Discord TUI CLI and bin concord maps to run-concord.js
- install.js only calls local binary.install(false)
- binary.js constructs artifact URLs only from package.json GitHub release URL and supported platform artifact names
- No source matches for env/credential harvesting, npmrc/ssh access, persistence, or destructive project writes
- README documents npm package installs prebuilt binary from GitHub Release artifacts
Behavioral surface
ChildProcessFilesystemNetwork
UrlStrings
CopyleftLicense
Source & flagged code
2 flagged · loading sourcepackage.jsonView file
•scripts.postinstall = node ./install.js
High
Install Time Lifecycle Scripts
Package defines install-time lifecycle scripts.
package.jsonView on unpkg•scripts.postinstall = node ./install.js
Medium
Ambiguous Install Lifecycle Script
Install-time lifecycle script is not statically allowlisted and needs review.
package.jsonView on unpkgFindings
1 High2 Medium4 Low
HighInstall Time Lifecycle Scriptspackage.json
MediumAmbiguous Install Lifecycle Scriptpackage.json
MediumNetwork
LowScripts Present
LowFilesystem
LowUrl Strings
LowCopyleft License