MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / write_dword

Method write_dword

windows/winobject/process.py:403–405  ·  view source on GitHub ↗

write a dword at ``addr``

(self, addr, dword)

Source from the content-addressed store, hash-verified

401 return self.write_memory(addr, struct.pack("<H", word))
402
403 def write_dword(self, addr, dword):
404 """write a dword at ``addr``"""
405 return self.write_memory(addr, struct.pack("<I", dword))
406
407 def write_qword(self, addr, qword):
408 """write a qword at ``addr``"""

Callers 2

write_ptrMethod · 0.95
set_argMethod · 0.80

Calls 2

write_memoryMethod · 0.45
packMethod · 0.45

Tested by

no test coverage detected