Jump to content

5 posts in this topic

Recommended Posts

Updated (edited)

Beginner’s Guide: iOS IPA Modding Using Windows

( No Jailbreak – No Frida – Static Modding ) 
 

Personal Note:

I don’t know everything, and it took me quite some time to figure this out. But I’ll still explain everything in as much detail as I can, using simple and easy language to help beginners like me.

Important Note: This method is only for those who want to try modding on Windows. It’s not as powerful as some of the advanced tools you can use with a jailbroken iPhone. Also, it can be time-consuming if you don’t know what you’re doing at first—so keep that in mind before you start.

I don’t know how to attach pictures here, so sorry about that—lol.🤣🤣
 

 Tools and Files You Will Need:

Spoiler

  1:  Windows PC
    2:   IPA File of the Game
    3:   HxD (Hex Editor) – Free, Download Here: https://mh-nexus.de/en/hxd/

    4:   Il2CppDumper – Free, Download here:  https://github.com/Perfare/Il2CppDumper

    5:   Notepad++ – Free, Download here: https://notepad-plus-plus.org/downloads/

    6:   Sideloadly – Free, Download here: https://sideloadly.io/

    7:  Apple ID – Needed for signing apps with Sideloadly.
    8:   7-Zip – Free, 
    •    OR WinRAR –

 


 

Read These Things First :

What You Can Do with This Method:

Spoiler

    •    Modify offline iOS games that use Il2Cpp structure.
    •    Change game values like coins, health, damage.
    •    Disable unwanted features by changing hex codes.
    •    Perform Static Modding (editing the game’s static code).


What You Cannot Do with This Method:

Spoiler

   •    You cannot bypass server-sided checks.
    •    You cannot live test changes without reinstalling the app.
    •    You cannot bypass advanced anti-cheats with just this method.
    •    You cannot modify Swift-based or encrypted games easily.



Limitations of Windows-Only iOS Modding:

Spoiler

    •    No live testing: You must install the IPA every time you make changes to see if it works.
    •    No dynamic hooking: You cannot use tools like Frida without jailbreak or macOS.
    •    Trial and error required: You need to test several RVA addresses and hex edits repeatedly.
    •    More time-consuming: No instant result like Android modding with Frida.


What is Static Modding?

Spoiler

    •    This method is called Static Modding because:
    •    You are editing the compiled game files directly (libil2cpp.dylib) using a hex editor.
    •    The changes become part of the IPA permanently.
    •    You cannot dynamically change anything while the game is running.


Full Step-by-Step iOS IPA Modding Process Here We Goooooooooooooooooo

 

How to Download Decrypted IPA (Required for Modding:

Spoiler

When modding iOS games, you must have a decrypted IPA. Normal IPAs from the App Store are encrypted and cannot be modified.

 Method 1: Download from iOSGods (Decrypt Store)
    1.    Open your browser and go to:
👉 https://armconverter.com/decryptedappstore/us

    2.    This is the Decrypt Store by iOSGods.
    3.    You can search for the game you want. Example: “Subway Surfers” or any offline game.
    4.    Look for a decrypted version compatible with your iOS version. Download the IPA file directly to your PC.

 Notes About Decrypted IPAs:
    •    The decrypted IPA is already ready for modding.
    •    The encryption is removed, so you can extract it, edit, and resign it.
    •    If the game you want is not available, you may need to dump the IPA yourself from a jailbroken device.

 Why Decrypted IPAs Are Important:
    •    App Store IPAs are encrypted for security.
    •    Encrypted IPAs cannot be opened, dumped, or edited.
    •    Decrypted IPAs allow us to extract libil2cpp.dylib and global-metadata.dat for Il2CppDumper


Step 1: Prepare the IPA File

Spoiler

    •    Change .ipa to .zip.
    •    Extract it using 7-Zip or WinRAR.
    •    Go to: Payload → GameName.app
    •    Find these files:
    •    libil2cpp.dylib
    •    Data/global-metadata.dat


Step 2: Dump the Game

Spoiler

    •    Open Il2CppDumper.
    •    Load libil2cpp.dylib and global-metadata.dat.
    •    Wait for dump.cs file to generate.
    •    Save dump.cs safely. 

 
Step 3: Analyze dump.cs

Spoiler

    •    Open dump.cs in Notepad++.
    •    Search for keywords:
    •    coins, currency, gems, gold, health, damage, setHealth, addCoins, getCoins, etc.
    •    Write down the RVA (Example: 0x1D7280C) of suspected functions.


Step 4: Open Hex Editor

Spoiler

    •    Open libil2cpp.dylib in HxD.
    •    Go to: Search → Goto → Enter RVA address directly (remove the ‘0x’ part).
    •    This will bring you to the instruction in the hex.




Important****  

Spoiler

Step 5: Known iOS Hex Codes for Common Functions
    •    NOP (No Operation) → 00 00 → Used to skip instructions.
    •    True (MOV R0, #1) → 01 00 A0 E3 → Makes a condition always true.
    •    False (MOV R0, #0) → 00 00 A0 E3 → Makes a condition always false.
    •    BNE (Branch if Not Equal) → Change to BEQ (Branch if Equal) to reverse condition.
    •    Compare Instruction (CMP) → Sometimes you can remove this to disable checks.
    •    Add Value Example (ADD R0, R0, #1) → Change to higher numbers to increase gains.
    •    Subtract Instruction (SUB) → Try to NOP it to stop decreasing values.
    •    Jump (B instruction) → NOP a conditional jump to always pass.

👉 You need to understand patterns and compare similar functions to guess what to change. Justg Do alittle Research How it works ,


Step 6: Save Your Edits
    •    After editing in HxD, click Save.
    •    Do not corrupt the file size or structure.

Step 7: Repack the IPA

Spoiler

    •    Make sure the folder structure is correct:
    •    IPA → Payload → GameName.app → (all files here)
    •    Select the Payload folder → Zip it → Rename to .ipa.


Step 8: Resign the IPA

Spoiler

    •    Open Sideloadly.
    •    Load your modded IPA.
    •    Connect iPhone.
    •    Enter Apple ID → Start signing.
    •    Install the IPA.
    •    On iPhone → Go to Settings → General → Device Management → Trust your Apple ID.




Step 9: Test the Game
    •    Launch the game.
    •    See if your changes worked.
    •    If not, try other RVAs, other hex edits, or revisit dump.cs.


Important Notes Keeeeeeep Thisssssssss Innnnn Mindddddddd:  

Spoiler

    •    Each game is different; you may need to try many times. 
    •    Always backup original files before editing.
    •    You will fail several times before succeeding. Trial and error is the normal process.
    •    Static modding takes patience but works for many offline iOS games.
    •    If you don’t understand some parts, you can search on YouTube or Google, or ask in modding communities for help.



Warning Cause You Knowwww 👀👀👀👀:
    •    Do not attempt to mod server-sided games. Cuz You cant not Possible.
    •    Do not use this method on multiplayer or ranked games. Very Hard You have to Try and check tons of Stuff , Often tese games are completly server sided too .
    •    This guide is for educational and personal offline testing only. Yeahhhhhhh  


I Hope This Guide Can Help You Alittle And  I am still learning Myself too so If you have Any Questions Ask Here 

or just ask @Laxus , @Rook , @Cashlaz 

 

Updated by NNxKIEL
  • Like 1
  • Thanks 1
Posted (edited)
On 7/6/2025 at 11:19 AM, JhnSmith said:

Hey I cant Find Libil2cpp file inside ,?

Search inside UnityFramework folder

Updated by Aizen_

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

    • Last War:Survival v1.0.303 [+2 Jailed Cheats]
      Modded/Hacked App: Last War:Survival By FUNFLY PTE. LTD.
      Bundle ID: com.lastwar.ios
      App Store Link: https://apps.apple.com/us/app/last-war-survival/id6448786147?uo=4



      Important


      Only work on Pve contents

      Enable on loading screen!

       

      🤩 Hack Features

      - Never Die
       
        • Like
      • 50 replies
    • Last War:Survival v1.0.303 [+2 Cheats]
      Modded/Hacked App: Last War:Survival By FUNFLY PTE. LTD.
      Bundle ID: com.lastwar.ios
      App Store Link: https://apps.apple.com/us/app/last-war-survival/id6448786147?uo=4



      Important


      Only work on Pve contents

      Enable on loading screen!

       

       

      🤩 Hack Features

      - Never Die
       
        • Thanks
        • Like
      • 39 replies
    • Heroes Crew: Strategy Defense v1.1.7 [+6 Cheats]
      Modded/Hacked App: Heroes Crew: Strategy Defense By AlohaFactory
      Bundle ID: com.overdogs.heroes
      App Store Link: https://apps.apple.com/us/app/heroes-crew-strategy-defense/id6744350078?uo=4



      🤩 Hack Features

      - Add Currency
      - Unlimited Items
      - Unlimited Property (Heroes, Relic etc)
      - Activate VVip (Use after tutorial and only in main menu)
      - Activate Premium Hunt Pass (Use after tutorial and only in main menu)
      - Unlimited Battle Currency (Always Will Increase)
      • 41 replies
    • Heroes Crew: Strategy Defense v1.1.7 [+6 Jailed Cheats]
      Modded/Hacked App: Heroes Crew: Strategy Defense By AlohaFactory
      Bundle ID: com.overdogs.heroes
      App Store Link: https://apps.apple.com/us/app/heroes-crew-strategy-defense/id6744350078?uo=4



      🤩 Hack Features

      - Add Currency
      - Unlimited Items
      - Unlimited Property (Heroes, Relic etc)
      - Activate VVip (Use after tutorial and only in main menu)
      - Activate Premium Hunt Pass (Use after tutorial and only in main menu)
      - Unlimited Battle Currency (Always Will Increase)
      • 23 replies
    • Gossip Harbor®: Merge & Story v3.70.0 [+2 Jailed Cheats]
      Modded/Hacked App: Gossip Harbor®: Merge & Story By Microfun Limited
      Bundle ID: com.mergegame.icookie
      App Store Link: https://apps.apple.com/us/app/gossip-harbor-merge-story/id1623318294?uo=4



      🤩 Hack Features

      - Unlimited Energy
      - Freeze Currency (Never Decrease)
        • Agree
        • Like
      • 20 replies
    • Gossip Harbor®: Merge & Story v3.70.0 [+2 Cheats]
      Modded/Hacked App: Gossip Harbor®: Merge & Story By Microfun Limited
      Bundle ID: com.mergegame.icookie
      App Store Link: https://apps.apple.com/us/app/gossip-harbor-merge-story/id1623318294?uo=4



      🤩 Hack Features

      - Unlimited Energy
      - Freeze Currency (Never Decrease)
       
      • 9 replies
    • Master Fusion : Monster War v1.1.29 +4 Jailed Cheats
      Modded/Hacked App: Master Fusion : Monster War By Thinh Nguyen Dyc
      Bundle ID: com.moonlight.monsterfusionwar
      App Store Link: https://apps.apple.com/us/app/master-fusion-monster-war/id6738050351?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Damage Multiplier
      - Never Die
      - Freeze Currencies
      - Free IAP

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A
      • 10 replies
    • Master Fusion : Monster War v1.1.29 +4 Cheats
      Modded/Hacked App: Master Fusion : Monster War By Thinh Nguyen Dyc
      Bundle ID: com.moonlight.monsterfusionwar
      App Store Link: https://apps.apple.com/us/app/master-fusion-monster-war/id6738050351?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

      - Damage Multiplier
      - Never Die
      - Freeze Currecnies
      - Free IAP

       

      ⬇️ 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

      - AlyssaX64

       

      📷 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.
      • 3 replies
    • Shadowborn v0.5.5 Debug Menu [+8 Jailed Cheats]
      Modded/Hacked App: Shadowborn By VIVA GAMES S.L.
      Bundle ID: com.onemb.shadowborn
      App Store Link: https://apps.apple.com/us/app/shadowborn/id6738343504?uo=4

       

      🤩 Hack Features

      - Debug Menu
      • 2 replies
    • Shadowborn v0.5.5 Debug Menu [+8 Cheats]
      Modded/Hacked App: Shadowborn By VIVA GAMES S.L.
      Bundle ID: com.onemb.shadowborn
      App Store Link: https://apps.apple.com/us/app/shadowborn/id6738343504?uo=4



      🤩 Hack Features

      - Debug Menu
       
      • 3 replies
    • Hero Adventure: Rogue Survivor v1.2.0 +1 Jailed Cheat
      Modded/Hacked App: Hero Adventure: Rogue Survivor By TapNation
      Bundle ID: com.pgstudio.heroadventure
      iTunes Store Link: https://apps.apple.com/us/app/hero-adventure-rogue-survivor/id1633987367?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Unlimited Currencies → Spend/Gain


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 42 replies
    • Hero Adventure: Rogue Survivor v1.2.0 +1 Cheat
      Modded/Hacked App: Hero Adventure: Action RPG By Pride Studio OU
      Bundle ID: com.pgstudio.heroadventure
      iTunes Store Link: https://apps.apple.com/us/app/hero-adventure-action-rpg/id1633987367?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Unlimited Currencies // Spend Some


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia 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 necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 170 replies
×
  • 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