MCPcopy Index your code
hub / github.com/ELMERIKH/PyinMemoryPE / write_byte

Method write_byte

windows/winobject/process.py:395–397  ·  view source on GitHub ↗

write a byte at ``addr``

(self, addr, byte)

Source from the content-addressed store, hash-verified

393 return bytearray(res).decode("utf-16")
394
395 def write_byte(self, addr, byte):
396 """write a byte at ``addr``"""
397 return self.write_memory(addr, struct.pack("<B", byte))
398
399 def write_short(self, addr, word):
400 """write a word at ``addr``"""

Callers

nothing calls this directly

Calls 2

write_memoryMethod · 0.45
packMethod · 0.45

Tested by

no test coverage detected