sherif magdy

Results 2 issues of sherif magdy

Hi, I have a tool implemented on top of Pin and i want to migrate it to frida. My objective is to capture any control flow transfer in terms of...

def start_frida_spawn(process): pid = frida.spawn([process]) session = frida.attach(pid) frida.resume(pid) scriptFile = open("scr.js", 'r') scr = scriptFile.read() script = session.create_script(scr) script.on("message", on_message) script.load() how to make it spawn a GUI for...