higgsfield-generate
Fail
Audited by Gen Agent Trust Hub on Jul 14, 2026
Risk Level: HIGHREMOTE_CODE_EXECUTIONEXTERNAL_DOWNLOADSCOMMAND_EXECUTIONPROMPT_INJECTION
Full Analysis
- [REMOTE_CODE_EXECUTION]: The skill instructions direct the agent to download and execute a remote shell script using the pattern
curl -fsSL ... | sh. This occurs in the 'Optional dependency' and 'Step 0 — Bootstrap' sections to install the Higgsfield CLI. - Evidence:
curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | shinSKILL.md. - [EXTERNAL_DOWNLOADS]: The skill requires downloading a binary (
@higgsfield/cli) from a remote repository. While this is the intended purpose of the skill, executing unverified code from the internet poses a security risk. - [COMMAND_EXECUTION]: The skill extensively uses the
Bashtool to executehiggsfieldCLI commands, perform account status checks, and manage media uploads. It also uses shell pipes (echo "..." | higgsfield ...) which can be exploited if user input is not properly sanitized. - [PROMPT_INJECTION]: The skill is vulnerable to indirect prompt injection because it ingests data from untrusted external URLs to fetch product information.
- Ingestion points: The command
higgsfield marketing-studio products fetch --url <url>inSKILL.mdandreferences/marketing-products.mdreads content from arbitrary web pages. - Boundary markers: Absent. The instructions do not specify delimiters or warnings to ignore instructions embedded within the fetched URL content.
- Capability inventory: The skill has access to
Bash,Read,Write, andEdittools, allowing it to execute subprocesses and modify local files based on instructions received. - Sanitization: Absent. There is no mention of validating or escaping the content retrieved from the external URLs before it is processed by the agent or the CLI.
Recommendations
- HIGH: Downloads and executes remote code from: https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh - DO NOT USE without thorough review
- AI detected serious security threats
Audit Metadata