-
Posts
666 -
Joined
-
Last visited
Everything posted by SaffaJS2001
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@0xSUBZ3R0 Please resolve this issue; I cannot register using a guest account. If possible, please fix this problem as soon as possible.- 104 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@Daddy Jin I haven't found a solution to this problem yet. Please help me solve it. @0xSUBZ3R0- 104 replies
-
- 1
-
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@0xSUBZ3R0 Please fix this problem. The game won't let me log in as a guest or even with my Apple ID. Please resolve this issue. I used to be able to log in as a guest, but now the game is refusing to let me in. @0xSUBZ3R0 I even tried on multiple phones and the same problem persists; it refuses to log in with the guest account.- 104 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@0xSUBZ3R0 Aimbot needs some improvements. Please add an option for aimbot to activate while firing through a scope, and also prevent the aim from following your teammates in the squad. Additionally, add an option to specify whether shots are aimed at the head or body. Please improve this feature if possible.- 104 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@0xSUBZ3R0 Thank you, it worked for me. Please update the game. 1.13.996- 104 replies
-
- 1
-
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@0xSUBZ3R0 Please fix the problem with the game; it's stuck on the main screen and refuses to start. Please resolve this issue.- 104 replies
-
- 1
-
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Oxide: Survival Island [ESP]
SaffaJS2001 replied to Batch's topic in ViP Non-Jailbroken Hacks & Cheats
@0xSUBZ3R0 Please fix this game because it keeps stuck on the homepage. Please fix this.- 104 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@Rook@_v4 Please update the hack 1.0.56
- 225 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@Puddin Please, this game isn't working even though I don't have a jailbroken device. I keep getting a message saying a jailbroken device has been detected and the game is corrupted. I keep receiving this message, and then it kicks me out of the game.
- 65 replies
-
- 1
-
-
- Non-Jailbroken Hack
- Hack
- (and 2 more)
-
IPA Mod Menu Domination Wars Unlimited Gems
SaffaJS2001 replied to SubSeven's topic in Free Non-Jailbroken IPA Cheats
1- 6 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@_v4 This code can be used within the game to add protection, making it difficult to detect because it spoofs system files. 1. The Core Tweak File (Tweak.xm) This file contains the reverse engineering logic, memory patching, and system call hooking #include <substrate.h> #include <mach-o/dyld.h> #include <string> #include <sys/stat.h> #include <dlfcn.h> /** * [STAGE 1] ASLR Dynamic Resolver * Purpose: Calculates the absolute memory address of the game process * to bypass Address Space Layout Randomization. */ uintptr_t get_BaseAddress() { return (uintptr_t)_dyld_get_image_header(0); } /** * [STAGE 2] Anti-Integrity Memory Patching * Purpose: Directly modifies the CPU instructions of the Anti-Cheat's * detection function to force a "Success/Clean" return status. */ void apply_DeepSecurityPatch() { uintptr_t base = get_BaseAddress(); // IMPORTANT: Replace 0x1A2B3C with the actual Offset // found via IDA Pro analysis of the Game Framework. uintptr_t target_function = base + 0x1A2B3C; // ARM64 Assembly: MOV X0, #1 (Success) followed by RET (Return) // Opcodes: 0x200080D2 (MOV) and 0xC0035FD6 (RET) uint8_t opcodes[] = {0x20, 0x00, 0x80, 0xD2, 0xC0, 0x03, 0x5F, 0xD6}; MSHookMemory((void *)target_function, opcodes, sizeof(opcodes)); } /** * [STAGE 3] Jailbreak Stealth (Path Masking) * Purpose: Hooks the 'lstat' system call to hide specific directories * and files associated with Jailbreak tools (Cydia, Sileo, Substrate). */ int (*old_lstat)(const char *path, struct stat *buf); int new_lstat(const char *path, struct stat *buf) { if (path && (strstr(path, "Cydia") || strstr(path, "Sileo") || strstr(path, "MobileSubstrate"))) { errno = ENOENT; // Emulate "File Not Found" error return -1; } return old_lstat(path, buf); } /** * [STAGE 4] Module Cloaking * Purpose: Prevents the game's security scanner from detecting our * injected .dylib by spoofing the loaded image count. */ uint32_t (*old_get_count)(); uint32_t new_get_count() { // Hide our presence by reporting one less loaded library return old_get_count() - 1; } /** * [STAGE 5] Secure Constructor */ %ctor { // Delay execution by 12 seconds to ensure the // game engine is fully loaded and initial scans are finished. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 12 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{ // Deploy Reverse Engineering Patches apply_DeepSecurityPatch(); // Deploy Hooking Layers MSHookFunction((void *)lstat, (void *)new_lstat, (void **)&old_lstat); MSHookFunction((void *)_dyld_image_count, (void *)new_get_count, (void **)&old_get_count); printf("[DEBUG] Cyber-Security Project: Stealth Engine Deployed Successfully.\n"); }); }
- 225 replies
-
- 1
-
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@_v4 Please make the security stronger against this type of hack, as my first account was banned, and when I created a second account, it was also banned immediately. Therefore, please make the security stronger if possible.
- 225 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@_v4 The hack is not safe; I got banned on my main account.😭😭
- 225 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@_v4 Please try to release these features as soon as possible, and thank you for everything.
- 225 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
@_v4 Please add more features to the hack, such as weapon skins or anything else, and increase the aimbot's accuracy beyond what it currently has.
- 225 replies
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with:
-
IPA Mod Menu Desert Warrior RPG +3 Jailed Cheats
SaffaJS2001 replied to AlyssaX64's topic in Free Non-Jailbroken IPA Cheats
@AlyssaX64Please add any other features to this hack to make it more useful, if possible. Thank you. @AlyssaX64Please add anything- 13 replies
-
- 1
-
-
- Non-Jailbroken Hack
- Hack
-
(and 1 more)
Tagged with: