muaddib-scanner 2.4.1 → 2.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/sandbox.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muaddib-scanner",
3
- "version": "2.4.1",
3
+ "version": "2.4.2",
4
4
  "description": "Supply-chain threat detection & response for npm & PyPI/Python",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/sandbox.js CHANGED
@@ -382,8 +382,9 @@ function detectStaticCanaryExfiltration(report) {
382
382
  for (const file of (report.filesystem?.created || [])) if (file) searchable.push(file);
383
383
  for (const proc of (report.processes?.spawned || [])) if (proc.command) searchable.push(proc.command);
384
384
 
385
- // Install output
385
+ // Install + entrypoint output
386
386
  if (report.install_output) searchable.push(report.install_output);
387
+ if (report.entrypoint_output) searchable.push(report.entrypoint_output);
387
388
 
388
389
  const allOutput = searchable.join('\n');
389
390