ai-ecommerce-expert-batch-sku-color-unification
Audited by Socket on Aug 25, 2026
3 alerts found:
Anomalyx2SecurityNo direct evidence of malware (no obfuscated payloads, no command execution beyond running a known external package, no direct data theft routines). However, the module dynamically executes an npm dependency via npx using the unpinned '@latest' tag and forwards MCP_TOKEN and API_URL to that dependency. This creates a significant supply-chain and credential-handling risk: if the npm package is compromised or changes behavior, it can access the token and act on the user's behalf.
该技能的功能、数据流和所需权限大体符合“电商商品多图统一换色”目的,未见明显恶意或无关的数据外传路径。主要风险在于用 npx 运行未固定版本的外部 CLI,并把 MCP_TOKEN 交给该 CLI;这更像中等供应链/凭证转发风险,而非确认恶意。
This snippet does not contain overt malware, but it creates a meaningful supply-chain execution risk: it uses npx to run an unpinned '@latest' package (non-deterministic, changeable at runtime) and it passes a sensitive token via environment variables to that external dependency. If the dependency or its supply chain is compromised, the attacker would likely gain the token and the ability to perform arbitrary actions on the host and/or make authenticated API calls. Pin versions, verify integrity, minimize token exposure (scoping/least privilege), and restrict outbound network access for the spawned process.