oci-order-detail-query
Fail
Audited by Gen Agent Trust Hub on Jul 17, 2026
Risk Level: HIGHCREDENTIALS_UNSAFEEXTERNAL_DOWNLOADSREMOTE_CODE_EXECUTIONCOMMAND_EXECUTIONPROMPT_INJECTION
Full Analysis
- [CREDENTIALS_UNSAFE]: The skill instructs the agent to execute
cat ~/.duckdbrcto verify configuration. This file contains cleartext database credentials, includingHOST,USER, andPASSWORD, which are then exposed to the agent's context. - [EXTERNAL_DOWNLOADS]: The skill performs a remote download and installation of the DuckDB CLI from the official domain
https://install.duckdb.orgusing a shell pipe. This is a trusted source but remains a notable execution pattern. - [REMOTE_CODE_EXECUTION]: Employs a
curl | shpattern to install the DuckDB binary directly from a remote URL. - [COMMAND_EXECUTION]: The skill makes extensive use of shell commands to execute SQL queries via
duckdb -c, manage local CSV files, and inspect data usingheadandwc -l. - [PROMPT_INJECTION]: The skill processes untrusted data from an external database, creating a surface for indirect prompt injection.
- Ingestion points: Data is queried from StarRocks, exported to local CSV files (e.g.,
query_result.csv), and then read by the agent usingheadorcat. - Boundary markers: None identified.
- Capability inventory: The agent has the ability to execute arbitrary bash commands and SQL queries, and to present files to the user.
- Sanitization: User inputs such as keywords and date ranges are interpolated directly into shell-executed strings without visible escaping or validation.
Recommendations
- HIGH: Downloads and executes remote code from: https://install.duckdb.org - DO NOT USE without thorough review
- AI detected serious security threats
Audit Metadata