首页
社区
课程
招聘
[求助]Frida Stalker 如何跑native code trace记录
发表于: 2020-5-31 20:43 5131

[求助]Frida Stalker 如何跑native code trace记录

2020-5-31 20:43
5131
const mainThread = Process.enumerateThreads()[0];
console.log("start frida hook. 2 "+mainThread.id);
Stalker.follow(mainThread.id,{
    events:{
        call:true,  //调用指令
        ret:false,
        exec:false,
        block:false,
        compile:false
    },

    onCallSummary: function(summary){

    },

    onReceive: function(events){

    },
});

刚学frida,Stalker.follow这个脚本一执行应用就ANR了,有玩过的大佬可以指点一下不,frida如何跑native trace记录


[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 443
活跃值: (1157)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
2
                    iterator.putCallout((context) => {
                            send({
                                type: 'ctx',
                                tid: tid,
                                val: JSON.stringify(context)
                            })
                    })
2021-1-12 10:46
0
游客
登录 | 注册 方可回帖
返回
//