pylibemu
pylibemu copied to clipboard
A Libemu Cython wrapper
Hi, This is requesting to add new method to class Emulator. These method will allow me execute shellcode without depending on test(steps) function. ``` def create_new_env(self): self._env = emu_env_new(self._emu) self._env.profile...
These are issues not related to my previous PR. It appears that a small amount of memory is leaking when running tests/cpu_mem_test.py which can be identified with valgrind in the...
Hi, currently, my work need me to call test repeatedly for i in range(x): #do something pylibemu.Emulator().test(1) #continue do something if x less than 5000, its working fine. But when...