decode_layers
Decode layered payloads by running a chain of operations like base64, hex, and URL decode, showing every intermediate result. Stops at the first failure to identify the problematic step.
Instructions
Peel a layered payload: run a chain of operations (base64_decode, base64_encode, hex_decode, hex_encode, url_decode, url_encode, html_decode, rot13) and see every intermediate result. Default chain is a single base64_decode. Stops at the first step that fails and says which.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ops | No | Ops in order, from: base64_decode, base64_encode, hex_decode, hex_encode, url_decode, url_encode, html_decode, rot13 | |
| input | Yes |