registry  /  pm2-orbit  /  1.2.0

pm2-orbit@1.2.0

High-performance PM2 monitoring dashboard — event-driven, 1000+ processes, < 150KB

AI Security Review

scanned 2d ago · by lpm-firewall-ai

Review flagged AI-agent configuration or capability changes. This remains warn-only unless evidence shows foreign-agent hijack through preinstall/install/postinstall, hidden persistence, exfiltration, remote code execution, or other concrete malicious behavior.

Static reason
High-risk behavior combination matched malicious policy.
Trigger
User runs pm2-orbit CLI or starts dist/server.js
Impact
If exposed beyond localhost without a token, remote users could control PM2 processes and view selected process env/log data; this is a dangerous configuration risk, not confirmed malware.
Mechanism
local PM2 monitoring/control web dashboard with optional user-configured notifications
Rationale
Source inspection supports a package-aligned PM2 dashboard rather than malware: install-time code is non-mutating, and network/file behaviors are dashboard settings, history, logs, and notifications. The remaining risk is powerful unauthenticated runtime control if the user binds the server publicly without configuring a token, so warn rather than block.
Evidence
package.jsonbin/pm2-orbit.jsdist/server.jsdist-ui/sw.jsdist-ui/index.htmlREADME.md~/.pm2-orbit/settings.json~/.pm2-orbit/.key~/.pm2-orbit/history.db~/.pm2-orbit/alerts.json~/.pm2/logs/*
Network endpoints5
127.0.0.1:9823localhost:9823ws://127.0.0.1:9823/ws127.0.0.1:5151ws://127.0.0.1:5151

Decision evidence

public snapshot
AI called this Suspicious at 86.0% confidence as Critical Vulnerability with medium false-positive risk.
Evidence for warning
  • bin/pm2-orbit.js auto-installs pm2 and better-sqlite3 globally via execSync only when CLI is run
  • dist/server.js exposes PM2 control actions restart/stop/start/reload/delete/flush via /api/processes/:id/action
  • dist/server.js exposes selected PM2 process environment values via /api/processes/:id/env
  • dist/server.js can send alert notifications to user-configured WEBHOOK_URL/SLACK_WEBHOOK_URL/DISCORD_WEBHOOK_URL/SMTP settings
  • dist/server.js writes settings/history/alerts under ~/.pm2-orbit
Evidence against
  • package.json postinstall only prints a PM2 install hint; it does not execute installers or mutate files
  • No lifecycle hook writes agent control surfaces, VCS hooks, shell startup files, or autostart entries
  • Network egress is limited to user-configured alert/test endpoints and local UI/websocket serving
  • README and code align with a PM2 monitoring dashboard with process controls, logs, history, settings, and notifications
  • High-entropy blobs are WOFF2 font assets; bundled UI code is expected React/dashboard output
Behavioral surface
Source
ChildProcessCryptoEnvironmentVarsEvalFilesystemNetworkWebSocket
Supply chain
HighEntropyStringsMinifiedObfuscatedProtestwareUrlStrings
ManifestNo manifest risk signals triggered.
scanned 9 file(s), 2.19 MB of source, external domains: 127.0.0.1, accounts.google.com, api.nodemailer.com, discord.com, ethereal.email, fastify.dev, github.com, hooks.slack.com, json-schema.org, localhost.com, mail.google.com, nodemailer.com, plus-innovations.com, pm2.io, pm2.keymetrics.io, raw.githubusercontent.com, react.dev, systeminformation.io, www.buymeacoffee.com, www.w3.org, your-webhook-endpoint.com

Source & flagged code

10 flagged · loading source
package.jsonView file
scripts.postinstall = node -e "try{require.resolve('pm2')}catch{console.log('\n ℹ Install pm2 for process monitoring: npm install -g pm2\n')}"
Critical
Red Install Lifecycle Script

Install-time lifecycle script matches a deterministic static-gate block pattern.

package.jsonView on unpkg
scripts.postinstall = node -e "try{require.resolve('pm2')}catch{console.log('\n ℹ Install pm2 for process monitoring: npm install -g pm2\n')}"
High
Install Time Lifecycle Scripts

Package defines install-time lifecycle scripts.

package.jsonView on unpkg
bin/pm2-orbit.jsView file
67try { L68: const { execSync } = require('child_process'); L69: execSync(`npm install -g ${name}`, { stdio: 'inherit', timeout: 120000 });
High
Child Process

Package source references child process execution.

bin/pm2-orbit.jsView on unpkg · L67
dist/server.jsView file
28|| (${o} === "string" && ${n} && ${n} == +${n} && !(${n} % 1))`).assign(a,(0,Le._)`+${n}`);return;case"boolean":r.elseIf((0,Le._)`${n} === "false" || ${n} === 0 || ${n} === null`).... L29: || ${o} === "boolean" || ${n} === null`).assign(a,(0,Le._)`[${n}]`)}}}function $oe({gen:e,parentData:t,parentDataProperty:i},r){e.if((0,Le._)`${t} !== undefined`,()=>e.assign((0,Le... L30: missingProperty: ${r},
High
Eval

Package source references dynamic code evaluation.

dist/server.jsView on unpkg · L28
423globstar while`,A,ie,M,ce,Te),this.matchOne(A.slice(ie),M.slice(ce),j))return this.debug("globstar found match!",ie,I,Te),!0;if(Te==="."||Te===".."||!$.dot&&Te.charAt(0)==="."){thi... L424: >>> no match, partial?`,A,ie,M,ce),ie===I))}let Ae;if(typeof V=="string"?(Ae=oe===V,this.debug("string match",V,oe,Ae)):(Ae=V.test(oe),this.debug("pattern match",V,oe,Ae)),!Ae)retu... L425: <html lang="en"> ... L434: `;return[i,Buffer.byteLength(i)]}yW.createHtmlDocument=RAe});var bW=S((HHe,vW)=>{"use strict";function PAe(e,t){if(typeof e=="string")return[e];if(e===!1)return[];if(Array.isArray(... L435: at `+e[i].toString();return t}function $Ae(e){if(!e)throw new TypeError("argument namespace is required");var t=Wy(),i=iu(t[1]),r=i[0];function n(s){Vy.call(n,s)}return n._file=r,n... L436: `,"utf8")}}}function iu(e){var t=e.getFileName()||"<anonymous>",i=e.getLineNumber(),r=e.getColumnNumber();e.isEval()&&(t=e.getEvalOrigin()+", "+t);var n=[t,i,r];return n.callSite=e... L437: at `+i[s].toString();return n}return t&&(n+=" at "+lO(t)),n}function HAe(e,t,i){var r="\x1B[36;1m"+this._namespace+"\x1B[22;39m \x1B[33;1mdeprecated\x1B[22;39m \x1B[0m"+e+"\x1B[39m... L438: \x1B[36mat `+i[n].toString(
High
Same File Env Network Execution

A single source file combines environment access, network access, and code or shell execution; review context before blocking.

dist/server.jsView on unpkg · L423
22${g}${O} L23: ${v}`),m.pop(),`{${O}}`}case"number":return isFinite(h)?String(h):t?t(h):"null";case"boolean":return h===!0?"true":"false";case"undefined":return;case"bigint":if(r)return String(h)... L24: `:` L25: `),q=Mie.bind(null,{[b2]:"",[w2]:o,[S2]:N,[_2]:Tb,[Cb]:C,[E2]:R}),X="";p!==null&&(f===void 0?X=q(p):X=q(Object.assign({},p,{name:f})));let B=a instanceof Function?a:a?A2:ire,U=B().... L26: `:""},this._extScope=t,this._scope=new Wr.Scope({parent:t}),this._nodes=[new gw]}toString(){return this._root.render(this.opts)}name(t){return this._scope.name(t)}scopeName(t){retu... ... L28: || (${o} === "string" && ${n} && ${n} == +${n} && !(${n} % 1))`).assign(a,(0,Le._)`+${n}`);return;case"boolean":r.elseIf((0,Le._)`${n} === "false" || ${n} === 0 || ${n} === null`).... L29: || ${o} === "boolean" || ${n} === null`).assign(a,(0,Le._)`[${n}]`)}}}function $oe({gen:e,parentData:t,parentDataProperty:i},r){e.if((0,Le._)`${t} !== undefined`,()=>e.assign((0,Le... L30: missingProperty: ${r},
High
Command Output Exfiltration

Source combines command execution, command-output handling, and outbound requests; review data flow before blocking.

dist/server.jsView on unpkg · L22
2`;for(let s=0;s<r;++s){let o=e.nodes[s],a=t+(s===n?" ":"\u2502 ");i+=t,i+=s===n?"\u2514\u2500":"\u251C\u2500",i+=o.nodes.length===0?"\u2500 ":"\u252C ",i+=gA(o,a).slice(t.length+2... L3: `).slice(0,2).map(i=>i.trim()).join(" -- ")}SA.exports={getPluginName:ZY}});var wh=S((U$e,TA)=>{"use strict";function eJ(e){return e!==null&&typeof e=="object"&&typeof e.then=="fun... L4: causes have become circular...`;let r=Dv(e);return r?(t.add(e),i+` L5: caused by: `+kk(r,t)):i},MQ=e=>kk(e,new Set),Ik=(e,t,i)=>{if(!Qu(e))return"";let r=i?"":e.message||"";if(t.has(e))return r+": ...";let n=Dv(e);if(n){t.add(e);let s=typeof e.cause==... L6: ${v}`,_=`, ... L22: ${g}${O} L23: ${v}`),m.pop(),`{${O}}`}case"number":return isFinite(h)?String(h):t?t(h):"null";case"boolean":return h===!0?"true":"false";case"undefined":return;case"bigint":if(r)return String(h)... L24: `:` L25: `),q=Mie.bind(null,{[b2]:"",[w2]:o,[S2]:N,[_2]:Tb,[Cb]:C,[E2]:R}),X="";p!==null&&(f===void 0?X=q(p):X=q(Object.assign({},p,{name:f})));let B=a instanceof Function?a:a?A2:ire,U=B().... L26: `:""},this._extScope=t,this._scope=new Wr.Scope({parent:t}),this._nodes=[new gw]}toString(){return this._root.render(this.opts)}name(t){retu
High
Sandbox Evasion Gated Capability

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

dist/server.jsView on unpkg · L2
2`;for(let s=0;s<r;++s){let o=e.nodes[s],a=t+(s===n?" ":"\u2502 ");i+=t,i+=s===n?"\u2514\u2500":"\u251C\u2500",i+=o.nodes.length===0?"\u2500 ":"\u252C ",i+=gA(o,a).slice(t.length+2... L3: `).slice(0,2).map(i=>i.trim()).join(" -- ")}SA.exports={getPluginName:ZY}});var wh=S((U$e,TA)=>{"use strict";function eJ(e){return e!==null&&typeof e=="object"&&typeof e.then=="fun... L4: causes have become circular...`;let r=Dv(e);return r?(t.add(e),i+` L5: caused by: `+kk(r,t)):i},MQ=e=>kk(e,new Set),Ik=(e,t,i)=>{if(!Qu(e))return"";let r=i?"":e.message||"";if(t.has(e))return r+": ...";let n=Dv(e);if(n){t.add(e);let s=typeof e.cause==... L6: ${v}`,_=`, ... L22: ${g}${O} L23: ${v}`),m.pop(),`{${O}}`}case"number":return isFinite(h)?String(h):t?t(h):"null";case"boolean":return h===!0?"true":"false";case"undefined":return;case"bigint":if(r)return String(h)... L24: `:` L25: `),q=Mie.bind(null,{[b2]:"",[w2]:o,[S2]:N,[_2]:Tb,[Cb]:C,[E2]:R}),X="";p!==null&&(f===void 0?X=q(p):X=q(Object.assign({},p,{name:f})));let B=a instanceof Function?a:a?A2:ire,U=B().... L26: `:""},this._extScope=t,this._scope=new Wr.Scope({parent:t}),this._nodes=[new gw]}toString(){return this._root.render(this.opts)}name(t){retu
Low
Weak Crypto

Package source references weak cryptographic algorithms.

dist/server.jsView on unpkg · L2
dist-ui/assets/index-WtC1_5oL.jsView file
1import{j as o,_ as Dn}from"./cmdk-D6Y8xHyf.js";import{r as wc,g as cp,a as x,b as $,B as dp,M as Ev,c as fp,S as mp,W as zv,d as Tv,C as Cv,e as hp,f as Av,A as fc,N as Mv,H as Rv,... L2: * @license React ... L16: * LICENSE file in the root directory of this source tree. L17: */var Uh;function Iv(){if(Uh)return Os;Uh=1;var s=Wv(),i=wc(),c=Xv();function u(e){var t="https://react.dev/errors/"+e;if(1<arguments.length){t+="?args[]="+encodeURIComponent(argum... L18: at`)?" (<anonymous>)":-1<a.stack.indexOf("@")?"@unknown:0:0":""}return` ... L23: Error generating stack: `+l.message+` L24: `+l.stack}}var Xn=Object.prototype.hasOwnProperty,Yl=s.unstable_scheduleCallback,da=s.unstable_cancelCallback,Is=s.unstable_shouldYield,fa=s.unstable_requestPaint,ut=s.unstable_now... L25: `).replace(K0,"")}function Jm(e,t){return t=$m(t),$m(e)===t}function Te(e,t,a,l,n,r){switch(a){case"children":typeof l=="string"?t==="body"||t==="textarea"&&l===""||Wl(e,l):(typeof... ... L53: `);function hi(s){return s.label!==void 0}var Ky=3,$y="32px",Jy="16px",Ph=4e3,Fy=356,Wy=14,Iy=20,Py=200;function Wt(...s){return s.filter(Boolean).join(" ")}function e1(s){let[i,c]... L54: `);for(const Z of W)if(Z)try{const
Critical
Credential Exfiltration

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

dist-ui/assets/index-WtC1_5oL.jsView on unpkg · L1
dist-ui/fonts/Exo-400.woff2View file
path = dist-ui/fonts/Exo-400.woff2 kind = high_entropy_blob sizeBytes = 21828 magicHex = [redacted]
High
Ships High Entropy Blob

Package ships high-entropy non-source blobs.

dist-ui/fonts/Exo-400.woff2View on unpkg

Findings

2 Critical7 High4 Medium7 Low
CriticalRed Install Lifecycle Scriptpackage.json
CriticalCredential Exfiltrationdist-ui/assets/index-WtC1_5oL.js
HighInstall Time Lifecycle Scriptspackage.json
HighChild Processbin/pm2-orbit.js
HighEvaldist/server.js
HighSame File Env Network Executiondist/server.js
HighCommand Output Exfiltrationdist/server.js
HighSandbox Evasion Gated Capabilitydist/server.js
HighShips High Entropy Blobdist-ui/fonts/Exo-400.woff2
MediumNetwork
MediumEnvironment Vars
MediumProtestware
MediumStructural Risk Force Deep Review
LowNon Install Lifecycle Scripts
LowScripts Present
LowWeak Cryptodist/server.js
LowFilesystem
LowObfuscated
LowHigh Entropy Strings
LowUrl Strings