ios-freerasp-bypass
4 views
d6e7e0ca...
Description
Frida script that bypasses FreeRASP security framework by hooking and nullifying the talsecStart method to disable runtime application self-protection (RASP) checks.
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l ios-freerasp-bypass.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
/*
GitHub: https://github.com/0tax00/ios-freerasp-bypass
Usage: frida -U -f <bundle_identifier> -l freerasp-bypass-ios.js
*/
console.log("[+] freerasp-bypass-ios");
if (ObjC.available) {
const cls = ObjC.classes.FreeraspReactNative;
const method = cls['- talsecStart:withResolver:withRejecter:'];
if (method) {
method.implementation = new NativeCallback(() => {}, 'void', []);
}
}
Comments