Skip to content

0x01code/MemKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages