├── .gitignore ├── LICENSE ├── Mobile Cracker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── brandonplank.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── brandonplank.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── README.md ├── compileAll ├── compileAll.sh ├── input │ └── .keep ├── postinst ├── postrm └── postrm_tool │ ├── Makefile │ ├── entitlements.xml │ └── main.m └── mobilecracker ├── 10-million-passwords.txt ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── cracker.imageset │ ├── Contents.json │ └── cracker.jpeg ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/LICENSE -------------------------------------------------------------------------------- /Mobile Cracker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/Mobile Cracker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mobile Cracker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/Mobile Cracker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mobile Cracker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/Mobile Cracker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Mobile Cracker.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/Mobile Cracker.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Mobile Cracker.xcodeproj/project.xcworkspace/xcuserdata/brandonplank.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/Mobile Cracker.xcodeproj/project.xcworkspace/xcuserdata/brandonplank.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Mobile Cracker.xcodeproj/xcuserdata/brandonplank.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/Mobile Cracker.xcodeproj/xcuserdata/brandonplank.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/README.md -------------------------------------------------------------------------------- /compileAll/compileAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/compileAll/compileAll.sh -------------------------------------------------------------------------------- /compileAll/input/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compileAll/postinst: -------------------------------------------------------------------------------- 1 | uicache 2 | -------------------------------------------------------------------------------- /compileAll/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/compileAll/postrm -------------------------------------------------------------------------------- /compileAll/postrm_tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/compileAll/postrm_tool/Makefile -------------------------------------------------------------------------------- /compileAll/postrm_tool/entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/compileAll/postrm_tool/entitlements.xml -------------------------------------------------------------------------------- /compileAll/postrm_tool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/compileAll/postrm_tool/main.m -------------------------------------------------------------------------------- /mobilecracker/10-million-passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/10-million-passwords.txt -------------------------------------------------------------------------------- /mobilecracker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/AppDelegate.swift -------------------------------------------------------------------------------- /mobilecracker/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /mobilecracker/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /mobilecracker/Assets.xcassets/cracker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Assets.xcassets/cracker.imageset/Contents.json -------------------------------------------------------------------------------- /mobilecracker/Assets.xcassets/cracker.imageset/cracker.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Assets.xcassets/cracker.imageset/cracker.jpeg -------------------------------------------------------------------------------- /mobilecracker/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /mobilecracker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /mobilecracker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/Info.plist -------------------------------------------------------------------------------- /mobilecracker/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/SceneDelegate.swift -------------------------------------------------------------------------------- /mobilecracker/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonplank/Mobile-Cracker/HEAD/mobilecracker/ViewController.swift --------------------------------------------------------------------------------