├── .clang-format ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── SSZipArchive │ ├── LICENSE.txt │ ├── README.md │ └── SSZipArchive │ │ ├── SSZipArchive.h │ │ ├── SSZipArchive.m │ │ ├── SSZipCommon.h │ │ ├── ZipArchive.h │ │ └── minizip │ │ ├── mz.h │ │ ├── mz_compat.c │ │ ├── mz_compat.h │ │ ├── mz_crypt.c │ │ ├── mz_crypt.h │ │ ├── mz_crypt_apple.c │ │ ├── mz_os.c │ │ ├── mz_os.h │ │ ├── mz_os_posix.c │ │ ├── mz_strm.c │ │ ├── mz_strm.h │ │ ├── mz_strm_buf.c │ │ ├── mz_strm_buf.h │ │ ├── mz_strm_mem.c │ │ ├── mz_strm_mem.h │ │ ├── mz_strm_os.h │ │ ├── mz_strm_os_posix.c │ │ ├── mz_strm_pkcrypt.c │ │ ├── mz_strm_pkcrypt.h │ │ ├── mz_strm_split.c │ │ ├── mz_strm_split.h │ │ ├── mz_strm_wzaes.c │ │ ├── mz_strm_wzaes.h │ │ ├── mz_strm_zlib.c │ │ ├── mz_strm_zlib.h │ │ ├── mz_zip.c │ │ ├── mz_zip.h │ │ ├── mz_zip_rw.c │ │ └── mz_zip_rw.h └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-Info.plist │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ ├── AFNetworking-umbrella.h │ ├── AFNetworking.debug.xcconfig │ ├── AFNetworking.modulemap │ └── AFNetworking.release.xcconfig │ ├── Pods-Ramiel │ ├── Pods-Ramiel-Info.plist │ ├── Pods-Ramiel-acknowledgements.markdown │ ├── Pods-Ramiel-acknowledgements.plist │ ├── Pods-Ramiel-dummy.m │ ├── Pods-Ramiel-frameworks-Debug-input-files.xcfilelist │ ├── Pods-Ramiel-frameworks-Debug-output-files.xcfilelist │ ├── Pods-Ramiel-frameworks-Release-input-files.xcfilelist │ ├── Pods-Ramiel-frameworks-Release-output-files.xcfilelist │ ├── Pods-Ramiel-frameworks.sh │ ├── Pods-Ramiel-umbrella.h │ ├── Pods-Ramiel.debug.xcconfig │ ├── Pods-Ramiel.modulemap │ └── Pods-Ramiel.release.xcconfig │ └── SSZipArchive │ ├── SSZipArchive-Info.plist │ ├── SSZipArchive-dummy.m │ ├── SSZipArchive-prefix.pch │ ├── SSZipArchive-umbrella.h │ ├── SSZipArchive.debug.xcconfig │ ├── SSZipArchive.modulemap │ └── SSZipArchive.release.xcconfig ├── README.md ├── Ramiel.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── Ramiel.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── xcschemes │ └── Ramiel.xcscheme ├── Ramiel ├── APNonceSetterViewController.h ├── APNonceSetterViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 512.png │ │ ├── 64.png │ │ └── Contents.json │ ├── Contents.json │ └── image.imageset │ │ ├── Contents.json │ │ └── image.png ├── Base.lproj │ └── Main.storyboard ├── CreditsViewController.h ├── CreditsViewController.m ├── DependenciesViewController.h ├── DependenciesViewController.m ├── Device.h ├── Device.m ├── Exploits │ ├── Fugu │ │ └── .keep │ ├── eclipsa7000 │ ├── eclipsa7001 │ ├── eclipsa8000 │ ├── eclipsa8003 │ └── iPwnder32 ├── FileMDHash.c ├── FileMDHash.h ├── FirmwareKeys.h ├── FirmwareKeys.m ├── IPSW.h ├── IPSW.m ├── Info.plist ├── Ramiel.entitlements ├── RamielRelease.entitlements ├── RamielView.h ├── RamielView.m ├── SHSHDumperViewController.h ├── SHSHDumperViewController.m ├── SHSHViewController.h ├── SHSHViewController.m ├── SettingsView.h ├── SettingsView.m ├── bootlogo.im4p ├── iPatcher ├── main.m ├── partial.c ├── partial.h ├── shsh │ ├── 0x7000.shsh │ ├── 0x7001.shsh │ ├── 0x8000.shsh │ ├── 0x8003.shsh │ ├── 0x8010.shsh │ ├── 0x8011.shsh │ ├── 0x8015.shsh │ └── shsh.shsh └── ssh │ ├── Kernel64Patcher │ ├── Kernel64PatcherA │ ├── Kernel64PatcherB │ ├── compare.py │ ├── dd_ent.xml │ ├── dump.py │ ├── ent.xml │ ├── gtar │ ├── iproxy │ ├── kc.bpatch │ ├── ldid2 │ └── sshLogo.im4p ├── formatCode.sh ├── ibootim ├── ibootim.c ├── ibootim.h ├── ibootimMain.h ├── ibootim_LICENSE ├── ibootimmain.c ├── lzss.c └── lzss.h ├── images ├── Project.png ├── dylibs.png └── selection.png └── kairos ├── .gitignore ├── README.md ├── decoders.c ├── include ├── decoders.h ├── instructions.h ├── mac_policy.h ├── mach-o_loader.h ├── mach-o_nlist.h ├── newpatch.h └── patchfinder64.h ├── instructions.c ├── kairos.c ├── kairos.h ├── kairos_LICENSE ├── newpatch.c └── patchfinder64.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SSZipArchive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SSZipArchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/README.md -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt_apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt_apple.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_os_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_os_posix.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os_posix.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/Pods-Ramiel/Pods-Ramiel.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SSZipArchive/SSZipArchive.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Pods/Target Support Files/SSZipArchive/SSZipArchive.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/README.md -------------------------------------------------------------------------------- /Ramiel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Ramiel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Ramiel.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Ramiel.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Ramiel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Ramiel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Ramiel.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Ramiel.xcworkspace/xcshareddata/xcschemes/Ramiel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel.xcworkspace/xcshareddata/xcschemes/Ramiel.xcscheme -------------------------------------------------------------------------------- /Ramiel/APNonceSetterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/APNonceSetterViewController.h -------------------------------------------------------------------------------- /Ramiel/APNonceSetterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/APNonceSetterViewController.m -------------------------------------------------------------------------------- /Ramiel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/AppDelegate.h -------------------------------------------------------------------------------- /Ramiel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/AppDelegate.m -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/image.imageset/Contents.json -------------------------------------------------------------------------------- /Ramiel/Assets.xcassets/image.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Assets.xcassets/image.imageset/image.png -------------------------------------------------------------------------------- /Ramiel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Ramiel/CreditsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/CreditsViewController.h -------------------------------------------------------------------------------- /Ramiel/CreditsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/CreditsViewController.m -------------------------------------------------------------------------------- /Ramiel/DependenciesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/DependenciesViewController.h -------------------------------------------------------------------------------- /Ramiel/DependenciesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/DependenciesViewController.m -------------------------------------------------------------------------------- /Ramiel/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Device.h -------------------------------------------------------------------------------- /Ramiel/Device.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Device.m -------------------------------------------------------------------------------- /Ramiel/Exploits/Fugu/.keep: -------------------------------------------------------------------------------- 1 | why are you poking around here? :) 2 | -------------------------------------------------------------------------------- /Ramiel/Exploits/eclipsa7000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Exploits/eclipsa7000 -------------------------------------------------------------------------------- /Ramiel/Exploits/eclipsa7001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Exploits/eclipsa7001 -------------------------------------------------------------------------------- /Ramiel/Exploits/eclipsa8000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Exploits/eclipsa8000 -------------------------------------------------------------------------------- /Ramiel/Exploits/eclipsa8003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Exploits/eclipsa8003 -------------------------------------------------------------------------------- /Ramiel/Exploits/iPwnder32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Exploits/iPwnder32 -------------------------------------------------------------------------------- /Ramiel/FileMDHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/FileMDHash.c -------------------------------------------------------------------------------- /Ramiel/FileMDHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/FileMDHash.h -------------------------------------------------------------------------------- /Ramiel/FirmwareKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/FirmwareKeys.h -------------------------------------------------------------------------------- /Ramiel/FirmwareKeys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/FirmwareKeys.m -------------------------------------------------------------------------------- /Ramiel/IPSW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/IPSW.h -------------------------------------------------------------------------------- /Ramiel/IPSW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/IPSW.m -------------------------------------------------------------------------------- /Ramiel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Info.plist -------------------------------------------------------------------------------- /Ramiel/Ramiel.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/Ramiel.entitlements -------------------------------------------------------------------------------- /Ramiel/RamielRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/RamielRelease.entitlements -------------------------------------------------------------------------------- /Ramiel/RamielView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/RamielView.h -------------------------------------------------------------------------------- /Ramiel/RamielView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/RamielView.m -------------------------------------------------------------------------------- /Ramiel/SHSHDumperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/SHSHDumperViewController.h -------------------------------------------------------------------------------- /Ramiel/SHSHDumperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/SHSHDumperViewController.m -------------------------------------------------------------------------------- /Ramiel/SHSHViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/SHSHViewController.h -------------------------------------------------------------------------------- /Ramiel/SHSHViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/SHSHViewController.m -------------------------------------------------------------------------------- /Ramiel/SettingsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/SettingsView.h -------------------------------------------------------------------------------- /Ramiel/SettingsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/SettingsView.m -------------------------------------------------------------------------------- /Ramiel/bootlogo.im4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/bootlogo.im4p -------------------------------------------------------------------------------- /Ramiel/iPatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/iPatcher -------------------------------------------------------------------------------- /Ramiel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/main.m -------------------------------------------------------------------------------- /Ramiel/partial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/partial.c -------------------------------------------------------------------------------- /Ramiel/partial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/partial.h -------------------------------------------------------------------------------- /Ramiel/shsh/0x7000.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x7000.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/0x7001.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x7001.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/0x8000.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x8000.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/0x8003.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x8003.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/0x8010.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x8010.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/0x8011.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x8011.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/0x8015.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/0x8015.shsh -------------------------------------------------------------------------------- /Ramiel/shsh/shsh.shsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/shsh/shsh.shsh -------------------------------------------------------------------------------- /Ramiel/ssh/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/Kernel64Patcher -------------------------------------------------------------------------------- /Ramiel/ssh/Kernel64PatcherA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/Kernel64PatcherA -------------------------------------------------------------------------------- /Ramiel/ssh/Kernel64PatcherB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/Kernel64PatcherB -------------------------------------------------------------------------------- /Ramiel/ssh/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/compare.py -------------------------------------------------------------------------------- /Ramiel/ssh/dd_ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/dd_ent.xml -------------------------------------------------------------------------------- /Ramiel/ssh/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/dump.py -------------------------------------------------------------------------------- /Ramiel/ssh/ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/ent.xml -------------------------------------------------------------------------------- /Ramiel/ssh/gtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/gtar -------------------------------------------------------------------------------- /Ramiel/ssh/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/iproxy -------------------------------------------------------------------------------- /Ramiel/ssh/kc.bpatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ramiel/ssh/ldid2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/ldid2 -------------------------------------------------------------------------------- /Ramiel/ssh/sshLogo.im4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/Ramiel/ssh/sshLogo.im4p -------------------------------------------------------------------------------- /formatCode.sh: -------------------------------------------------------------------------------- 1 | ls ./Ramiel/*.[hm] | xargs clang-format -i -style=file 2 | -------------------------------------------------------------------------------- /ibootim/ibootim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/ibootim.c -------------------------------------------------------------------------------- /ibootim/ibootim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/ibootim.h -------------------------------------------------------------------------------- /ibootim/ibootimMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/ibootimMain.h -------------------------------------------------------------------------------- /ibootim/ibootim_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/ibootim_LICENSE -------------------------------------------------------------------------------- /ibootim/ibootimmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/ibootimmain.c -------------------------------------------------------------------------------- /ibootim/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/lzss.c -------------------------------------------------------------------------------- /ibootim/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/ibootim/lzss.h -------------------------------------------------------------------------------- /images/Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/images/Project.png -------------------------------------------------------------------------------- /images/dylibs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/images/dylibs.png -------------------------------------------------------------------------------- /images/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/images/selection.png -------------------------------------------------------------------------------- /kairos/.gitignore: -------------------------------------------------------------------------------- 1 | *.dSYM 2 | kairos 3 | *.im4p.* 4 | tests 5 | extra 6 | -------------------------------------------------------------------------------- /kairos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/README.md -------------------------------------------------------------------------------- /kairos/decoders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/decoders.c -------------------------------------------------------------------------------- /kairos/include/decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/decoders.h -------------------------------------------------------------------------------- /kairos/include/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/instructions.h -------------------------------------------------------------------------------- /kairos/include/mac_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/mac_policy.h -------------------------------------------------------------------------------- /kairos/include/mach-o_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/mach-o_loader.h -------------------------------------------------------------------------------- /kairos/include/mach-o_nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/mach-o_nlist.h -------------------------------------------------------------------------------- /kairos/include/newpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/newpatch.h -------------------------------------------------------------------------------- /kairos/include/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/include/patchfinder64.h -------------------------------------------------------------------------------- /kairos/instructions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/instructions.c -------------------------------------------------------------------------------- /kairos/kairos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/kairos.c -------------------------------------------------------------------------------- /kairos/kairos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/kairos.h -------------------------------------------------------------------------------- /kairos/kairos_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/kairos_LICENSE -------------------------------------------------------------------------------- /kairos/newpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/newpatch.c -------------------------------------------------------------------------------- /kairos/patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewPierson/Ramiel/HEAD/kairos/patchfinder64.c --------------------------------------------------------------------------------