dumpulator icon indicating copy to clipboard operation
dumpulator copied to clipboard

Implement a memory manager

Open mrexodia opened this issue 3 years ago • 0 comments

Currently there is no information about the mapped memory regions available. There should be a robust system to manage memory and allow syscalls to use it for memory queries:

dp.mem_protect(addr, size, Memory.ReadWrite)
info = dp.mem_find(addr)
dp.mem_allocate(size, addr=None)
dp.mem_free(addr)

mrexodia avatar Jul 15 '22 23:07 mrexodia