Memkit is game hacking library for Direct Memory Access (DMA)
A detailed usage guide is available on Docs section of the Wiki.
- Get module address
- Find chain
- Read memory
- Write memory
- Patch binary
- Nop binary
- Pattern scan
You can install memkit with pip as following:
pip install memkit
from memkit import memory
mem = memory('ac_client.exe')
module = mem.get_module('ac_client.exe')
health_address = mem.find_chain(module.base + 0x0018AC00, [0xEC])
mem.write(health_address, 1337)
health = mem.read(health_address, 'i32')