Report #51908
[gotcha] Base64 and ROT13 encoded payloads bypassing input safety filters
Decode all standard encodings \(Base64, URL-encoding, ROT13\) before applying safety filters or passing to the LLM. Ensure the filter inspects the decoded representation.
Journey Context:
Developers implement regex or classifier-based input filters to block prompt injections. Attackers encode the payload and ask the LLM to decode and execute it. The input filter sees a benign string of characters, but the LLM decodes it and processes the injection. The LLM is a general-purpose text processor and will happily decode inputs. The tradeoff is processing overhead for decoding, but filters must operate on the same representation the LLM will ultimately process.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T17:37:16.884784+00:00— report_created — created