ui-ux-pro-max
Fail
Audited by Gen Agent Trust Hub on Feb 16, 2026
Risk Level: HIGHCOMMAND_EXECUTIONREMOTE_CODE_EXECUTIONEXTERNAL_DOWNLOADS
Full Analysis
- Privilege Escalation (HIGH): The file
SKILL.mdcontains instructions for the agent to executesudo apt update && sudo apt install python3. Directing an AI agent to usesudoto acquire administrative permissions is a high-severity security risk.- External Downloads & Unverifiable Dependencies (MEDIUM): TheSKILL.mdfile instructs the agent to install software usingbrew installandwinget install. While these are standard package managers, instructing an agent to download and install arbitrary software from external sources is a potential remote code execution vector.- Indirect Prompt Injection (LOW): This skill has an injection surface where user queries are passed directly to a search script. - Ingestion points:
search.pytakes thequeryargument derived from user requests. - Boundary markers: Absent. There are no delimiters or 'ignore embedded instructions' warnings for the search string.
- Capability inventory: The script
core.pyperforms local BM25 searches on CSV files. It does not have network access or file-write capabilities. - Sanitization:
core.pyuses basic regexre.sub(r'[^\w\s]', ' ', str(text).lower())to clean input, which provides minimal protection against malicious search strings.
Recommendations
- AI detected serious security threats
Audit Metadata