Frida 1.0.10 Released ∞
release
This release brings a few improvements:
Interceptor
is now compatible with a lot more functions on iOS/ARM.- A new CLI tool called
frida-repl
provides you with a basic REPL to experiment with the JavaScript API from inside a target process. onLeave
callback passed toInterceptor.attach()
is now able to replace the return value by callingretval.replace()
.- Both
onEnter
andonLeave
callbacks passed toInterceptor.attach()
can accessthis.errno
(UNIX) orthis.lastError
(Windows) to inspect or manipulate the current thread’s last system error.
Here’s how you can combine the latter three to simulate network conditions for a specific process running on your Mac:
Then paste in:
Enjoy!