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. The- onMatchcallback receives an- expobject where the- typefield is either- functionor- variable.
To get the full scoop on the ObjC integration, have a look at the JavaScript API reference.
 oleavr
      oleavr