I love this tool!
Currently I try to use it to inject a lib into an app running within the iOS simulator. At first it seemed quite simple. I can inject my own dylib into the testapp, but for some reason nothing happens when I try to inject it into a process within the simulator.
As far as I can see, the simulator just spawns more processes and I don't really have to care about it. Instead I can just search for the process name and be done.
I've build a dynamic framework (which basically contains a dylib) for the simulator (it's also 86_64).
The good thing, I can inject Obj-C code into the testapp. The bad thing, I don't have any output from the simulator. As you can see I even tried breaking out and write a file to a specific directory.
Any ideas, what I'm doing wrong, or what I'm missing?
I love this tool! Currently I try to use it to inject a lib into an app running within the iOS simulator. At first it seemed quite simple. I can inject my own dylib into the testapp, but for some reason nothing happens when I try to inject it into a process within the simulator.
As far as I can see, the simulator just spawns more processes and I don't really have to care about it. Instead I can just search for the process name and be done.
I've build a dynamic framework (which basically contains a dylib) for the simulator (it's also 86_64).
injection.mm
Main.h
Main.m
The good thing, I can inject Obj-C code into the testapp. The bad thing, I don't have any output from the simulator. As you can see I even tried breaking out and write a file to a specific directory.
Any ideas, what I'm doing wrong, or what I'm missing?