speak
Warn
Audited by Gen Agent Trust Hub on Mar 2, 2026
Risk Level: MEDIUMEXTERNAL_DOWNLOADSCOMMAND_EXECUTIONDATA_EXFILTRATIONPROMPT_INJECTION
Full Analysis
- [EXTERNAL_DOWNLOADS]: The
scripts/render_timeline.pyscript contains a function_resolve_reference_audiothat fetches content from arbitrary URLs usingrequests.get. This functionality allows the skill to download and process files from any remote server provided in thevoice-mapconfiguration or as a command argument, which could be exploited for SSRF or to ingest malicious data. - [DATA_EXFILTRATION]: Both
scripts/noiz_tts.pyandscripts/render_timeline.pysend user-provided text and theNOIZ_API_KEY(normalized and passed in theAuthorizationheader) to an external API. The inclusion of a configurable--base-urlargument allows these requests to be redirected. If an attacker tricks the agent into overriding this URL, the API key and potentially sensitive audio/text data could be sent to an untrusted server. - [COMMAND_EXECUTION]: The skill executes external binaries, including
ffmpeg,ffprobe, andkokoro-tts, viasubprocess.run. Although it uses list-based arguments to mitigate shell injection, the complexity of dynamically constructed ffmpeg filters and the use of parameters parsed from untrusted SRT and JSON files create a broad attack surface for command manipulation. - [PROMPT_INJECTION]: The skill is susceptible to indirect prompt injection due to its processing of external data files without robust sanitization.
- Ingestion points: Processes SRT subtitle files, JSON voice-maps, and plain text files from the user's workspace.
- Boundary markers: No delimiters or safety instructions are used to differentiate processed content from system logic.
- Capability inventory: The skill possesses the ability to execute system commands and perform network operations.
- Sanitization: Input parsing relies on basic regex and standard JSON loaders, lacking validation to ensure that external data does not contain instructions aimed at manipulating the LLM's tool usage or parameters.
Audit Metadata