https://github.com/imoreapps/zombiedetector
A project that demonstrates detecting iOS zombie objects by using fishhook library. The core concept of project is from the Bugly article http://dev.qq.com/topic/59141e56ca95d00d727ba750, thanks.
https://github.com/imoreapps/zombiedetector
fishhook hook ios memory-hacking objective-c zombie zombies
Last synced: 13 days ago
JSON representation
A project that demonstrates detecting iOS zombie objects by using fishhook library. The core concept of project is from the Bugly article http://dev.qq.com/topic/59141e56ca95d00d727ba750, thanks.
- Host: GitHub
- URL: https://github.com/imoreapps/zombiedetector
- Owner: imoreapps
- Created: 2017-12-02T05:54:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-05T06:28:39.000Z (over 8 years ago)
- Last Synced: 2025-10-29T21:56:43.088Z (5 months ago)
- Topics: fishhook, hook, ios, memory-hacking, objective-c, zombie, zombies
- Language: C
- Homepage:
- Size: 14.6 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ZombieDetector
A project that demonstrates detecting iOS zombie objects by using fishhook library. The core concept of project is from the Bugly article http://dev.qq.com/topic/59141e56ca95d00d727ba750, thanks.
这是一个演示如何利用fishhook开源库检测iOS野指针的实例工程,该工程参考了Tencent Bugly分享的检测思想,完整的思路请参考如下链接:
http://dev.qq.com/topic/59141e56ca95d00d727ba750
http://dev.qq.com/topic/59142d61ca95d00d727ba752
有关Xcode检测Zombie的实现原理请参考Apple官方文档:
https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/EradicatingZombies.html#//apple_ref/doc/uid/TP40004652-CH82-SW1
再次感谢Tencent Bugly的分享。