Frida 1.0.9 Released ∞
release
Another release — this time with some new features:
- Objective-C integration for Mac and iOS. Here’s an example to whet your appetite:
const UIAlertView = ObjC.use('UIAlertView'); /* iOS */
ObjC.schedule(ObjC.mainQueue, () => {
const view = UIAlertView.alloc().initWithTitle_message_delegate_cancelButtonTitle_otherButtonTitles_(
"Frida",
"Hello from Frida",
ptr("0"),
"OK",
ptr("0"));
view.show();
view.release();
});
Module.enumerateExports()
now also enumerates exported variables and not just functions. TheonMatch
callback receives anexp
object where thetype
field is eitherfunction
orvariable
.
To get the full scoop on the ObjC integration, have a look at the JavaScript API reference.