Static Scan Results
scanned 13d ago · by rust-scannerStatic analysis flagged 9 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
ChildProcessCryptoEnvironmentVarsFilesystemNetworkShell
HighEntropyStringsObfuscatedUrlStrings
Source & flagged code
1 flagged · loading sourcedist/commands/credits.jsView file
1import { Command } from 'commander';
L2: import { spawn } from 'node:child_process';
L3: import { get } from '../api.js';
...
L5: import { run, printList } from '../helpers/index.js';
L6: const PRICING_URL = 'https://prompt.gipity.ai/pricing';
L7: function openInBrowser(url) {
L8: // Windows `start` is a cmd.exe builtin, not an executable - spawn can't
L9: // launch it directly, so go through `cmd /c start`. The empty "" is the
L10: // window-title arg; without it a quoted URL would be swallowed as the title.
L11: const [cmd, args] = process.platform === 'darwin' ? ['open', [url]] :
L12: process.platform === 'win32' ? ['cmd', ['/c', 'start', '', url]] :
High
Sandbox Evasion Gated Capability
Source gates dangerous network, credential, or execution behavior behind CI, host, platform, time, or geo fingerprint checks.
dist/commands/credits.jsView on unpkg · L1Findings
1 High3 Medium5 Low
HighSandbox Evasion Gated Capabilitydist/commands/credits.js
MediumNetwork
MediumEnvironment Vars
MediumStructural Risk Force Deep Review
LowScripts Present
LowFilesystem
LowObfuscated
LowHigh Entropy Strings
LowUrl Strings