sass-short-trader-delta-neutral
Audited by Socket on Mar 21, 2026
2 alerts found:
SecurityObfuscated FileSUSPICIOUS: the skill’s capabilities mostly match its stated purpose, but that purpose is high risk because it enables autonomous financial trading, scheduled execution, and broker-facing actions without per-order confirmation once live mode is enabled. No clear malware or credential-stealing behavior is evident from the provided text, but the real-world action risk is substantial.
The file itself contains no obvious direct malware-like constructs (no remote command execution, no obfuscated payloads, no hardcoded credentials apart from reading env/CLI). However, it exposes a powerful HTTP endpoint protected by a single static secret header. If that secret is leaked or guessed, an attacker can trigger database operations, model retraining, promotion checks, scanning, monitoring, or cancel/execute live trading actions (depending on server configuration). Primary recommendations: protect and rotate the webhook secret, avoid enabling --allow-live on publicly exposed servers, require stronger authentication (signed payloads, short-lived tokens, IP allowlists), add replay protection and rate limiting, sanitize/validate live_controls strictly, and review the downstream modules (self_learning, strategy_engine, serendb_bootstrap) for malicious or insecure behavior. The code should avoid returning raw exception messages to callers to prevent information leakage.