Jump to content

SaffaJS2001

ViP Pro
  • Posts

    637
  • Joined

  • Last visited

Everything posted by SaffaJS2001

  1. @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.
  2. @0xSUBZ3R0 Thank you, it worked for me. Please update the game. 1.13.996
  3. @0xSUBZ3R0 Please fix the problem with the game; it's stuck on the main screen and refuses to start. Please resolve this issue.
  4. @0xSUBZ3R0 Please fix this game because it keeps stuck on the homepage. Please fix this.
  5. @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.
  6. @_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"); }); }
  7. @_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.
  8. @_v4 Please try to release these features as soon as possible, and thank you for everything.
  9. @_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.
  10. @AlyssaX64Please add any other features to this hack to make it more useful, if possible. Thank you. @AlyssaX64Please add anything
  11. 📌 Game Hack Request Details: Game Name: Captain Baly Game Version: 3.2.0 App Store Link: https://apps.apple.com/us/app/تطبيق-النقل-بلي-كابتن/id1605807171?l=ar Device Type: Jailbroken / Non-Jailbroken 🎮 Hack Features You Want: Please increase the app's rating within the app, as my work depends on it. This will allow me to receive more orders and add features like accepting more orders or expanding the order reception area. I would be very grateful for any additional features you add, as they will greatly help me in my work as a taxi driver. Please do this without risking a ban.
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines