vipps-antijb
4 views
d4217526...
Description
Disables jailbreak detection in the Vipps app
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l vipps-antijb.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
'use strict';
var method = ObjC.classes.VPSUtils['+ isJailbroken'];
method.implementation = ObjC.implement(method, function (handle, selector) {
console.log('+[VPSUtils isJailbroken] => nope!');
return false;
});
Comments