video-recreation
Audited by Socket on Jul 27, 2026
3 alerts found:
Anomalyx2SecuritySUSPICIOUS. The overall capability fits a video-recreation skill, and the listed Python/media dependencies are broadly proportionate. The main concerns are install hygiene, reliance on multiple external services, and especially the documented 'preconfigured' Suno API key mode, which suggests hidden shared credentials or forwarding requests through credentials the user cannot audit. Data flows to official-seeming services are at least directionally consistent with the purpose, but the missing script code and unclear Suno integration prevent a benign classification.
This module is a client for sending prompts and optional base64-encoded local images to an external chat API and returning/parsing descriptions. The main supply-chain/security red flag is the presence of hardcoded fallback credentials (including an API key) in main(), which can enable unauthorized use and accidental exposure of the maintainer’s credentials. Beyond that, it intentionally exfiltrates local image contents and user prompts to a third-party endpoint and may leak server error/response details via exceptions and console output. No clear malware primitives are present in the provided fragment, but the credential anomaly and data-sharing behavior warrant careful review and secret rotation.
No explicit malicious functionality is evident in this module: it primarily performs audio generation (remote API + polling + download) or local WAV synthesis, and it does not include backdoors, command execution, or obvious data theft. However, it presents moderate operational security risk due to (1) unsafe filename construction from untrusted title/name values (potential path traversal/overwrite), and (2) unvalidated downloading from audio_url returned by a remote API (potential SSRF-like behavior if the upstream response can be influenced). Additional review is recommended for the unseen retry/logger components and to harden filename sanitization, URL allowlisting, and logging practices.