Jump to content

A Beginner-Friendly Guide to Modding iOS IPAs on Windows Only


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
  • Thanks 1

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

    • Classroom of the Elite v1.0.1 +8 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Classroom of the Elite By Crunchyroll, LLC
      Bundle ID: com.crunchyroll.gv.classroomoftheelite
      App Store Link: https://apps.apple.com/us/app/classroom-of-the-elite/id6670073323?uo=4

       
       

      🤩 Hack Features

      - Freeze Energy
      - Freeze Gems
      - Auto Win
      -- Full Game Unlocked

      VIP
      - Unlimited Coins -> Earn some.
      - Unlimited Gems -> Spend some.
      - Unlimited Energy - Earn some.
      - Unlimited XP -> Earn some.
      • 0 replies
    • Classroom of the Elite v1.0.1 +8 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Classroom of the Elite By Crunchyroll, LLC
      Bundle ID: com.crunchyroll.gv.classroomoftheelite
      App Store Link: https://apps.apple.com/us/app/classroom-of-the-elite/id6670073323?uo=4

       


      🤩 Hack Features

      - Freeze Energy
      - Freeze Gems
      - Auto Win
      -- Full Game Unlocked

      VIP
      - Unlimited Coins -> Earn some.
      - Unlimited Gems -> Spend some.
      - Unlimited Energy - Earn some.
      - Unlimited XP -> Earn some.
      • 0 replies
    • Zombie Infinity v1.8.1 [ +5 Cheats ] Currency Max
      Modded/Hacked App: Zombie Infinity By kamasu.jp Inc.
      Bundle ID: jp.kamasu.oread
      App Store Link: https://apps.apple.com/ph/app/zombie-infinity/id6736433765?uo=4


      🤩 Hack Features

      - ADS Pass

      - Energy Pass

      - Premium Pass

      - Currency

      - Hero Status [ HP - DMG ]
      • 0 replies
    • Zombie Infinity v1.8.1 [ +5 Jailed ] Currency Max
      Modded/Hacked App: Zombie Infinity By kamasu.jp Inc.
      Bundle ID: jp.kamasu.oread
      App Store Link: https://apps.apple.com/ph/app/zombie-infinity/id6736433765?uo=4


      🤩 Hack Features

      - ADS Pass

      - Energy Pass

      - Premium Pass

      - Currency

      - Hero Status [ HP - DMG ]
      • 0 replies
    • GrandChase Cheats v1.91.2 +4 [ Multiply Attack & More ]
      Modded/Hacked App: GrandChase By KOG co., Ltd
      Bundle ID: com.kog.grandchaseglobal
      iTunes Store Link: https://itunes.apple.com/us/app/grandchase/id1385904294?mt=8&uo=4&at=1010lce4

      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate or Substitute.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - x Player Damage - x1 - 100
      - x Player HP - x1 - 100
      - Auto-Win
      - Unlimited Skills

      All features are unlinked and only for player, you!

      This hack is an In-Game Mod Menu (iGMM). In order to activate the Mod Menu, tap on the iOSGods button found inside the app. This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,466 replies
    • Earn to Die Rogue v1.14.178 +15 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Earn to Die Rogue By Not Doppler Pty Limited
      Bundle ID: com.notdoppler.earntodierogue
      iTunes Store Link: https://apps.apple.com/us/app/earn-to-die-rogue/id1564024870?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Gold
      - Unlimited Skill Tree Tokens


      Jailbreak required hack(s): [Mod Menu Hack] Earn to Die Rogue v1.00.96 +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
      • 266 replies
    • Earn to Die Rogue v1.14.178 +15 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Earn to Die Rogue By Not Doppler Pty Limited
      Bundle ID: com.notdoppler.earntodierogue
      iTunes Store Link: https://apps.apple.com/us/app/earn-to-die-rogue/id1564024870?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Gold
      - Unlimited Skill Tree Tokens


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Earn to Die Rogue v1.00.96 +2 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA 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
      • 155 replies
    • Virtual Villagers 6 v1.9.7 +100 Jailed Cheats [ Cheats Menu ]
      Modded/Hacked App: Virtual Villagers 6 By LDW Software, LLC
      Bundle ID: com.ldw.vv6
      iTunes Store Link: https://apps.apple.com/us/app/virtual-villagers-6/id6566193928?uo=4

       
       

      Hack Features

      - Cheats Menu -> Head into Settings, toggle the Help button, close settings then re-open to show a Cheats button.*
      - Unlimited Food*
      - Unlimited Wood*
      - Unlimited Stone*
      - Unlimited Tech Points*
      - Unlimited Lavastone*

      * - Head into Settings and toggle the Help button. Only enable 1 feature at a time.


      Jailbreak required iOS hacks: [Mod Menu Hack] Virtual Villagers 6 v1.3.23 +100 Cheats [ Cheats Menu ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Agree
        • Like
      • 8 replies
    • Virtual Villagers 6 v1.9.7 +100 Cheats [ Cheats Menu ]
      Modded/Hacked App: Virtual Villagers 6 By LDW Software, LLC
      Bundle ID: com.ldw.vv6
      iTunes Store Link: https://apps.apple.com/us/app/virtual-villagers-6/id6566193928?uo=4

       


      Hack Features

      - Cheats Menu -> Head into Settings, toggle the Help button, close settings then re-open to show a Cheats button.*
      - Unlimited Food*
      - Unlimited Wood*
      - Unlimited Stone*
      - Unlimited Tech Points*
      - Unlimited Lavastone*

      * - Head into Settings and toggle the Help button. Only enable 1 feature at a time.


      For Non-Jailbroken & No Jailbreak required hacks: [IPA Mod Menu] Virtual Villagers 6 v1.3.23 +100 Jailed Cheats [ Cheats Menu ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Haha
        • Thanks
        • Like
      • 5 replies
    • Hellsquad Rrrush! v1.0.1 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Hellsquad Rrrush! By Wemade Max Co., Ltd.
      Bundle ID: com.wemademax.projectsc
      App Store Link: https://apps.apple.com/us/app/hellsquad-rrrush/id6737409896?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
        • Informative
        • Winner
        • Like
      • 4 replies
    • Hellsquad Rrrush! v1.0.1 +3 Cheats [ Damage & Defence ]
      Modded/Hacked App: Hellsquad Rrrush! By Wemade Max Co., Ltd.
      Bundle ID: com.wemademax.projectsc
      App Store Link: https://apps.apple.com/us/app/hellsquad-rrrush/id6737409896?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
        • Winner
      • 5 replies
    • [ DBL ]ドラゴンボール レジェンズ v6.4.0 - [ Instant - Win & More ]
      Modded/Hacked App: ドラゴンボール レジェンズ By BANDAI NAMCO Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0333
      iTunes Store Link: https://itunes.apple.com/jp/app/ドラゴンボール-レジェンズ/id1358232022


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate (from Cydia).
      - PreferenceLoader (from Cydia).


      Hack Features:
      - x Player Damage - x1 - 20 
      - x Player Defense - x1 - 20 
      - One Hit Kill
      - God Mode 
      - 1 Enemy Per Quest
      - Instant - Win - Enable It When You In Battle
      - No Swap CoolDown
      - No Vanish CoolDown
      - No KI Cost
      - Auto Complete All Challenges-> Currency/Chrono Crystals Hack!
      - Always Critical
      - Tutorial Bypass
      - All Cards Give DragonBalls

      All functions are unlinked and only for player, you!
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,646 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