edb_binary_string_convert
Convert between hex, ASCII, and UTF-16 string representations for memory patch preparation and string analysis.
Instructions
Convert between hex, ASCII, and UTF-16 representations. Equivalent to EDB's BinaryString widget (DialogInputBinaryString). Useful for preparing data for memory patches or analyzing strings.
Provide at least one of: hex_str, ascii_str, or utf16_str.
Args: params (BinaryStringConvertInput): Input string - hex_str (str): Hex input (e.g., '48656c6c6f') - ascii_str (str): ASCII input (e.g., 'Hello') - utf16_str (str): UTF-16 hex (e.g., '48006500')
Returns: str: All representations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |