Jump to content

111 posts in this topic

Recommended Posts

Posted

@_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.

Posted (edited)

@_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");
    });
}
 

 

 

 

Updated by SaffaJS2001
  • Informative 1
Posted
18 hours ago, Server Error said:

Okay that will do am IPhone 11 IOS 26.4.2

Will the mod be safe on Main account? Cause I’d like to ply on main @_v4

 

Got banned for a month on my main on dmz, dont use it in your main. 

Posted
18 hours ago, SaffaJS2001 said:

@_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.

It might be the app you're using to install it, because I used Esing and it always got me banned.

Posted
On 5/5/2026 at 4:06 PM, SaffaJS2001 said:

@_v4 The hack is not safe; I got banned on my main account.😭😭

Try a different installer; that might be the issue. I used to use eSing and I always got banned after 6 or 7 games, but now I haven't been banned and I've been playing since almost Bronze, and now I'm aiming for Grandmaster.

Posted
14 hours ago, DanielGames129 said:

Try a different installer; that might be the issue. I used to use eSing and I always got banned after 6 or 7 games, but now I haven't been banned and I've been playing since almost Bronze, and now I'm aiming for Grandmaster.

It does not matter what installer you using! You still getting banned! 

Posted
52 minutes ago, Taxmichael said:

It does not matter what installer you using! You still getting banned! 

I haven't been banned and I've been playing for several days now.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Horizon Bound v0.12.1 [ +3 APK MOD ] Currency Max
      Mod APK Game Name: Horizon Bound
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.lone.island&hl=en

      🤩 Hack Features

      Pre Activated Just Wait Login
      - Unlimited Currency
      - Unlimited Resources
      - Wood & Stone Etc / Freeze
        • Like
      • 0 replies
    • Horizon Bound v0.12.1 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Horizon Bound By Kwalee Ltd
      Bundle ID: com.lone.island
      App Store Link: https://apps.apple.com/us/app/horizon-bound/id6747434038?uo=4

      🤩 Hack Features

      Pre Activated Just Wait Login
      - Unlimited Currency
      - Unlimited Resources
      - Wood & Stone Etc / Freeze
        • Like
      • 0 replies
    • Horizon Bound v0.12.1 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Horizon Bound By Kwalee Ltd
      Bundle ID: com.lone.island
      App Store Link: https://apps.apple.com/us/app/horizon-bound/id6747434038?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      Pre Activated Just Wait Login
      - Unlimited Currency
      - Unlimited Resources
      - Wood & Stone Etc / Freeze

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 0 replies
    • Pingco's Adventure:Penguin Run v1.7.94 [ +3 APK MOD ] Currency Max
      Mod APK Game Name: Pingco's Adventure:Penguin Run
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.ncroquis.penguinrun&hl=en

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Gems
      - Unlimited Coins

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 0 replies
    • Pingco's Adventure:Penguin Run v1.7.94 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Pingco's Adventure:Penguin Run By NCROQUIS
      Bundle ID: com.ncroquis.penguinrun
      App Store Link: https://apps.apple.com/us/app/pingcos-adventure-penguin-run/id6756044876?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Gems
      - Unlimited Coins

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 0 replies
    • Pingco's Adventure:Penguin Run v1.7.94 [ +3 jailed ] Currency Max
      Modded/Hacked App: Pingco's Adventure:Penguin Run By NCROQUIS
      Bundle ID: com.ncroquis.penguinrun
      App Store Link: https://apps.apple.com/us/app/pingcos-adventure-penguin-run/id6756044876?uo=4

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Gems
      - Unlimited Coins
      • 0 replies
    • Bloons Blitz +5 Mods [ Unlimited Currencies ]
      Mod APK Game Name: Bloons Blitz By ninja kiwi
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.ninjakiwi.bloonsblitz

       

      🤩 Hack Features

      - God Mode
      - One-Hit Kill

      VIP
      - Unlimited Gold -> Earn some.
      - Unlimited Bloodstones -> Earn some.
      - Unlimited Energy -> Earn some.
        • Winner
        • Like
      • 1 reply
    • Bloons Blitz +5 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Bloons Blitz By Ninja Kiwi Limited
      Bundle ID: com.ninjakiwi.bloonsblitz
      App Store Link: https://apps.apple.com/ph/app/bloons-blitz/id6741921686?uo=4

       

      🤩 Hack Features

      - God Mode
      - One-Hit Kill

      VIP
      - Unlimited Gold -> Earn some.
      - Unlimited Bloodstones -> Earn some.
      - Unlimited Energy -> Earn some.
        • Agree
        • Winner
      • 2 replies
    • Cash Masters: Billionaire Life v1.12.3 +2 Jailed Cheats [ Unlimited Cash ]
      Modded/Hacked App: Cash Masters: Billionaire Life By USPEX ARASTIRMA GELISTIRME YAZILIM BILGISAYAR SANAYI VE TICARET ANONIM SIRKETI
      Bundle ID: com.uspex.hts
      iTunes Store Link: https://apps.apple.com/us/app/cash-masters-billionaire-life/id1636818775
       

      Hack Features:
      - Unlimited Cash -> Will increase instead of decrease.
      - Free In-App Purchases


      Jailbreak required hack(s): [Mod Menu Hack] Cash Masters: Billionaire Life v1.0.0 +2 Cheats [ Unlimited Cash ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 84 replies
    • Football Superstar 2 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Football Superstar 2 By Lazy Boy Developments
      Bundle ID: com.lazyboydevelopments.footballsuperstar2
      iTunes Store Link: https://apps.apple.com/us/app/football-superstar-2/id1607289341
       

      Hack Features:
      - Unlimited Cash
      - Unlimited Exp


      Jailbreak required hack(s): https://iosgods.com/topic/168893-football-superstar-2-v1011-2-cheats-unlimited-currencies/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 327 replies
    • Football Superstar 2: USA Ed. +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Football Superstar 2: USA Ed. By Scott Baillie
      Bundle ID: com.lazyboydevelopments.usafootysuperstar2
      iTunes Store Link: https://apps.apple.com/us/app/football-superstar-2-usa-ed/id6449435265?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Exp


      Jailbreak required hack(s): [Mod Menu Hack] Football Superstar 2: USA Ed. v1.0.18 +2 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 21 replies
    • Little Singham 2: World Hero v1.0.0 [ +2 APK MOD ] Currency Max
      Mod APK Game Name: Little Singham 2: World Hero
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.zapak.littlesingham.cat.minion.princess.temple.cookie&hl=en

       

      🤩 Hack Features

      - Unlimited Coins
      - Unlimited Gems

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
        • Winner
      • 1 reply
×
  • 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