From 0a82894605c5ee5ad0955a85513b40c7114b1cfc Mon Sep 17 00:00:00 2001 From: Silly Sock Date: Tue, 24 Aug 2021 12:56:18 +0930 Subject: [PATCH 01/15] Update README.md README Changes --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f2fa80c..a76247c 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Manticore Jailbreak -iOS Jailbreak based on cicuta_virosa +# Manticore Semi-Untethered Jailbreak +iOS Jailbreak based on cicuta_virosa - iOS 14.0 --> 14.3 -## About us -The Manticore Jailbreak is an independent jailbreaking tool for all devices, including A14 and below, running iOS 14.3 or lower. +## About Us +The Manticore Jailbreak is an independent jailbreaking tool for all devices, including A14 and below, running iOS 14.3-14.0. It's our goal to take back the "The most advanced jailbreak" title from unc0ver. -## Completion +## Completion - [x] Exploit Implementation (cicuta_virosa) - [x] Stable Exploit Primitives - [x] Sandbox escape From b1a324c7b14a04c13240fa33918c37f813c6c93f Mon Sep 17 00:00:00 2001 From: Mattso <67868188+mattsolol@users.noreply.github.com> Date: Thu, 26 Aug 2021 00:28:15 +0100 Subject: [PATCH 02/15] fix an issue preventing the app from opening --- manticore.xcodeproj/project.pbxproj | 10 ++++++---- manticore/Base.lproj/Main.storyboard | 22 +++++++++++----------- manticore/ViewController.m | 2 +- manticore/main.m | 2 +- 4 files changed, 19 insertions(+), 17 deletions(-) diff --git a/manticore.xcodeproj/project.pbxproj b/manticore.xcodeproj/project.pbxproj index 01e0db4..ed77634 100644 --- a/manticore.xcodeproj/project.pbxproj +++ b/manticore.xcodeproj/project.pbxproj @@ -722,10 +722,11 @@ ); ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + BUNDLE_LOADER = ""; CODE_SIGN_ENTITLEMENTS = manticore/manticore.entitlements; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 0.0.1; - DEVELOPMENT_TEAM = 423J45LL22; + DEVELOPMENT_TEAM = 2H5YTYL5HZ; ENABLE_BITCODE = NO; HEADER_SEARCH_PATHS = ( "$(SRCROOT)/manticore/include", @@ -745,7 +746,7 @@ ); MARKETING_VERSION = 0.1; OTHER_LDFLAGS = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.geosn0w.manticore; + PRODUCT_BUNDLE_IDENTIFIER = lol.mattso.manticore; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; WARNING_CFLAGS = "-Wunused"; @@ -762,10 +763,11 @@ ); ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + BUNDLE_LOADER = ""; CODE_SIGN_ENTITLEMENTS = manticore/manticore.entitlements; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 0.0.1; - DEVELOPMENT_TEAM = 423J45LL22; + DEVELOPMENT_TEAM = 2H5YTYL5HZ; ENABLE_BITCODE = NO; HEADER_SEARCH_PATHS = ( "$(SRCROOT)/manticore/include", @@ -785,7 +787,7 @@ ); MARKETING_VERSION = 0.1; OTHER_LDFLAGS = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.geosn0w.manticore; + PRODUCT_BUNDLE_IDENTIFIER = lol.mattso.manticore; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; WARNING_CFLAGS = "-Wunused"; diff --git a/manticore/Base.lproj/Main.storyboard b/manticore/Base.lproj/Main.storyboard index 418b67c..f4a1735 100644 --- a/manticore/Base.lproj/Main.storyboard +++ b/manticore/Base.lproj/Main.storyboard @@ -1,8 +1,8 @@ - + - + @@ -255,7 +255,7 @@ - + @@ -280,7 +280,7 @@ - + @@ -305,7 +305,7 @@ - + @@ -330,7 +330,7 @@ - + @@ -355,7 +355,7 @@ - + @@ -380,7 +380,7 @@ - + @@ -405,7 +405,7 @@ - + @@ -435,7 +435,7 @@ - + @@ -459,7 +459,7 @@ - + diff --git a/manticore/ViewController.m b/manticore/ViewController.m index fbd3b05..da29375 100644 --- a/manticore/ViewController.m +++ b/manticore/ViewController.m @@ -86,7 +86,7 @@ - (void)sendMessageToLog:(NSString *)Message { char *anotherJailbreakMessage; void handleExistingJailbreak(id selfless) { - NSString *jailbreakName = [NSString stringWithUTF8String:anotherJailbreakMessage]; + NSString *jailbreakName = anotherJailbreakMessage ? [NSString stringWithUTF8String: anotherJailbreakMessage]: nil; NSString *messageForUser = [NSString stringWithFormat:@"%s/%@/%@", "We've detected you have ", jailbreakName, @"already installed. Please uninstall it first, and restore ROOT FS before jailbreaking with Manticore to prevent any compatibility issues."]; UIAlertController *existingJailbreakAlert = [UIAlertController alertControllerWithTitle:@"Critical Error" message:messageForUser preferredStyle:UIAlertControllerStyleAlert]; diff --git a/manticore/main.m b/manticore/main.m index 05fc9b0..15f28fb 100644 --- a/manticore/main.m +++ b/manticore/main.m @@ -10,6 +10,6 @@ int main(int argc, char * argv[]) { @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); } } From 38dda9a2ef429271477c43eca57c3644548a2334 Mon Sep 17 00:00:00 2001 From: Luca <33968601+RPwnage@users.noreply.github.com> Date: Thu, 26 Aug 2021 10:17:52 +0200 Subject: [PATCH 03/15] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ba5aa43..6d6fcb7 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,12 @@ # Manticore Jailbreak Manticore Jailbreak is an Free and Open-Source Jailbreak utility developed by the Manticore Team. -Current compatibility: iOS 14.0 -> iOS 14.3 using cicuta_virosa exploit. - -The tool is a work-in-progress. Expect changes. +Current compatibility: iOS 14.0 -> iOS 14.3 using cicuta_virosa exploit. The tool is a work-in-progress. Expect changes and exxpansions in the future. ## About us The Manticore Jailbreak is an independent jailbreaking tool for all devices, including A14 and below, running iOS 14.3 down to iOS 14.0. It's our goal to take back the "The most advanced jailbreak" title from unc0ver. --> Our (only) official Discord is: https://discord.com/invite/manticore +[Official Manticore Discord Server](https://discord.com/invite/manticore) ## Completion - [x] Exploit Implementation (cicuta_virosa) From 91da266d82b4627cf5fe0c45bf713a0d15873ef4 Mon Sep 17 00:00:00 2001 From: rpwnage Date: Thu, 26 Aug 2021 16:38:17 +0200 Subject: [PATCH 04/15] German localization --- manticore.xcodeproj/project.pbxproj | 7 +++ manticore/de.lproj/LaunchScreen.strings | 1 + manticore/de.lproj/Main.strings | 57 +++++++++++++++++++++++++ 3 files changed, 65 insertions(+) create mode 100644 manticore/de.lproj/LaunchScreen.strings create mode 100644 manticore/de.lproj/Main.strings diff --git a/manticore.xcodeproj/project.pbxproj b/manticore.xcodeproj/project.pbxproj index ed77634..186cf10 100644 --- a/manticore.xcodeproj/project.pbxproj +++ b/manticore.xcodeproj/project.pbxproj @@ -82,6 +82,8 @@ 23652B1C25E7B04F004D7F7E /* user_kernel_alloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_kernel_alloc.h; sourceTree = ""; }; 23652B1D25E7B04F004D7F7E /* user_kernel_alloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = user_kernel_alloc.c; sourceTree = ""; }; 23652B2225E7B39B004D7F7E /* iosurface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iosurface.h; sourceTree = ""; }; + 2367F20A26D7DE6200959B29 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Main.strings; sourceTree = ""; }; + 2367F20B26D7DE6300959B29 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/LaunchScreen.strings; sourceTree = ""; }; 23B644E72652681B00531BCC /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; 23B644EC26526CD700531BCC /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; 23B644EE2652700300531BCC /* cs_common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cs_common.h; sourceTree = ""; }; @@ -516,6 +518,7 @@ knownRegions = ( en, Base, + de, ); mainGroup = 23C704E825DB2EE80078DC37; productRefGroup = 23C704F225DB2EE80078DC37 /* Products */; @@ -585,6 +588,7 @@ isa = PBXVariantGroup; children = ( 23C704FE25DB2EE80078DC37 /* Base */, + 2367F20A26D7DE6200959B29 /* de */, ); name = Main.storyboard; sourceTree = ""; @@ -593,6 +597,7 @@ isa = PBXVariantGroup; children = ( 23C7050625DB2EE90078DC37 /* Base */, + 2367F20B26D7DE6300959B29 /* de */, ); name = LaunchScreen.storyboard; sourceTree = ""; @@ -604,6 +609,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; @@ -663,6 +669,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; diff --git a/manticore/de.lproj/LaunchScreen.strings b/manticore/de.lproj/LaunchScreen.strings new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/manticore/de.lproj/LaunchScreen.strings @@ -0,0 +1 @@ + diff --git a/manticore/de.lproj/Main.strings b/manticore/de.lproj/Main.strings new file mode 100644 index 0000000..edddf29 --- /dev/null +++ b/manticore/de.lproj/Main.strings @@ -0,0 +1,57 @@ + +/* Class = "UILabel"; text = "Manticore"; ObjectID = "0il-tf-sNa"; */ +"0il-tf-sNa.text" = "Manticore"; + +/* Class = "UILabel"; text = "Set APNonce"; ObjectID = "0yi-4F-L8u"; */ +"0yi-4F-L8u.text" = "APNonce setzen"; + +/* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */ +"2Nf-dY-FJy.text" = "Tweaks Erlauben"; + +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */ +"6hM-Fc-FDp.normalTitle" = "Jailbreak"; + +/* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */ +"AVZ-qX-0ms.text" = "RootFS Wiederherstellen"; + +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */ +"B09-wX-UeI.normalTitle" = "Jailbreak"; + +/* Class = "UITextField"; placeholder = "0x1111111111111111"; ObjectID = "JaD-0s-nbo"; */ +"JaD-0s-nbo.placeholder" = "0x1111111111111111"; + +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "Kda-OK-gFg"; */ +"Kda-OK-gFg.text" = "iOS 14.0 - 14.3"; + +/* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */ +"WEh-zy-xS5.normalTitle" = "APNonce Speichern & Setzen"; + +/* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */ +"czz-vo-cHF.normalTitle" = "Einstellungen"; + +/* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */ +"efL-nQ-xsh.text" = "OTA Updates Blockieren"; + +/* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */ +"i1H-yX-3n8.text" = "Kompatibilität"; + +/* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */ +"kyq-MK-M3C.text" = "Bildschirmzeit Entfernen"; + +/* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */ +"mUJ-nK-XHv.text" = "Manticore"; + +/* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */ +"o5h-H3-igh.text" = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; + +/* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */ +"oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; + +/* Class = "UILabel"; text = "Log ECID"; ObjectID = "voS-Ev-D3K"; */ +"voS-Ev-D3K.text" = "Log ECID"; + +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "xtR-ck-MtY"; */ +"xtR-ck-MtY.text" = "iOS 14.0 - 14.3"; + +/* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */ +"yiE-wg-tPU.text" = "Log Window Einblenden"; From 53c04ce3b6e128caa016055534314a5c51d8063f Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:15:58 +0900 Subject: [PATCH 05/15] Add files via upload --- manticore/ja.lproj/Main.Strings | 93 +++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 manticore/ja.lproj/Main.Strings diff --git a/manticore/ja.lproj/Main.Strings b/manticore/ja.lproj/Main.Strings new file mode 100644 index 0000000..5606719 --- /dev/null +++ b/manticore/ja.lproj/Main.Strings @@ -0,0 +1,93 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2580 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fmodern\fcharset0 Courier;\f1\fnil\fcharset128 HiraginoSans-W3;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +{\*\expandedcolortbl;;\cssrgb\c0\c0\c0;} +\paperw11900\paperh16840\margl1440\margr1440\vieww11520\viewh8400\viewkind0 +\deftab720 +\pard\pardeftab720\partightenfactor0 + +\f0\fs24 \cf2 \expnd0\expndtw0\kerning0 +\outl0\strokewidth0 \strokec2 \ +/* Class = "UILabel"; text = "Manticore"; ObjectID = "0il-tf-sNa"; */\ +"0il-tf-sNa.text" = "Manticore";\ +\ +/* Class = "UILabel"; text = "Set APNonce"; ObjectID = "0yi-4F-L8u"; */\ +"0yi-4F-L8u.text" = "APNonce +\f1 \'82\'cc\'83\'5a\'83\'62\'83\'67 +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */\ +"2Nf-dY-FJy.text" = "Tweaks +\f1 \'82\'cc\'97\'4c\'8c\'f8\'89\'bb +\f0 \'94;\ +\ +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */\ +"6hM-Fc-FDp.normalTitle" = \'93 +\f1 \'92\'45\'8d\'96 +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */\ +"AVZ-qX-0ms.text" = "RootFS +\f1 \'82\'f0\'95\'9c\'8c\'b3 +\f0 \'94;\ +\ +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */\ +"B09-wX-UeI.normalTitle" = "Jailbreak";\ +\ +/* Class = "UITextField"; placeholder = "0x1111111111111111"; ObjectID = "JaD-0s-nbo"; */\ +"JaD-0s-nbo.placeholder" = "0x1111111111111111";\ +\ +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "Kda-OK-gFg"; */\ +"Kda-OK-gFg.text" = "iOS 14.0 - 14.3";\ +\ +/* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */\ +"WEh-zy-xS5.normalTitle" = "APNonce +\f1 \'82\'cc\'95\'db\'91\'b6\'81\'40\'81\'95\'81\'40\'83\'5a\'83\'62\'83\'67 +\f0 \'94;\ +\ +/* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */\ +"czz-vo-cHF.normalTitle" = \'93 +\f1 \'90\'dd\'92\'e8 +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */\ +"efL-nQ-xsh.text" = \'93OTA +\f1 \'83\'41\'83\'62\'83\'76\'83\'66\'81\'5b\'83\'67\'82\'cc\'96\'b3\'8c\'f8\'89\'bb +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */\ +"i1H-yX-3n8.text" = \'93 +\f1 \'8c\'dd\'8a\'b7\'90\'ab +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */\ +"kyq-MK-M3C.text" = \'93 +\f1 \'83\'58\'83\'4e\'83\'8a\'81\'5b\'83\'93\'83\'5e\'83\'43\'83\'80\'82\'f0\'96\'b3\'8c\'f8\'89\'bb +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */\ +"mUJ-nK-XHv.text" = "Manticore";\ +\ +/* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */\ +"o5h-H3-igh.text" = \'93iOS 14.3 +\f1 \'82\'cc +\f0 iPhone 11 +\f1 \'82\'cd\'8c\'dd\'8a\'b7\'90\'ab\'82\'aa\'82\'a0\'82\'e8\'82\'dc\'82\'b7\'81\'49 +\f0 \'94;\ +\ +/* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */\ +"oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.";\ +\ +/* Class = "UILabel"; text = "Log ECID"; ObjectID = "voS-Ev-D3K"; */\ +"voS-Ev-D3K.text" = \'93ECID +\f1 \'82\'f0\'83\'8d\'83\'4f\'82\'c9\'8f\'6f\'97\'cd\'82\'b7\'82\'e9 +\f0 \'94;\ +\ +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "xtR-ck-MtY"; */\ +"xtR-ck-MtY.text" = "iOS 14.0 - 14.3";\ +\ +/* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */\ +"yiE-wg-tPU.text" = \'93 +\f1 \'83\'8d\'83\'4f\'89\'e6\'96\'ca\'82\'cc\'97\'4c\'8c\'f8\'89\'bb +\f0 \'94;\ +} \ No newline at end of file From 7174e5faf53d57557bd7179064d6a68f9203edda Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:16:26 +0900 Subject: [PATCH 06/15] Create LaunchScreen.strings --- manticore/ja.lproj/LaunchScreen.strings | 1 + 1 file changed, 1 insertion(+) create mode 100644 manticore/ja.lproj/LaunchScreen.strings diff --git a/manticore/ja.lproj/LaunchScreen.strings b/manticore/ja.lproj/LaunchScreen.strings new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/manticore/ja.lproj/LaunchScreen.strings @@ -0,0 +1 @@ + From 3fc3aaf3c3c34ad30055d47403473e1c7472eefe Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:24:50 +0900 Subject: [PATCH 07/15] Delete manticore/ja.lproj directory --- manticore/ja.lproj/LaunchScreen.strings | 1 - manticore/ja.lproj/Main.Strings | 93 ------------------------- 2 files changed, 94 deletions(-) delete mode 100644 manticore/ja.lproj/LaunchScreen.strings delete mode 100644 manticore/ja.lproj/Main.Strings diff --git a/manticore/ja.lproj/LaunchScreen.strings b/manticore/ja.lproj/LaunchScreen.strings deleted file mode 100644 index 8b13789..0000000 --- a/manticore/ja.lproj/LaunchScreen.strings +++ /dev/null @@ -1 +0,0 @@ - diff --git a/manticore/ja.lproj/Main.Strings b/manticore/ja.lproj/Main.Strings deleted file mode 100644 index 5606719..0000000 --- a/manticore/ja.lproj/Main.Strings +++ /dev/null @@ -1,93 +0,0 @@ -{\rtf1\ansi\ansicpg1252\cocoartf2580 -\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fmodern\fcharset0 Courier;\f1\fnil\fcharset128 HiraginoSans-W3;} -{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} -{\*\expandedcolortbl;;\cssrgb\c0\c0\c0;} -\paperw11900\paperh16840\margl1440\margr1440\vieww11520\viewh8400\viewkind0 -\deftab720 -\pard\pardeftab720\partightenfactor0 - -\f0\fs24 \cf2 \expnd0\expndtw0\kerning0 -\outl0\strokewidth0 \strokec2 \ -/* Class = "UILabel"; text = "Manticore"; ObjectID = "0il-tf-sNa"; */\ -"0il-tf-sNa.text" = "Manticore";\ -\ -/* Class = "UILabel"; text = "Set APNonce"; ObjectID = "0yi-4F-L8u"; */\ -"0yi-4F-L8u.text" = "APNonce -\f1 \'82\'cc\'83\'5a\'83\'62\'83\'67 -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */\ -"2Nf-dY-FJy.text" = "Tweaks -\f1 \'82\'cc\'97\'4c\'8c\'f8\'89\'bb -\f0 \'94;\ -\ -/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */\ -"6hM-Fc-FDp.normalTitle" = \'93 -\f1 \'92\'45\'8d\'96 -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */\ -"AVZ-qX-0ms.text" = "RootFS -\f1 \'82\'f0\'95\'9c\'8c\'b3 -\f0 \'94;\ -\ -/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */\ -"B09-wX-UeI.normalTitle" = "Jailbreak";\ -\ -/* Class = "UITextField"; placeholder = "0x1111111111111111"; ObjectID = "JaD-0s-nbo"; */\ -"JaD-0s-nbo.placeholder" = "0x1111111111111111";\ -\ -/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "Kda-OK-gFg"; */\ -"Kda-OK-gFg.text" = "iOS 14.0 - 14.3";\ -\ -/* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */\ -"WEh-zy-xS5.normalTitle" = "APNonce -\f1 \'82\'cc\'95\'db\'91\'b6\'81\'40\'81\'95\'81\'40\'83\'5a\'83\'62\'83\'67 -\f0 \'94;\ -\ -/* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */\ -"czz-vo-cHF.normalTitle" = \'93 -\f1 \'90\'dd\'92\'e8 -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */\ -"efL-nQ-xsh.text" = \'93OTA -\f1 \'83\'41\'83\'62\'83\'76\'83\'66\'81\'5b\'83\'67\'82\'cc\'96\'b3\'8c\'f8\'89\'bb -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */\ -"i1H-yX-3n8.text" = \'93 -\f1 \'8c\'dd\'8a\'b7\'90\'ab -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */\ -"kyq-MK-M3C.text" = \'93 -\f1 \'83\'58\'83\'4e\'83\'8a\'81\'5b\'83\'93\'83\'5e\'83\'43\'83\'80\'82\'f0\'96\'b3\'8c\'f8\'89\'bb -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */\ -"mUJ-nK-XHv.text" = "Manticore";\ -\ -/* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */\ -"o5h-H3-igh.text" = \'93iOS 14.3 -\f1 \'82\'cc -\f0 iPhone 11 -\f1 \'82\'cd\'8c\'dd\'8a\'b7\'90\'ab\'82\'aa\'82\'a0\'82\'e8\'82\'dc\'82\'b7\'81\'49 -\f0 \'94;\ -\ -/* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */\ -"oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.";\ -\ -/* Class = "UILabel"; text = "Log ECID"; ObjectID = "voS-Ev-D3K"; */\ -"voS-Ev-D3K.text" = \'93ECID -\f1 \'82\'f0\'83\'8d\'83\'4f\'82\'c9\'8f\'6f\'97\'cd\'82\'b7\'82\'e9 -\f0 \'94;\ -\ -/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "xtR-ck-MtY"; */\ -"xtR-ck-MtY.text" = "iOS 14.0 - 14.3";\ -\ -/* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */\ -"yiE-wg-tPU.text" = \'93 -\f1 \'83\'8d\'83\'4f\'89\'e6\'96\'ca\'82\'cc\'97\'4c\'8c\'f8\'89\'bb -\f0 \'94;\ -} \ No newline at end of file From bebf8ffbd34bf411b81337a90570ac747a37adde Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:26:02 +0900 Subject: [PATCH 08/15] Add files via upload --- manticore/Main.strings | 57 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 manticore/Main.strings diff --git a/manticore/Main.strings b/manticore/Main.strings new file mode 100644 index 0000000..05e666c --- /dev/null +++ b/manticore/Main.strings @@ -0,0 +1,57 @@ + +/* Class = "UILabel"; text = "Manticore"; ObjectID = "0il-tf-sNa"; */ +"0il-tf-sNa.text" = "Manticore"; + +/* Class = "UILabel"; text = "Set APNonce"; ObjectID = "0yi-4F-L8u"; */ +"0yi-4F-L8u.text" = "APNonceをセット"; + +/* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */ +"2Nf-dY-FJy.text" = "Tweaksの有効化"; + +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */ +"6hM-Fc-FDp.normalTitle" = "脱獄"; + +/* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */ +"AVZ-qX-0ms.text" = "RootFSの復元"; + +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */ +"B09-wX-UeI.normalTitle" = "脱獄"; + +/* Class = "UITextField"; placeholder = "0x1111111111111111"; ObjectID = "JaD-0s-nbo"; */ +"JaD-0s-nbo.placeholder" = "0x1111111111111111"; + +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "Kda-OK-gFg"; */ +"Kda-OK-gFg.text" = "iOS 14.0 - 14.3"; + +/* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */ +"WEh-zy-xS5.normalTitle" = "APNonceの保存 & セット"; + +/* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */ +"czz-vo-cHF.normalTitle" = "設定"; + +/* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */ +"efL-nQ-xsh.text" = "OTAアップデートの無効化"; + +/* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */ +"i1H-yX-3n8.text" = "互換性"; + +/* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */ +"kyq-MK-M3C.text" = "スクリーンタイムの無効化"; + +/* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */ +"mUJ-nK-XHv.text" = "Manticore"; + +/* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */ +"o5h-H3-igh.text" = "iOS 14.3のiPhone11は互換性があります!"; + +/* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */ +"oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; + +/* Class = "UILabel"; text = "Log ECID"; ObjectID = "voS-Ev-D3K"; */ +"voS-Ev-D3K.text" = "ECIDを記録する"; + +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "xtR-ck-MtY"; */ +"xtR-ck-MtY.text" = "iOS 14.0 - 14.3"; + +/* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */ +"yiE-wg-tPU.text" = "ログ画面の切り替え"; \ No newline at end of file From caf737ef1ecd842b498623c4a7ceea12c5404034 Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:26:24 +0900 Subject: [PATCH 09/15] Delete Main.strings --- manticore/Main.strings | 57 ------------------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 manticore/Main.strings diff --git a/manticore/Main.strings b/manticore/Main.strings deleted file mode 100644 index 05e666c..0000000 --- a/manticore/Main.strings +++ /dev/null @@ -1,57 +0,0 @@ - -/* Class = "UILabel"; text = "Manticore"; ObjectID = "0il-tf-sNa"; */ -"0il-tf-sNa.text" = "Manticore"; - -/* Class = "UILabel"; text = "Set APNonce"; ObjectID = "0yi-4F-L8u"; */ -"0yi-4F-L8u.text" = "APNonceをセット"; - -/* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */ -"2Nf-dY-FJy.text" = "Tweaksの有効化"; - -/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */ -"6hM-Fc-FDp.normalTitle" = "脱獄"; - -/* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */ -"AVZ-qX-0ms.text" = "RootFSの復元"; - -/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */ -"B09-wX-UeI.normalTitle" = "脱獄"; - -/* Class = "UITextField"; placeholder = "0x1111111111111111"; ObjectID = "JaD-0s-nbo"; */ -"JaD-0s-nbo.placeholder" = "0x1111111111111111"; - -/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "Kda-OK-gFg"; */ -"Kda-OK-gFg.text" = "iOS 14.0 - 14.3"; - -/* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */ -"WEh-zy-xS5.normalTitle" = "APNonceの保存 & セット"; - -/* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */ -"czz-vo-cHF.normalTitle" = "設定"; - -/* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */ -"efL-nQ-xsh.text" = "OTAアップデートの無効化"; - -/* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */ -"i1H-yX-3n8.text" = "互換性"; - -/* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */ -"kyq-MK-M3C.text" = "スクリーンタイムの無効化"; - -/* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */ -"mUJ-nK-XHv.text" = "Manticore"; - -/* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */ -"o5h-H3-igh.text" = "iOS 14.3のiPhone11は互換性があります!"; - -/* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */ -"oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; - -/* Class = "UILabel"; text = "Log ECID"; ObjectID = "voS-Ev-D3K"; */ -"voS-Ev-D3K.text" = "ECIDを記録する"; - -/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "xtR-ck-MtY"; */ -"xtR-ck-MtY.text" = "iOS 14.0 - 14.3"; - -/* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */ -"yiE-wg-tPU.text" = "ログ画面の切り替え"; \ No newline at end of file From f5beb108417f97792d8a7a8dbec2af12071b1ada Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:27:09 +0900 Subject: [PATCH 10/15] Add files via upload --- manticore/ja.lproj/Main.strings | 57 +++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 manticore/ja.lproj/Main.strings diff --git a/manticore/ja.lproj/Main.strings b/manticore/ja.lproj/Main.strings new file mode 100644 index 0000000..05e666c --- /dev/null +++ b/manticore/ja.lproj/Main.strings @@ -0,0 +1,57 @@ + +/* Class = "UILabel"; text = "Manticore"; ObjectID = "0il-tf-sNa"; */ +"0il-tf-sNa.text" = "Manticore"; + +/* Class = "UILabel"; text = "Set APNonce"; ObjectID = "0yi-4F-L8u"; */ +"0yi-4F-L8u.text" = "APNonceをセット"; + +/* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */ +"2Nf-dY-FJy.text" = "Tweaksの有効化"; + +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */ +"6hM-Fc-FDp.normalTitle" = "脱獄"; + +/* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */ +"AVZ-qX-0ms.text" = "RootFSの復元"; + +/* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */ +"B09-wX-UeI.normalTitle" = "脱獄"; + +/* Class = "UITextField"; placeholder = "0x1111111111111111"; ObjectID = "JaD-0s-nbo"; */ +"JaD-0s-nbo.placeholder" = "0x1111111111111111"; + +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "Kda-OK-gFg"; */ +"Kda-OK-gFg.text" = "iOS 14.0 - 14.3"; + +/* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */ +"WEh-zy-xS5.normalTitle" = "APNonceの保存 & セット"; + +/* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */ +"czz-vo-cHF.normalTitle" = "設定"; + +/* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */ +"efL-nQ-xsh.text" = "OTAアップデートの無効化"; + +/* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */ +"i1H-yX-3n8.text" = "互換性"; + +/* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */ +"kyq-MK-M3C.text" = "スクリーンタイムの無効化"; + +/* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */ +"mUJ-nK-XHv.text" = "Manticore"; + +/* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */ +"o5h-H3-igh.text" = "iOS 14.3のiPhone11は互換性があります!"; + +/* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */ +"oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; + +/* Class = "UILabel"; text = "Log ECID"; ObjectID = "voS-Ev-D3K"; */ +"voS-Ev-D3K.text" = "ECIDを記録する"; + +/* Class = "UILabel"; text = "iOS 14.0 - 14.3"; ObjectID = "xtR-ck-MtY"; */ +"xtR-ck-MtY.text" = "iOS 14.0 - 14.3"; + +/* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */ +"yiE-wg-tPU.text" = "ログ画面の切り替え"; \ No newline at end of file From 26448c18785d404a5a0017d1cf9d09daa19080f8 Mon Sep 17 00:00:00 2001 From: iMasterPhone <39427231+Tqeguw@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:27:26 +0900 Subject: [PATCH 11/15] Create LaunchScreen.strings --- manticore/ja.lproj/LaunchScreen.strings | 1 + 1 file changed, 1 insertion(+) create mode 100644 manticore/ja.lproj/LaunchScreen.strings diff --git a/manticore/ja.lproj/LaunchScreen.strings b/manticore/ja.lproj/LaunchScreen.strings new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/manticore/ja.lproj/LaunchScreen.strings @@ -0,0 +1 @@ + From e80cc7e074e6dcbbd6378b3e95c45e9bf2244554 Mon Sep 17 00:00:00 2001 From: t0mi292 <51470532+pimpmyidevice@users.noreply.github.com> Date: Thu, 26 Aug 2021 20:42:44 +0200 Subject: [PATCH 12/15] Fix german localization --- manticore/de.lproj/Main.strings | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/manticore/de.lproj/Main.strings b/manticore/de.lproj/Main.strings index edddf29..492f119 100644 --- a/manticore/de.lproj/Main.strings +++ b/manticore/de.lproj/Main.strings @@ -6,13 +6,13 @@ "0yi-4F-L8u.text" = "APNonce setzen"; /* Class = "UILabel"; text = "Enable Tweaks"; ObjectID = "2Nf-dY-FJy"; */ -"2Nf-dY-FJy.text" = "Tweaks Erlauben"; +"2Nf-dY-FJy.text" = "Tweaks erlauben"; /* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "6hM-Fc-FDp"; */ "6hM-Fc-FDp.normalTitle" = "Jailbreak"; /* Class = "UILabel"; text = "Restore RootFS"; ObjectID = "AVZ-qX-0ms"; */ -"AVZ-qX-0ms.text" = "RootFS Wiederherstellen"; +"AVZ-qX-0ms.text" = "RootFS wiederherstellen"; /* Class = "UIButton"; normalTitle = "Jailbreak"; ObjectID = "B09-wX-UeI"; */ "B09-wX-UeI.normalTitle" = "Jailbreak"; @@ -24,25 +24,25 @@ "Kda-OK-gFg.text" = "iOS 14.0 - 14.3"; /* Class = "UIButton"; normalTitle = "Save & Set APNonce"; ObjectID = "WEh-zy-xS5"; */ -"WEh-zy-xS5.normalTitle" = "APNonce Speichern & Setzen"; +"WEh-zy-xS5.normalTitle" = "APNonce speichern & setzen"; /* Class = "UIButton"; normalTitle = "Options"; ObjectID = "czz-vo-cHF"; */ "czz-vo-cHF.normalTitle" = "Einstellungen"; /* Class = "UILabel"; text = "Block OTA Updates"; ObjectID = "efL-nQ-xsh"; */ -"efL-nQ-xsh.text" = "OTA Updates Blockieren"; +"efL-nQ-xsh.text" = "OTA Updates blockieren"; /* Class = "UILabel"; text = "Compatibility"; ObjectID = "i1H-yX-3n8"; */ "i1H-yX-3n8.text" = "Kompatibilität"; /* Class = "UILabel"; text = "Remove ScreenTime"; ObjectID = "kyq-MK-M3C"; */ -"kyq-MK-M3C.text" = "Bildschirmzeit Entfernen"; +"kyq-MK-M3C.text" = "Bildschirmzeit entfernen"; /* Class = "UILabel"; text = "Manticore"; ObjectID = "mUJ-nK-XHv"; */ "mUJ-nK-XHv.text" = "Manticore"; /* Class = "UILabel"; text = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; ObjectID = "o5h-H3-igh"; */ -"o5h-H3-igh.text" = "Your iPhone 11 Pro on iOS 14.3 is compatible with Manticore!"; +"o5h-H3-igh.text" = "Dein iPhone 11 Pro mit iOS 14.3 ist kompatibel mit Manticore!"; /* Class = "UITextView"; text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; ObjectID = "oZg-Pf-ew7"; */ "oZg-Pf-ew7.text" = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."; @@ -54,4 +54,4 @@ "xtR-ck-MtY.text" = "iOS 14.0 - 14.3"; /* Class = "UILabel"; text = "Toggle Log Window"; ObjectID = "yiE-wg-tPU"; */ -"yiE-wg-tPU.text" = "Log Window Einblenden"; +"yiE-wg-tPU.text" = "Log-Fenster einblenden"; From 3c65fbf9ae4701112c2a9583f4353a18e32b6d0e Mon Sep 17 00:00:00 2001 From: Silly Sock Date: Fri, 27 Aug 2021 06:18:19 +0930 Subject: [PATCH 13/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d6fcb7..c00b613 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Manticore Jailbreak Manticore Jailbreak is an Free and Open-Source Jailbreak utility developed by the Manticore Team. -Current compatibility: iOS 14.0 -> iOS 14.3 using cicuta_virosa exploit. The tool is a work-in-progress. Expect changes and exxpansions in the future. +Current compatibility: iOS 14.0 -> iOS 14.3 using cicuta_virosa exploit. The tool is a work-in-progress. Expect changes and expansions in the future. ## About us The Manticore Jailbreak is an independent jailbreaking tool for all devices, including A14 and below, running iOS 14.3 down to iOS 14.0. From 75cb341aa04049fba7d3a7fcafffb4f8526d2fff Mon Sep 17 00:00:00 2001 From: Luca <33968601+RPwnage@users.noreply.github.com> Date: Fri, 27 Aug 2021 19:59:16 +0200 Subject: [PATCH 14/15] Create CONTRIBUTING --- CONTRIBUTING | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 CONTRIBUTING diff --git a/CONTRIBUTING b/CONTRIBUTING new file mode 100644 index 0000000..474e9b1 --- /dev/null +++ b/CONTRIBUTING @@ -0,0 +1,84 @@ +# Contributing + +When contributing to this repository, please first discuss the change you wish to make via issue, +email, or any other method with the owners of this repository before making a change. + +Please note we have a code of conduct, please follow it in all your interactions with the project. + +## Pull Request Process + +1. Ensure any install or build dependencies are removed before the end of the layer when doing a + build. +2. Update the README.md with details of changes to the interface, this includes new environment + variables, exposed ports, useful file locations and container parameters. +3. Increase the version numbers in any examples files and the README.md to the new version that this + Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). +4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you + do not have permission to do that, you may request the second reviewer to merge it for you. + +## Code of Conduct + +### Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +### Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +### Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +### Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +### Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [INSERT EMAIL ADDRESS]. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. From c23fdc837d978992caa52fc3c07e67736d1b2256 Mon Sep 17 00:00:00 2001 From: Luca <33968601+RPwnage@users.noreply.github.com> Date: Fri, 27 Aug 2021 19:59:43 +0200 Subject: [PATCH 15/15] Rename CONTRIBUTING to CONTRIBUTING.md --- CONTRIBUTING => CONTRIBUTING.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CONTRIBUTING => CONTRIBUTING.md (100%) diff --git a/CONTRIBUTING b/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING rename to CONTRIBUTING.md