iOS freeRASP React Native Bypass

by
3 views 8a68bd2c...

Description

Frida script to bypass freeRASP React Native for iOS apps ;P

How to Use

Download the script and run it with Frida CLI:

Download Script

Then run with Frida:

frida -U -f YOUR_PACKAGE_NAME -l ios-freerasp-react-native-bypass.js

Replace YOUR_PACKAGE_NAME with the target app's package name.

Source Code

JavaScript
/*
    iOS freeRASP React Native Bypass by rodolfomarianocy
    frida -U -f <bundle_identifier> --codeshare rodolfomarianocy/ios-freerasp-react-native-bypass
    https://github.com/rodolfomarianocy/iOS-freeRASP-React-Native-Bypass
    https://github.com/rodolfomarianocy/Tricks-Pentest-Android-and-iOS-Applications
*/
console.warn("[+] iOS freeRASP React Native Bypass...")
if (ObjC.available) {
    try {
        Interceptor.replace(
            ObjC.classes.FreeraspReactNative['- talsecStart:withResolver:withRejecter:'].implementation,
            new NativeCallback(function() {}, 'void', [])
        );
    } catch (error) {
        console.log(error.message);
    }
} else {
    console.log("[-] ObjC Runtime unavailable");
}
Share this script:
Twitter LinkedIn

Comments

Login or Sign up to leave a comment.
Loading comments...