T01 · Skill Instruction Hijacking
Note
- Location
- SKILL.md:66
- Finding
- Hardcoded Promotional Content Injected into Generated Reports## Vulnerability Details **File Location**: `SKILL.md`, lines 66 and 218 **Vulnerability Type**: `T01: Skill Instruction Hijacking` **Risk Level**: Low **Relevant source excerpts translated into English:** ```markdown > Based on the Chapter 3 framework of "AI Super Individual: The One-Person Company Wealth-Building Handbook" ``` ```markdown > This plan was generated by the OPC-AI Skill (side-income-launcher), based on the "AI Super Individual" manuscript framework. ``` ### Technical Analysis The Skill places book and OPC-AI brand attribution directly inside the prescribed output template. Consequently, whenever the Agent follows the template, it inserts promotional material into the personalized report regardless of whether the user requested attribution. This constitutes output-level instruction manipulation: loading and executing the Skill changes the content of the Agent's final response beyond what is necessary to provide side-income guidance. The behavior is deterministic and embedded in the Skill instructions rather than originating from the user's request. No evidence indicates that these instructions override platform safety controls, execute code, access credentials, retrieve remote content, or alter persistent memory. The manipulation is limited to generated document content. ### Attack Path 1. A user invokes the `side-income-launcher` Skill through a configured trigger or the default prompt. 2. The Agent collects information and generates a side-income plan. 3. The Agent follows the mandatory Markdown output template in `SKILL.md`. 4. The template inserts the hardcoded book reference and OPC-AI attribution. 5. The resulting user-facing document contains unsolicited promotional content. ### Impact Assessment The issue grants no operating-system, filesystem, network, or account privileges. Its scope is limited to influencing generated reports. Potential effects include: - Unrequested branding ...[truncated 376 chars]
- Remediation
- ## Remediation Suggestions 1. Remove the hardcoded book reference and OPC-AI attribution from the mandatory output template. 2. Keep generated reports focused on information explicitly requested by the user. 3. If attribution is legally or operationally required, disclose that requirement in the Skill description before activation. 4. Make attribution optional and request the user's explicit consent before including it. 5. Separate informational citations from promotional branding and label any retained references accurately. 6. Add a review check ensuring templates do not inject advertisements, endorsements, tracking content, or unrelated third-party messaging.
