debug_write_memory
Write hex bytes or an ASCII string to a specific address in the debugged process during a live debugging session.
Instructions
Write memory in the debugged process at a specific address using hex bytes or a string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | String data to write (used when as_string is true) | |
| address | Yes | Hex address to write to (e.g. "0x08048000") | |
| as_string | No | If true, write data as an ASCII string; otherwise write hex_bytes | |
| hex_bytes | No | Hex bytes to write (e.g. "90909090" for NOPs) | |
| session_id | Yes | Debug session ID |