bbox
4 views
5b029ba0...
Description
saefwe
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l bbox.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function() {
let HelperJNI = Java.use("cn.tongdun.android.shell.common.HelperJNI");
HelperJNI.base64encode.implementation = function(bArr){
let ret = this.base64encode(bArr);
console.log(JSON.stringify(bArr));
return ret;
}
});
Comments