frida-python icon indicating copy to clipboard operation
frida-python copied to clipboard

When spawning new application, the GUI is not visible

Open sherifmagdy opened this issue 5 years ago • 0 comments

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 the process being created, it's just CLI tool .

sherifmagdy avatar Oct 07 '19 16:10 sherifmagdy