├── .gitignore ├── ObjCHook.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ObjCHook ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── hook │ ├── fishhook.c │ ├── fishhook.h │ ├── hook.c │ ├── hook.h │ ├── hook_core.c │ ├── hook_core.h │ ├── hook_core_arm64.c │ ├── hook_core_arm64.h │ ├── hook_core_x64.c │ ├── hook_core_x64.h │ ├── hook_utils.c │ └── hook_utils.h └── main.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/.gitignore -------------------------------------------------------------------------------- /ObjCHook.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjCHook.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ObjCHook/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/AppDelegate.h -------------------------------------------------------------------------------- /ObjCHook/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/AppDelegate.m -------------------------------------------------------------------------------- /ObjCHook/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ObjCHook/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ObjCHook/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ObjCHook/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ObjCHook/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/Info.plist -------------------------------------------------------------------------------- /ObjCHook/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/ViewController.h -------------------------------------------------------------------------------- /ObjCHook/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/ViewController.m -------------------------------------------------------------------------------- /ObjCHook/hook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/fishhook.c -------------------------------------------------------------------------------- /ObjCHook/hook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/fishhook.h -------------------------------------------------------------------------------- /ObjCHook/hook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook.c -------------------------------------------------------------------------------- /ObjCHook/hook/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook.h -------------------------------------------------------------------------------- /ObjCHook/hook/hook_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_core.c -------------------------------------------------------------------------------- /ObjCHook/hook/hook_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_core.h -------------------------------------------------------------------------------- /ObjCHook/hook/hook_core_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_core_arm64.c -------------------------------------------------------------------------------- /ObjCHook/hook/hook_core_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_core_arm64.h -------------------------------------------------------------------------------- /ObjCHook/hook/hook_core_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_core_x64.c -------------------------------------------------------------------------------- /ObjCHook/hook/hook_core_x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_core_x64.h -------------------------------------------------------------------------------- /ObjCHook/hook/hook_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_utils.c -------------------------------------------------------------------------------- /ObjCHook/hook/hook_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/hook/hook_utils.h -------------------------------------------------------------------------------- /ObjCHook/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/ObjCHook/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czqasngit/objc_msgSend_hook/HEAD/README.md --------------------------------------------------------------------------------