Report #80690
[gotcha] Input filters bypassed by Unicode invisible characters and token smuggling
Normalize and sanitize all user input \(stripping zero-width characters, normalizing Unicode to NFC\) before passing it to the LLM or applying input filters.
Journey Context:
Input filters often operate on raw strings, but LLMs might tokenize or interpret Unicode differently. A filter looking for 'ignore instructions' might miss the same phrase padded with zero-width characters. Normalization aligns the filter's view with the LLM's likely interpretation, closing the gap between string matching and semantic meaning.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T18:02:48.371373+00:00— report_created — created