free2
9 views
2532cc15...
Description
awrew
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l free2.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function() {
let BoxUtil = Java.use("cn.tongdun.android.shell.utils.BoxUtil");
BoxUtil.limitBox.implementation = function(jSONObject, i){
let ret = this.limitBox(jSONObject, i);
console.log(JSON.stringify(jSONObject));
return ret;
};
});
Comments