Encoding
Domain: encoding
Binary format detection, encoding conversion, entropy analysis, and raw protobuf decoding.
Profiles
- workflow
- full
Typical scenarios
- Identify unknown payload formats
- Convert between encodings
- Decode schema-less protobuf payloads
Common combinations
- network + encoding
Representative tools
binary_detect_format— Detect binary payload format/encoding via magic bytes, encoding heuristics, and Shannon entropybinary_decode— Decode binary payloads into hex, utf8, or json outputbinary_encode— Encode utf8/hex/json input into base64/hex/url outputbinary_entropy_analysis— Compute Shannon entropy + byte frequency to assess plaintext/encoded/compressed/encrypted likelihoodprotobuf_decode_raw— Decode base64 protobuf bytes without schema using wire-type aware recursive parser
Full tool list (5)
| Tool | Description |
|---|---|
binary_detect_format | Detect binary payload format/encoding via magic bytes, encoding heuristics, and Shannon entropy |
binary_decode | Decode binary payloads into hex, utf8, or json output |
binary_encode | Encode utf8/hex/json input into base64/hex/url output |
binary_entropy_analysis | Compute Shannon entropy + byte frequency to assess plaintext/encoded/compressed/encrypted likelihood |
protobuf_decode_raw | Decode base64 protobuf bytes without schema using wire-type aware recursive parser |