Static Scan Results
scanned 1h ago · by rust-scannerStatic analysis completed at 65.0% confidence. No malicious behavior was detected; 12 low-signal pattern(s) were surfaced and cleared.
Static reason
No blocking static signals were detected.
Decision evidence
public snapshotBehavioral surface
ChildProcessCryptoDynamicRequireEnvironmentVarsFilesystemNetworkShellWebSocket
HighEntropyStringsMinifiedUrlStrings
Source & flagged code
4 flagged · loading sourcetests/data-parity/generated-parity.tsView file
9import { fileURLToPath, pathToFileURL } from "node:url";
L10: import { spawnSync } from "node:child_process";
L11: const here = dirname(fileURLToPath(import.meta.url));
High
Child Process
Package source references child process execution.
tests/data-parity/generated-parity.tsView on unpkg · L960// Generated side: build the same value with the generated Foo class and encode.
L61: const gen = (await import(pathToFileURL(modPath).href)) as {
L62: Foo: new () => {
Medium
Dynamic Require
Package source references dynamic require/import behavior.
tests/data-parity/generated-parity.tsView on unpkg · L60build/cli/index.jsView file
1601const stdio = opts.stdio ?? "ignore";
L1602: const child = onWindows ? spawn([cmd, ...args].join(" "), { cwd, stdio, shell: true }) : spawn(cmd, args, { cwd, stdio });
L1603: child.on("error", reject);
High
build/compiler/plugin.jsView file
1import { spawn } from 'node:child_process';
L2: import fs from 'node:fs';
...
L11: async function aiComplete(ai, prompt) {
L12: const key = ai.apiKeyEnv ? process.env[ai.apiKeyEnv] : undefined;
L13: if (ai.endpoint) {
L14: const r = await fetch(ai.endpoint, {
L15: method: 'POST',
High
Same File Env Network Execution
A single source file combines environment access, network access, and code or shell execution; review context before blocking.
build/compiler/plugin.jsView on unpkg · L1Findings
3 High4 Medium5 Low
HighChild Processtests/data-parity/generated-parity.ts
HighShellbuild/cli/index.js
HighSame File Env Network Executionbuild/compiler/plugin.js
MediumDynamic Requiretests/data-parity/generated-parity.ts
MediumNetwork
MediumEnvironment Vars
MediumStructural Risk Force Deep Review
LowNon Install Lifecycle Scripts
LowScripts Present
LowFilesystem
LowHigh Entropy Strings
LowUrl Strings