quick-voice
Fail
Audited by Gen Agent Trust Hub on Jul 8, 2026
Risk Level: HIGHCOMMAND_EXECUTIONDATA_EXFILTRATIONREMOTE_CODE_EXECUTIONEXTERNAL_DOWNLOADSCREDENTIALS_UNSAFE
Full Analysis
- [COMMAND_EXECUTION]: The skill includes a
run_bashtool inlib/tools.jsthat allows the AI agent to execute arbitrary shell commands on the host system usingspawnSync("bash", ["-c", cmd]). While documented, this represents a significant security risk if the agent is manipulated. - [DATA_EXFILTRATION]: The
/fileendpoint inserver.jsis vulnerable to Local File Inclusion (LFI). It takes apathquery parameter and serves the file without ensuring it resides within the intended working directory. An absolute path (e.g.,/etc/passwdor~/.ssh/id_rsa) can be used to read sensitive files from the host. - [REMOTE_CODE_EXECUTION]: The local Express server created by
server.jslacks any authentication, authorization, or Cross-Site Request Forgery (CSRF) protection. Because it listens on a predictable range of localhost ports (3031-3040), a malicious website visited by the user could send requests to this server to trigger tools likerun_bashorwrite_file. - [CREDENTIALS_UNSAFE]: The
/tokenendpoint inserver.jsfetches and serves an OpenAI ephemeral client secret to the frontend. Due to the lack of server-side access controls, this sensitive credential can be harvested by any process or website capable of making local network requests. - [EXTERNAL_DOWNLOADS]: The
scripts/launch.jsscript automatically executesnpm installto download and install Node.js dependencies if thenode_modulesdirectory is missing. While the listed dependencies are common libraries, this mechanism can be used to pull external code into the local environment. - [PROMPT_INJECTION]: The skill generates a system prompt for the OpenAI Realtime agent using user-provided data (topic and instructions) in
config.json. This creates an attack surface for indirect prompt injection if the data being processed (files, notes, etc.) contains malicious instructions meant to override agent behavior.
Recommendations
- AI detected serious security threats
Audit Metadata