teste4
4 views
810f401b...
Description
teste4
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l teste4.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function() {
console.log("teste1");
var clazz = Java.use('br.com.mobileexploitation.a003variables.MobileExploitationData');
clazz.setData.implementation = function() {
//
console.log("teste2");
var b1 = Java.use("java.lang.Boolean").$new("True");
return b1;
//return clazz.setData.apply(this, arguments);
}
});
/*
Java.perform(function() {
var clazz = Java.use('br.com.mobileexploitation.a003variables.MobileExploitationData');
clazz.setData3.implementation = function() {
//
return clazz.setData3.apply(this, arguments);
}
});
*/
Comments