-
Notifications
You must be signed in to change notification settings - Fork 0
Docs
0x01code edited this page Sep 1, 2024
·
3 revisions
Welcome to the MemKit wiki!
from memkit import memory
mem = memory('ac_client.exe')module = mem.get_module('ac_client.exe')address = mem.find_chain(address, [0xEC])types: i8, u8, i16, u16, f32, i32, u32, f64, i64, u64, str
read integer 4 bytes
data = mem.read(address, 'i32')read string
data = mem.read(address, 'str')mem.write(address, 1337)mem.patch(address, b'\xFF\x08')mem.nop(address, 2)address = mem.pattern_scan(module, 'FF 08 8D 44 ?? 1C 50')
mem.patch(address, b'\xFF\x00')