hpc
Fail
Audited by Gen Agent Trust Hub on Sep 7, 2026
Risk Level: HIGHREMOTE_CODE_EXECUTIONEXTERNAL_DOWNLOADSCREDENTIALS_UNSAFEINDIRECT_PROMPT_INJECTION
Full Analysis
- [REMOTE_CODE_EXECUTION]: The documentation describes installing the Pixi package manager using the command
curl -fsSL https://pixi.sh/install.sh | bash. This pattern involves downloading and executing a remote script in a single step, which is a common but risky installation method that bypasses traditional package integrity checks. - [EXTERNAL_DOWNLOADS]: Fetches configuration and installation scripts from the official Pixi package manager domain (
pixi.sh). - [CREDENTIALS_UNSAFE]: The connection helper
examples/wrds_conn.pyreads sensitive database credentials from the~/.pgpassfile. While utilizing a dedicated credentials file is a standard security practice for PostgreSQL, the programmatic extraction of these secrets for URI construction involves handling plaintext credentials from the filesystem. - [INDIRECT_PROMPT_INJECTION]: Slurm job templates use
sedto extract tasks from an external file (items.txt) and pass them as command-line arguments to Python scripts. Ingestion points: Task items are read from a file specified by theTASK_LISTenvironment variable. Boundary markers: None. Capability inventory: The skill facilitates shell command execution and environment manipulation. Sanitization: None; the data is passed directly as a command-line argument, creating a surface for potentially malicious content in the task file to influence execution.
Recommendations
- HIGH: Downloads and executes remote code from: https://pixi.sh/install.sh - DO NOT USE without thorough review
Audit Metadata