SH
4 views
1155ce3e...
Description
s
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l sh.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function() {
var RootBeer = Java.use("com.harrison.demo.autoairpay.ui.main.MainActivity");
RootBeer.verifyInfo.overload().implementation = function() {
return true;
};
});
Comments