Athena Wiki

CyberChef

toolsbeginner

CyberChef recipes and techniques for encoding, decoding, and data transformation in CTF challenges.

toolscyberchefencodingdecodingcryptotransformweb

CyberChef

CyberChef is a browser-based tool that chains data transformation operations - encoding, decoding, encryption, compression, parsing. No installation required. It's often the fastest way to solve encoding/crypto challenges.

Decoding Decision Tree

Mermaid diagram

Using the Magic Operation

Paste your data

Paste the encoded/unknown data into the Input box (top right).

Run Magic

Search for Magic in the Operations search box → drag it to the Recipe area → click BAKE.

Magic automatically detects and chains multiple encoding layers.

Review the output

The Output box shows the result. If it looks like readable text or a flag - done. If not, inspect what Magic suggested and extend or adjust.

Save the recipe

Click the Save recipe icon to get a URL you can share or reuse. Recipes are shareable via URL - useful for writeups.

Operations by Category

OperationUse when
From Base64Trailing =, only A-Za-z0-9+/
To Base64Encoding binary as text
From Hexdeadbeef, \xde\xad, space-separated hex
URL Decode%xx encoded strings
HTML Entity DecodeA or & sequences
From Binary01001000 01101001 space-separated bits
From CharcodeComma-separated char codes 72,101,108
ROT13Classic letter rotation
Caesar Brute ForceUnknown rotation (shows all 25 results)
Atbash CipherReverse alphabet (A↔Z)
From Base32 / 58 / 85Less common base encodings

Common CTF Recipes


Last updated on

On this page