├── README.md └── YKBLock ├── CydiaSubstrate.framework ├── CydiaSubstrate ├── CydiaSubstrate.tbd ├── Headers │ └── CydiaSubstrate.h └── Info.plist ├── Plugin_F ├── Plugin_F.entitlements └── Property List.plist ├── YLBLOCK.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── apple.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── yuayu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── apple.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── yuayu.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── ch.dylib ├── ch.framework ├── Info.plist ├── _CodeSignature │ └── CodeResources └── ch ├── plugin ├── AFNetworking │ ├── AFHTTPSessionManager.h │ ├── AFHTTPSessionManager.m │ ├── AFNetworkReachabilityManager.h │ ├── AFNetworkReachabilityManager.m │ ├── AFNetworking.h │ ├── AFSecurityPolicy.h │ ├── AFSecurityPolicy.m │ ├── AFURLRequestSerialization.h │ ├── AFURLRequestSerialization.m │ ├── AFURLResponseSerialization.h │ ├── AFURLResponseSerialization.m │ ├── AFURLSessionManager.h │ └── AFURLSessionManager.m ├── AntiAntiDebug.m ├── ENCTool │ ├── AESCrypt.h │ ├── AESCrypt.m │ ├── NSData+Base64.h │ ├── NSData+Base64.m │ ├── NSData+CommonCrypto.h │ ├── NSData+CommonCrypto.m │ ├── NSString+Base64.h │ ├── NSString+Base64.m │ ├── RSA.h │ ├── RSA.m │ └── SCLAlertView │ │ ├── SCLAlertView.h │ │ ├── SCLAlertView.m │ │ ├── SCLAlertViewResponder.h │ │ ├── SCLAlertViewResponder.m │ │ ├── SCLAlertViewStyleKit.h │ │ ├── SCLAlertViewStyleKit.m │ │ ├── SCLButton.h │ │ ├── SCLButton.m │ │ ├── SCLMacros.h │ │ ├── SCLSwitchView.h │ │ ├── SCLSwitchView.m │ │ ├── SCLTextView.h │ │ ├── SCLTextView.m │ │ ├── SCLTimerDisplay.h │ │ ├── SCLTimerDisplay.m │ │ ├── UIImage+ImageEffects.h │ │ └── UIImage+ImageEffects.m ├── NetWorkingApiClient.h ├── NetWorkingApiClient.m ├── Verify │ ├── LRKeychain.h │ ├── LRKeychain.m │ ├── ZJHSessionConfiguration.h │ ├── ZJHSessionConfiguration.m │ ├── ZJHURLProtocol.h │ └── ZJHURLProtocol.mm ├── XVC.h ├── XVC.m ├── codeObfuscation.h ├── dylibs │ ├── ch.dylib │ ├── lib.dylib │ ├── main.dylib │ └── rd.dylib ├── fishhook │ ├── fishhook.c │ └── fishhook.h ├── plugin-Prefix.pch ├── plugin.mm └── plugin.xm └── rd.dylib /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/README.md -------------------------------------------------------------------------------- /YKBLock/CydiaSubstrate.framework/CydiaSubstrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/CydiaSubstrate.framework/CydiaSubstrate -------------------------------------------------------------------------------- /YKBLock/CydiaSubstrate.framework/CydiaSubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/CydiaSubstrate.framework/CydiaSubstrate.tbd -------------------------------------------------------------------------------- /YKBLock/CydiaSubstrate.framework/Headers/CydiaSubstrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/CydiaSubstrate.framework/Headers/CydiaSubstrate.h -------------------------------------------------------------------------------- /YKBLock/CydiaSubstrate.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/CydiaSubstrate.framework/Info.plist -------------------------------------------------------------------------------- /YKBLock/Plugin_F/Plugin_F.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/Plugin_F/Plugin_F.entitlements -------------------------------------------------------------------------------- /YKBLock/Plugin_F/Property List.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/Plugin_F/Property List.plist -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/xcuserdata/yuayu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/project.xcworkspace/xcuserdata/yuayu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/xcuserdata/yuayu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/xcuserdata/yuayu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /YKBLock/YLBLOCK.xcodeproj/xcuserdata/yuayu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/YLBLOCK.xcodeproj/xcuserdata/yuayu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YKBLock/ch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/ch.dylib -------------------------------------------------------------------------------- /YKBLock/ch.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/ch.framework/Info.plist -------------------------------------------------------------------------------- /YKBLock/ch.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/ch.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /YKBLock/ch.framework/ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/ch.framework/ch -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /YKBLock/plugin/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /YKBLock/plugin/AntiAntiDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/AntiAntiDebug.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/AESCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/AESCrypt.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/AESCrypt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/AESCrypt.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/NSData+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/NSData+Base64.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/NSData+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/NSData+Base64.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/NSData+CommonCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/NSData+CommonCrypto.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/NSData+CommonCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/NSData+CommonCrypto.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/NSString+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/NSString+Base64.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/NSString+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/NSString+Base64.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/RSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/RSA.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/RSA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/RSA.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /YKBLock/plugin/ENCTool/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/ENCTool/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /YKBLock/plugin/NetWorkingApiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/NetWorkingApiClient.h -------------------------------------------------------------------------------- /YKBLock/plugin/NetWorkingApiClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/NetWorkingApiClient.m -------------------------------------------------------------------------------- /YKBLock/plugin/Verify/LRKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/Verify/LRKeychain.h -------------------------------------------------------------------------------- /YKBLock/plugin/Verify/LRKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/Verify/LRKeychain.m -------------------------------------------------------------------------------- /YKBLock/plugin/Verify/ZJHSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/Verify/ZJHSessionConfiguration.h -------------------------------------------------------------------------------- /YKBLock/plugin/Verify/ZJHSessionConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/Verify/ZJHSessionConfiguration.m -------------------------------------------------------------------------------- /YKBLock/plugin/Verify/ZJHURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/Verify/ZJHURLProtocol.h -------------------------------------------------------------------------------- /YKBLock/plugin/Verify/ZJHURLProtocol.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/Verify/ZJHURLProtocol.mm -------------------------------------------------------------------------------- /YKBLock/plugin/XVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/XVC.h -------------------------------------------------------------------------------- /YKBLock/plugin/XVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/XVC.m -------------------------------------------------------------------------------- /YKBLock/plugin/codeObfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/codeObfuscation.h -------------------------------------------------------------------------------- /YKBLock/plugin/dylibs/ch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/dylibs/ch.dylib -------------------------------------------------------------------------------- /YKBLock/plugin/dylibs/lib.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/dylibs/lib.dylib -------------------------------------------------------------------------------- /YKBLock/plugin/dylibs/main.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/dylibs/main.dylib -------------------------------------------------------------------------------- /YKBLock/plugin/dylibs/rd.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/dylibs/rd.dylib -------------------------------------------------------------------------------- /YKBLock/plugin/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/fishhook/fishhook.c -------------------------------------------------------------------------------- /YKBLock/plugin/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/fishhook/fishhook.h -------------------------------------------------------------------------------- /YKBLock/plugin/plugin-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/plugin-Prefix.pch -------------------------------------------------------------------------------- /YKBLock/plugin/plugin.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/plugin.mm -------------------------------------------------------------------------------- /YKBLock/plugin/plugin.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/plugin/plugin.xm -------------------------------------------------------------------------------- /YKBLock/rd.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohua63/YKBLock-For-iPA/HEAD/YKBLock/rd.dylib --------------------------------------------------------------------------------