Static Scan Results
scanned 2d ago · by rust-scannerStatic analysis flagged 13 finding(s) at 72.0% confidence. This version is warn-only unless an AI or security-team review confirms malicious behavior.
Static reason
One or more suspicious static signals were detected.
Decision evidence
public snapshotBehavioral surface
ChildProcessCryptoDynamicRequireEnvironmentVarsFilesystemNetworkShell
HighEntropyStringsUrlStrings
CopyleftLicense
Source & flagged code
4 flagged · loading sourcesrc/cli/utils/export.tsView file
1import { spawn } from 'child_process';
L2: import fs from 'fs/promises';
High
Child Process
Package source references child process execution.
src/cli/utils/export.tsView on unpkg · L1src/env.jsView file
8* Usage:
L9: * const { extra } = require('@everystack/cli/env').load();
L10: * module.exports = { expo: { extra } };
Medium
Dynamic Require
Package source references dynamic require/import behavior.
src/env.jsView on unpkg · L8src/handler/signing.tsView file
2L3: export function signRSASHA256(data: string, privateKey: string): string {
L4: const sign = crypto.createSign('RSA-SHA256');
...
L6: sign.end();
L7: return sign.sign(privateKey, 'base64');
L8: }
Low
Weak Crypto
Package source references weak cryptographic algorithms.
src/handler/signing.tsView on unpkg · L2src/cli/commands/lighthouse.tsView file
8* Config-free: the target URL is the deployed router URL from SST outputs
L9: * (resolveConfig), or --host. Requires `npx lighthouse` and a headless Chrome.
L10: */
L11:
L12: import { execFileSync } from 'node:child_process';
L13: import { readFileSync, mkdtempSync, writeFileSync } from 'node:fs';
High
Runtime Package Install
Package source invokes a package manager install command at runtime.
src/cli/commands/lighthouse.tsView on unpkg · L8Findings
3 High4 Medium6 Low
HighChild Processsrc/cli/utils/export.ts
HighShell
HighRuntime Package Installsrc/cli/commands/lighthouse.ts
MediumDynamic Requiresrc/env.js
MediumNetwork
MediumEnvironment Vars
MediumStructural Risk Force Deep Review
LowScripts Present
LowWeak Cryptosrc/handler/signing.ts
LowFilesystem
LowHigh Entropy Strings
LowUrl Strings
LowCopyleft License