├── .gitignore ├── FrameworkDemo ├── FYHook │ ├── FYHook.h │ ├── Info.plist │ ├── InjectCode.h │ └── InjectCode.m ├── FYHookTests │ ├── FYHookTests.m │ └── Info.plist ├── FrameworkDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── FrameworkDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── FrameworkDemoTests │ ├── FrameworkDemoTests.m │ └── Info.plist └── FrameworkDemoUITests │ ├── FrameworkDemoUITests.m │ └── Info.plist ├── InjectFrameWork ├── FYHook │ ├── FYHook.h │ ├── Info.plist │ ├── InjectCode.h │ └── InjectCode.m ├── FYHookTests │ ├── FYHookTests.m │ └── Info.plist ├── InjectFrameWork.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── InjectFrameWork │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AppReSign.sh │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── InjectFrameWorkTests │ ├── Info.plist │ └── InjectFrameWorkTests.m └── InjectFrameWorkUITests │ ├── Info.plist │ └── InjectFrameWorkUITests.m ├── README.md └── WeChat-H.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/.gitignore -------------------------------------------------------------------------------- /FrameworkDemo/FYHook/FYHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FYHook/FYHook.h -------------------------------------------------------------------------------- /FrameworkDemo/FYHook/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FYHook/Info.plist -------------------------------------------------------------------------------- /FrameworkDemo/FYHook/InjectCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FYHook/InjectCode.h -------------------------------------------------------------------------------- /FrameworkDemo/FYHook/InjectCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FYHook/InjectCode.m -------------------------------------------------------------------------------- /FrameworkDemo/FYHookTests/FYHookTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FYHookTests/FYHookTests.m -------------------------------------------------------------------------------- /FrameworkDemo/FYHookTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FYHookTests/Info.plist -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/AppDelegate.h -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/AppDelegate.m -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/Info.plist -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/ViewController.h -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/ViewController.m -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemo/main.m -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemoTests/FrameworkDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemoTests/FrameworkDemoTests.m -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemoTests/Info.plist -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemoUITests/FrameworkDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemoUITests/FrameworkDemoUITests.m -------------------------------------------------------------------------------- /FrameworkDemo/FrameworkDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/FrameworkDemo/FrameworkDemoUITests/Info.plist -------------------------------------------------------------------------------- /InjectFrameWork/FYHook/FYHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/FYHook/FYHook.h -------------------------------------------------------------------------------- /InjectFrameWork/FYHook/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/FYHook/Info.plist -------------------------------------------------------------------------------- /InjectFrameWork/FYHook/InjectCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/FYHook/InjectCode.h -------------------------------------------------------------------------------- /InjectFrameWork/FYHook/InjectCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/FYHook/InjectCode.m -------------------------------------------------------------------------------- /InjectFrameWork/FYHookTests/FYHookTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/FYHookTests/FYHookTests.m -------------------------------------------------------------------------------- /InjectFrameWork/FYHookTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/FYHookTests/Info.plist -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/AppDelegate.h -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/AppDelegate.m -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/AppReSign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/AppReSign.sh -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/Info.plist -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/ViewController.h -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/ViewController.m -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWork/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWork/main.m -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWorkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWorkTests/Info.plist -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWorkTests/InjectFrameWorkTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWorkTests/InjectFrameWorkTests.m -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWorkUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWorkUITests/Info.plist -------------------------------------------------------------------------------- /InjectFrameWork/InjectFrameWorkUITests/InjectFrameWorkUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/InjectFrameWork/InjectFrameWorkUITests/InjectFrameWorkUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/README.md -------------------------------------------------------------------------------- /WeChat-H.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengbin9009/HookWeChat/HEAD/WeChat-H.zip --------------------------------------------------------------------------------