├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ZXHookAttack ├── LatestBuild ├── ZXHookAttack.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ZXHookAttack │ ├── Config │ │ └── MDConfig.plist │ ├── Info.plist │ ├── Scripts │ │ └── quick-resign.sh │ ├── Target.plist │ ├── TargetApp │ │ ├── ZXHookDetection.app │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboardc │ │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ │ └── Main.storyboardc │ │ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ │ ├── Frameworks │ │ │ │ └── ZXHookFramework.framework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ZXHookFramework │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Info.plist │ │ │ ├── PkgInfo │ │ │ ├── ZXHookDetection │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── embedded.mobileprovision │ │ └── put ipa or app here │ └── icon.png └── ZXHookAttackDylib │ ├── AntiAntiDebug │ └── AntiAntiDebug.m │ ├── Config │ ├── ANYMethodLog.h │ ├── ANYMethodLog.m │ ├── MDConfigManager.h │ ├── MDConfigManager.m │ ├── MDCycriptManager.h │ ├── MDCycriptManager.m │ ├── MDMethodTrace.h │ └── MDMethodTrace.m │ ├── Logos │ ├── ZXHookAttackDylib.mm │ └── ZXHookAttackDylib.xm │ ├── StatHook.h │ ├── StatHook.m │ ├── Tools │ ├── LLDBTools.h │ └── LLDBTools.mm │ ├── ZXHookAttackDylib-Prefix.pch │ ├── ZXHookAttackDylib.h │ ├── ZXHookAttackDylib.m │ └── fishhook │ ├── fishhook.c │ └── fishhook.h └── ZXHookDetection ├── ZXHookDetection.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── ZXHookDetection.xcscheme ├── ZXHookDetection ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── ZXHookDetection │ ├── NSDictionary+ZXDetection.h │ ├── NSDictionary+ZXDetection.m │ ├── ZXHookDetection.h │ └── ZXHookDetection.m └── main.m ├── ZXHookDetectionTests ├── Info.plist └── ZXHookDetectionTests.m ├── ZXHookDetectionUITests ├── Info.plist └── ZXHookDetectionUITests.m ├── ZXHookFramework ├── Info.plist ├── ZXHookFramework.h ├── ZXMyFramework.h ├── ZXMyFramework.m ├── fishhook.c └── fishhook.h └── ZXHookFrameworkTests ├── Info.plist └── ZXHookFrameworkTests.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/README.md -------------------------------------------------------------------------------- /ZXHookAttack/LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/lzx/Library/Developer/Xcode/DerivedData/ZXHookAttack-ghzakqhavjhkjygszuflbvzoqffs/Build/Products/Debug-iphoneos -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/Config/MDConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/Config/MDConfig.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/Info.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/Scripts/quick-resign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/Scripts/quick-resign.sh -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/Target.plist: -------------------------------------------------------------------------------- 1 | /Users/lzx/Desktop/程序/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Info.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/LaunchScreen.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/LaunchScreen.storyboardc/Info.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Frameworks/ZXHookFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Frameworks/ZXHookFramework.framework/Info.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Frameworks/ZXHookFramework.framework/ZXHookFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Frameworks/ZXHookFramework.framework/ZXHookFramework -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Frameworks/ZXHookFramework.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Frameworks/ZXHookFramework.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/Info.plist -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/ZXHookDetection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/ZXHookDetection -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/embedded.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/TargetApp/ZXHookDetection.app/embedded.mobileprovision -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/TargetApp/put ipa or app here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttack/icon.png -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/AntiAntiDebug/AntiAntiDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/AntiAntiDebug/AntiAntiDebug.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/ANYMethodLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/ANYMethodLog.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/ANYMethodLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/ANYMethodLog.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/MDConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/MDConfigManager.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/MDConfigManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/MDConfigManager.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/MDCycriptManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/MDCycriptManager.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/MDCycriptManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/MDCycriptManager.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/MDMethodTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/MDMethodTrace.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Config/MDMethodTrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Config/MDMethodTrace.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Logos/ZXHookAttackDylib.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Logos/ZXHookAttackDylib.mm -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Logos/ZXHookAttackDylib.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Logos/ZXHookAttackDylib.xm -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/StatHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/StatHook.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/StatHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/StatHook.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Tools/LLDBTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Tools/LLDBTools.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/Tools/LLDBTools.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/Tools/LLDBTools.mm -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/ZXHookAttackDylib-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/ZXHookAttackDylib-Prefix.pch -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/ZXHookAttackDylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/ZXHookAttackDylib.h -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/ZXHookAttackDylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/ZXHookAttackDylib.m -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/fishhook/fishhook.c -------------------------------------------------------------------------------- /ZXHookAttack/ZXHookAttackDylib/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookAttack/ZXHookAttackDylib/fishhook/fishhook.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection.xcodeproj/xcshareddata/xcschemes/ZXHookDetection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection.xcodeproj/xcshareddata/xcschemes/ZXHookDetection.xcscheme -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/AppDelegate.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/AppDelegate.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/Info.plist -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/ViewController.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/ViewController.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/ZXHookDetection/NSDictionary+ZXDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/ZXHookDetection/NSDictionary+ZXDetection.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/ZXHookDetection/NSDictionary+ZXDetection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/ZXHookDetection/NSDictionary+ZXDetection.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/ZXHookDetection/ZXHookDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/ZXHookDetection/ZXHookDetection.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/ZXHookDetection/ZXHookDetection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/ZXHookDetection/ZXHookDetection.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetection/main.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetectionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetectionTests/Info.plist -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetectionTests/ZXHookDetectionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetectionTests/ZXHookDetectionTests.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetectionUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetectionUITests/Info.plist -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookDetectionUITests/ZXHookDetectionUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookDetectionUITests/ZXHookDetectionUITests.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFramework/Info.plist -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFramework/ZXHookFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFramework/ZXHookFramework.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFramework/ZXMyFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFramework/ZXMyFramework.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFramework/ZXMyFramework.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFramework/ZXMyFramework.m -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFramework/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFramework/fishhook.c -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFramework/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFramework/fishhook.h -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFrameworkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFrameworkTests/Info.plist -------------------------------------------------------------------------------- /ZXHookDetection/ZXHookFrameworkTests/ZXHookFrameworkTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileZXLee/ZXHookDetection/HEAD/ZXHookDetection/ZXHookFrameworkTests/ZXHookFrameworkTests.m --------------------------------------------------------------------------------