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.
- package/package.json +1 -1
- package/src/sandbox.js +2 -1
package/package.json
CHANGED
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
|
|