├── .gitignore ├── A0CrackMe ├── .DS_Store ├── A0CrackMe.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── andyhah.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── andyhah.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── A0CrackMe │ ├── .DS_Store │ ├── A0Classes │ ├── CheekCheekEnvViewController.h │ ├── CheekCheekEnvViewController.m │ ├── CheekDebuggedViewController.h │ ├── CheekDebuggedViewController.m │ ├── CheekDylibViewController.h │ ├── CheekDylibViewController.m │ ├── CheekExceptClassViewController.h │ ├── CheekExceptClassViewController.m │ ├── CheekForkSubViewController.h │ ├── CheekForkSubViewController.m │ ├── CheekIphoneViewController.h │ ├── CheekIphoneViewController.m │ ├── CheekLstatAtLnkViewController.h │ ├── CheekLstatAtLnkViewController.m │ ├── CheekOpenJailAppViewController.h │ ├── CheekOpenJailAppViewController.m │ ├── CheekOpenJailFileViewController.h │ ├── CheekOpenJailFileViewController.m │ ├── CheekStatViewController.h │ ├── CheekStatViewController.m │ ├── CheekWritePrivatePathViewController.h │ ├── CheekWritePrivatePathViewController.m │ ├── CrackArrayDefaults.h │ ├── CrackArrayDefaults.m │ ├── JailBreakCheek.h │ ├── JailBreakCheek.m │ ├── Md5ViewController.h │ ├── Md5ViewController.m │ ├── Tools.h │ ├── Tools.m │ ├── UIButton+CrackTitle.h │ └── UIButton+CrackTitle.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── cute_girl_1024x1024.jpeg │ │ ├── cute_girl_120x120.jpeg │ │ └── cute_girl_76x76.jpeg │ └── tabbarImages │ │ ├── Contents.json │ │ └── mid_finger_joker.imageset │ │ ├── Contents.json │ │ ├── mid_finger_joker-2.png │ │ ├── mid_finger_joker-3.png │ │ └── mid_finger_joker-4.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Contents.json │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Object file 2 | *.o 3 | 4 | # Ada Library Information 5 | *.ali 6 | -------------------------------------------------------------------------------- /A0CrackMe/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/.DS_Store -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe.xcodeproj/project.xcworkspace/xcuserdata/andyhah.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe.xcodeproj/project.xcworkspace/xcuserdata/andyhah.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe.xcodeproj/xcuserdata/andyhah.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe.xcodeproj/xcuserdata/andyhah.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe.xcodeproj/xcuserdata/andyhah.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe.xcodeproj/xcuserdata/andyhah.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/.DS_Store -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekCheekEnvViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekCheekEnvViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekCheekEnvViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekCheekEnvViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekDebuggedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekDebuggedViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekDebuggedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekDebuggedViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekDylibViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekDylibViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekDylibViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekDylibViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekExceptClassViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekExceptClassViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekExceptClassViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekExceptClassViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekForkSubViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekForkSubViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekForkSubViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekForkSubViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekIphoneViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekIphoneViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekIphoneViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekIphoneViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekLstatAtLnkViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekLstatAtLnkViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekLstatAtLnkViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekLstatAtLnkViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailAppViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailAppViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailAppViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailAppViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailFileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailFileViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailFileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekOpenJailFileViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekStatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekStatViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekStatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekStatViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekWritePrivatePathViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekWritePrivatePathViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CheekWritePrivatePathViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CheekWritePrivatePathViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CrackArrayDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CrackArrayDefaults.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/CrackArrayDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/CrackArrayDefaults.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/JailBreakCheek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/JailBreakCheek.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/JailBreakCheek.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/JailBreakCheek.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/Md5ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/Md5ViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/Md5ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/Md5ViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/Tools.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/Tools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/Tools.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/UIButton+CrackTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/UIButton+CrackTitle.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/A0Classes/UIButton+CrackTitle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/A0Classes/UIButton+CrackTitle.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/AppDelegate.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/AppDelegate.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/cute_girl_1024x1024.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/cute_girl_1024x1024.jpeg -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/cute_girl_120x120.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/cute_girl_120x120.jpeg -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/cute_girl_76x76.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/AppIcon.appiconset/cute_girl_76x76.jpeg -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/Contents.json -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/Contents.json -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/mid_finger_joker-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/mid_finger_joker-2.png -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/mid_finger_joker-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/mid_finger_joker-3.png -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/mid_finger_joker-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Assets.xcassets/tabbarImages/mid_finger_joker.imageset/mid_finger_joker-4.png -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Contents.json -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/Info.plist -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/SceneDelegate.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/SceneDelegate.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/ViewController.h -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/ViewController.m -------------------------------------------------------------------------------- /A0CrackMe/A0CrackMe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/A0CrackMe/A0CrackMe/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy0andy/ios_crackme/HEAD/README.md --------------------------------------------------------------------------------