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

Method read_qword

windows/winobject/process.py:332–335  ·  view source on GitHub ↗

Read a ``ULONG64`` at ``addr``

(self, addr)

Source from the content-addressed store, hash-verified

330 return struct.unpack("<I", self.read_memory(addr, sizeof_dword))[0]
331
332 def read_qword(self, addr):
333 """Read a ``ULONG64`` at ``addr``"""
334 sizeof_qword = sizeof(ULONG64)
335 return struct.unpack("<Q", self.read_memory(addr, sizeof_qword))[0]
336
337 def read_ptr(self, addr):
338 """Read a ``PTR`` at ``addr``"""

Callers 2

read_ptrMethod · 0.95
get_argMethod · 0.80

Calls 2

unpackMethod · 0.45
read_memoryMethod · 0.45

Tested by

no test coverage detected