Return a `length` long byte array with the copy of the process memory at `addr`.
(self, addr: int, length: int = 0x10)
| 10150 | gdb.selected_inferior().write_memory(address, buffer, length) |
| 10151 | |
| 10152 | def read(self, addr: int, length: int = 0x10) -> bytes: |
| 10153 | """Return a `length` long byte array with the copy of the process memory at `addr`.""" |
| 10154 | return gdb.selected_inferior().read_memory(addr, length).tobytes() |
| 10155 | |
| 10156 | def read_integer(self, addr: int) -> int: |
| 10157 | """Return an integer read from memory.""" |
no outgoing calls
no test coverage detected