- UID
- 2
注册时间2004-12-1
阅读权限255
最后登录1970-1-1
总坛主
  
TA的每日心情 | 开心 2024-12-1 11:04 |
---|
签到天数: 12 天 [LV.3]偶尔看看II
|
参考官方头文件:http://www.opensource.apple.com/ ... /dyld-interposing.h
原帖地址:http://www.dllhook.com/post/103.html
- // 演示代码
- // #import <mach-o/dyld-interposing.h>
- // from dyld-interposing.h
- #define DYLD_INTERPOSE(_replacement,_replacee) __attribute__((used)) static struct{ const void* replacement; const void* replacee; } _interpose_##_replacee __attribute__ ((section ("__DATA,__interpose"))) = { (const void*)(unsigned long)&_replacement, (const void*)(unsigned long)&_replacee };
-
- ssize_t hacked_write(int fildes, const void *buf, size_t nbyte)
- {
- printf("[++++]into hacked_write---by piaoyun");
- return write(fildes, buf, nbyte);
- }
-
- DYLD_INTERPOSE(hacked_write, write);
复制代码 没错,就是这么简单!! 编译成dylib注入即可!
|
评分
-
参与人数 1 | 威望 +4 |
飘云币 +4 |
收起
理由
|
0xcb
| + 4 |
+ 4 |
还可以看facebook的实现:https://github.co. |
查看全部评分
|