dlopen frida hooking 코드

Java.perform(function () {
    Interceptor.attach(Module.findExportByName(null, "dlopen"), {
        onEnter: function (args) {
            var path = args[0].readUtf8String();
            console.log("[*] dlopen(\" " + path +" \")");
        },
        onLeave: function(retval) {
        }
    });
});

 

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다