Frida使用记录

入门

参考:https://wooyun.js.org/drops/Frida-%E8%B7%A8%E5%B9%B3%E5%8F%B0%E6%B3%A8%E5%85%A5%E5%B7%A5%E5%85%B7%E5%9F%BA%E7%A1%80%E7%AF%87.html

问题

读取ContentValues内容

 

打印堆栈问题

参考:https://www.anquanke.com/post/id/169315

核心代码如下:

    var bt = Java.use("android.util.Log").getStackTraceString(Java.use("java.lang.Exception").$new());
                console.log("nBacktrace:n" + bt);

打印对象问题

只打印了{" $handle":"*",” $weakRef" : *}

Frida使用记录_第1张图片

参考:https://grepharder.github.io/blog/0x02_learning_frida_by_failing.html

 

 

Hook So层

参考:https://github.com/iddoeldor/frida-snippets/blob/master/README.md

你可能感兴趣的:(frida)