vipps-antijb

by
4 views d4217526...

Description

Disables jailbreak detection in the Vipps app

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 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;
});
Share this script:
Twitter LinkedIn

Comments

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