Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 966 Bytes

File metadata and controls

38 lines (28 loc) · 966 Bytes

Memkit

release version License

Memkit is game hacking library for Direct Memory Access (DMA)

A detailed usage guide is available on Docs section of the Wiki.

Feature

  • Get module address
  • Find chain
  • Read memory
  • Write memory
  • Patch binary
  • Nop binary
  • Pattern scan

Install

You can install memkit with pip as following:

pip install memkit

Example

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')