wireshark_decode_payload
Decode base64, hex, URL, gzip, and other encodings from network payloads. Supports auto-detection of encoding for readability.
Instructions
[Utils] Decode common encodings (Base64, Hex, URL, Gzip, etc.).
Args: data: The string to decode. encoding: Target encoding. Supported: 'base64', 'hex', 'url', 'rot13', 'gzip', 'deflate', 'html', 'unicode', 'quopri', 'ascii85'. Use 'auto' to try all and sort by readability.
Returns: Decoded string (or JSON in 'auto' mode).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| encoding | No | auto |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |