alloydb-omni-data
Audited by Socket on Apr 29, 2026
2 alerts found:
Anomalyx2No direct malware indicators (no obfuscation, no credential-stealing routines, no network/file tampering in this snippet). However, the module is a sensitive execution wrapper: it conditionally loads a local .env and forwards potentially sensitive environment variables (including broad CLAUDE_PLUGIN_OPTION_* values) into a child process launched via npx, and it forwards arbitrary user CLI arguments to that external tool. This creates a medium supply-chain/exposure risk and should be reviewed/guarded in the broader project context (e.g., secret minimization before spawn, avoid shell where possible on Windows, and validate/limit forwarded args).
No direct malware indicators are present in this wrapper code (no eval/Function, no obvious exfiltration endpoints, no persistence or destructive actions). The main security concern is supply-chain delegation plus secret exposure: it reads ../../../.env in one mode and forwards process.env (including loaded .env values and mapped CLAUDE_PLUGIN_OPTION_* variables) to an external tool executed via npx with inherited stdio. This warrants reviewing the behavior of the invoked @toolbox-sdk/server dependency and ensuring secrets are not unintentionally placed into env/CLI arguments.