write_memory
Write hex-encoded byte sequences to a debuggee's virtual memory at a specified address, enabling runtime code patching or data modification during reverse engineering sessions.
Instructions
Write bytes to the debuggee's virtual memory. Use with caution — writing to wrong addresses can crash the debuggee.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | Session ID | |
| address | Yes | Target address (hex) | |
| hexBytes | Yes | Hex string of bytes to write, e.g. '90 90 90' for three NOPs |