MCPcopy Create free account
hub / github.com/HexHive/NASS / write

Method write

tools/gef.py:10148–10150  ·  view source on GitHub ↗

Write `buffer` at address `address`.

(self, address: int, buffer: ByteString, length: int = 0x10)

Source from the content-addressed store, hash-verified

10146 return
10147
10148 def write(self, address: int, buffer: ByteString, length: int = 0x10) -> None:
10149 """Write `buffer` at address `address`."""
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`."""

Callers 15

update_gefFunction · 0.45
gef_printFunction · 0.45
wrapperFunction · 0.45
gef_execute_gdb_scriptFunction · 0.45
copy_to_clipboardFunction · 0.45
clear_screenFunction · 0.45
stopMethod · 0.45
__create_templateMethod · 0.45
do_invokeMethod · 0.45
do_invokeMethod · 0.45
get_shellcodeMethod · 0.45
do_invokeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected