Skip to content

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 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

Full tool list (5)

ToolDescription
binary_detect_formatDetect binary payload format/encoding via magic bytes, encoding heuristics, and Shannon entropy
binary_decodeDecode binary payloads into hex, utf8, or json output
binary_encodeEncode utf8/hex/json input into base64/hex/url output
binary_entropy_analysisCompute Shannon entropy + byte frequency to assess plaintext/encoded/compressed/encrypted likelihood
protobuf_decode_rawDecode base64 protobuf bytes without schema using wire-type aware recursive parser

Released under AGPL-3.0-only