dev-log
Audited by Socket on Sep 13, 2026
3 alerts found:
Anomalyx2SecuritySUSPICIOUS: the skill’s debugging purpose mostly matches its behavior, but it requires executing an unpinned third-party npm CLI and optionally tunnels runtime logs through `loca.lt`, creating medium supply-chain and data-exposure risk. No confirmed malicious behavior or real command injection is present in the provided skill text.
The code appears to be legitimate npm release automation and shows no clear malicious behavior. It contains a significant command-injection vulnerability because --tag is directly interpolated into an execSync shell command for npm publish. Validate the tag against npm dist-tag syntax and avoid shell interpolation by using spawnSync/execFileSync with an argument array. Fully escape values used in the dynamic regular expression.
No clear malicious behavior or supply-chain backdoor is present. The code is a readable log HTTP server, but it exposes log reads and deletion without authentication and enables unrestricted cross-origin requests. If bound to a non-local interface, this can permit unauthorized log disclosure and deletion; the root endpoint also reveals network addressing information. Review ./store.js and deployment binding, and add authentication, origin restrictions, and stronger request/resource controls.