From 433f20e294dae90e7f5758de63fe3f41a3f78e7d Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 11 Mar 2023 17:06:07 +0100 Subject: [PATCH] ios_exploit: Fix address for DCStoreRange --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index f7c9ff6..35e6b7c 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -17,7 +17,7 @@ int main(int argc, char **argv) { if (argc >= 1) { if (strncmp(argv[0], "fs:/", 4) == 0) { strncpy((char *) 0xF417FEF0, argv[0], 0xFF); - DCStoreRange((void *) 0xF417EFF0, 0x100); + DCStoreRange((void *) 0xF417FEF0, 0x100); } }