From f790505ad4e57f6aa1863730eda90371f27b664e Mon Sep 17 00:00:00 2001 From: 0x8ff <74850058+0x8ff@users.noreply.github.com> Date: Sun, 4 Sep 2022 13:03:45 -0700 Subject: [PATCH 1/2] Update IOGPU.c --- Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c b/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c index 26f39e9..3f81b8f 100644 --- a/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c +++ b/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c @@ -53,7 +53,7 @@ int IOGPU_get_command_queue_extra_refills_needed(void) uname(&u); // iPhone 7 - // iPod 7 + // iPod Touch 7 // iPhone 11 // iPhone 12 // iPhone 13 From a4512339ae3dd7f77197b7934f3b093bf96b5556 Mon Sep 17 00:00:00 2001 From: 0x8ff <74850058+0x8ff@users.noreply.github.com> Date: Sun, 4 Sep 2022 14:00:04 -0700 Subject: [PATCH 2/2] Update IOGPU.c (again) --- .../TrollInstaller/TrollInstaller/exploit/IOGPU.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c b/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c index 3f81b8f..5214a79 100644 --- a/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c +++ b/Installer/TrollInstaller/TrollInstaller/exploit/IOGPU.c @@ -52,16 +52,17 @@ int IOGPU_get_command_queue_extra_refills_needed(void) struct utsname u; uname(&u); - // iPhone 7 // iPod Touch 7 - // iPhone 11 + // iPhone 7 + // iPhone 11 & SE 2 // iPhone 12 - // iPhone 13 - // iPad Pro M1(?) - // iPad Pro (10.5-inch, WiFi) + // iPhone 13 & SE 3 + // iPad7,* has too many different models to list here, see theiphonewiki's "Models" page for info + // iPad 9 + // iPad13,1-13,2 is the iPad Air 4 and 13,4-13,11 is the iPad Pro M1. if ( - strstr(u.machine, "iPhone9,") - || strstr(u.machine, "iPod9,") + strstr(u.machine, "iPod9,") + || strstr(u.machine, "iPhone9,") || strstr(u.machine, "iPhone12,") || strstr(u.machine, "iPhone13,") || strstr(u.machine, "iPhone14,")