cyberchef_bake
Run multi-step data transformations to decode obfuscated payloads by chaining operations like Base64, Hex, URL decode, XOR, and hashing in a single pass. Solve layered encoding without multiple rounds.
Instructions
Executes a multi-stage sequential data transformation pipeline ('recipe') on the input string, chaining multiple operations such as Base64, Hex, URL decoding, XOR, ROT13, and hashing in a single turn. Use this tool when dealing with layered obfuscation or when an automated pipeline is needed to fully unwrap nested attack payloads without requiring multiple LLM conversational rounds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | The raw, encoded, or obfuscated input string to process through the transformation pipeline. Can be plain text, hex-encoded bytes, Base64 strings, or URL-encoded parameters. | |
| recipe | Yes | Ordered array of recipe steps to execute in sequence. Example: [{'op': 'From Base64'}, {'op': 'URL Decode'}] |