Sergej Schumilo

Results 12 comments of Sergej Schumilo

This should do the trick: ```python import ctypes import uuid import os def get_nyx_map_size(target_dir): libnyx = ctypes.CDLL('./libnyx.so') NYX_ROLE_StandAlone = 0 target_dir_c = target_dir.encode('utf-8') dummy_workdir_path = "/tmp/_afl_cmin_nyx_work_dir_%s"%(str(uuid.uuid4())) dummy_workdir_path_c = dummy_workdir_path.encode('utf-8') #...

That's correct. Nyx lacks SMP support, so unfortunately you're out of luck here. But AFL++/libafl + QEMU fullsystem might be an alternative...