首页
社区
课程
招聘
如何通过frida 去hook ios scheme获取他的连接阿
发表于: 2022-6-14 20:13 20465

如何通过frida 去hook ios scheme获取他的连接阿

2022-6-14 20:13
20465

我hook了 UIApplication类下的_openURL: 发现没走这里 来请教下大佬们


[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 2
支持
分享
最新回复 (2)
雪    币: 2155
活跃值: (3216)
能力值: (RANK:260 )
在线值:
发帖
回帖
粉丝
2
也许程序本来就没有调用这个方法,一般我会拿lldb下断再确认一次
2022-6-15 10:11
0
雪    币: 6003
活跃值: (3490)
能力值: ( LV6,RANK:96 )
在线值:
发帖
回帖
粉丝
3
function hook_NSURL() {
    var UIApplication = ObjC.classes.UIApplication;
    Interceptor.attach(UIApplication['- openURL:options:completionHandler:'].implementation, {
        onEnter: function (args) {
            var url = ObjC.Object(args[2]);
            console.log("openURL:", url.toString());
        },
        onLeave: function (retval) {
        },
    });
    Interceptor.attach(UIApplication['- openURL:'].implementation, {
        onEnter: function (args) {
            var url = ObjC.Object(args[2]);
            console.log("openURL:", url.toString());
        },
        onLeave: function (retval) {
        },
    });
    console.log("hook_NSURL");
}


2022-6-21 13:57
1
游客
登录 | 注册 方可回帖
返回
//