FuzzTheWorld
FuzzTheWorld
I had the same kind of bug using afl-cmin, I solved it using afl-cmin.bash instead. You may try to change py-afl-cmin to use the latter. Hope it helps.
@wtdcode thanks! To anyone having this problem, I circumvented it by patching unicorn UC_HOOK_MEM_READ_AFTER callback signature so it uses, as parameter, a pointer to the value read (res) instead of...
It does not crash because, thanks to the aforementioned patch, I do not need to use uc_mem_write anymore. My hook looks like: ``` static int _hook_mem_read_after(uc_engine* p_uc, uc_mem_type type, uint64_t...