frida加密参数通杀hook代码(免脱壳)

一、Python终极版

import frida  # 导入frida模块
import sys  # 导入sys模块

jscode = """
function showStacks() {
    Java.perform(function() {
        send(Java.use("android.util.Log").getStackTraceString(Java.use("java.lang.Exception").$new()));
        var kgh = Java.use("com.kc.openset.util.VerifyUtil");
            kgh.getMD5Verify.overload('java.lang.String','java.lang.String').implementation = function (x1,x2) {
                console.log("getMD5Verify x1:",x1);
                console.log("getMD5Verify x2:",x2);
                var result = this.getMD5Verify(x1,x2);
                    console.log(result);
                    return result;
 

猜你喜欢

转载自blog.csdn.net/weixin_51111267/article/details/131303876
今日推荐