mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2025-12-06 07:12:03 +01:00
14 lines
346 B
Python
14 lines
346 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
|
||
|
|
"""https://github.com/unicorn-engine/unicorn/issues/165"""
|
||
|
|
|
||
|
|
import unicorn
|
||
|
|
|
||
|
|
def hook_mem_read_unmapped(mu, access, address, size, value, user_data):
|
||
|
|
pass
|
||
|
|
|
||
|
|
mu = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
||
|
|
|
||
|
|
for x in range(0, 1000):
|
||
|
|
mu.hook_add(unicorn.UC_HOOK_MEM_READ_UNMAPPED, hook_mem_read_unmapped, None)
|