frida_js/apps/common_js/moban_delay.js
2023-08-04 09:40:54 +08:00

23 lines
651 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

console.log("frida start into app ...")
//frida -U --no-pause -f com.shizhuang.duapp -l dewu.js
setImmediate(function() {
setTimeout(delay_load_injection, 5000);
});
function delay_load_injection() {
Java.perform(function dewu() {
console.log("Frida start to update method")
let head = Java.use("com.shizhuang.dudatastatistics.aliyunsls.DataStatistics")
head.t.overload('java.lang.String').implementation = function (str) {
console.log("传入字符串为:", str)
let result = this.t(str);
console.log("md5后数据为", result)
return result
}
})
}