Jump to content

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


9 posts in this topic

Recommended Posts

Updated (edited)

 

Part 2 of the tutorial is coming out soon! I'll be showing you the exact methods—the easiest ones—to help you hack your first game. Stay tuned, you're going to love it. Believe me!

Even someone with zero knowledge will be able to do it.

For now, you need to learn the basics below and get comfortable with everything. So take a moment and give it a read!




Beginner’s Guide: iOS IPA Modding Using Windows

( No Jailbreak – No Frida – Static Modding ) 
 

 

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 (UnityFramework) 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 UnityFramework 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

Use Arm Convertor to get Hex values , to gernate your own for like making a function false , True , Nop , Change it to higher etc etc u have to do some research about it..


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 



 

Updated by Aizen
  • Like 5
  • Thanks 1
Posted (edited)
On 7/5/2025 at 11:19 PM, JhnSmith said:

Hey I cant Find Libil2cpp file inside ,?

Search inside UnityFramework folder
your main file here will be UnityFramework (Not libil2cpp )

Updated by Aizen_
Posted
On 7/6/2025 at 12:19 AM, JhnSmith said:

Hey I cant Find Libil2cpp file inside ,?

Hi there!

You'll be navigating to: Frameworks Folder> UnityFramework.framework Folder> Selecting "UnityFramework" file as the lib file he mentioned.

Afterwards, it's the global-metadata selection, then it takes a tiny dump called "dump.cs" which, yeah, follow his tutorial from there.

  • 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

    • Egg, Inc. Cheats v1.35.1 +1 [ Free Store ]
      Modded/Hacked App: Egg, Inc. By Auxbrain, Inc.
      Bundle ID: com.auxbrain.egginc
      iTunes Store Link: https://apps.apple.com/us/app/egg-inc/id993492744?uo=4


      Hack Features:
      - Infinite Currencies (Spend to Gain)


      iOS Hack Download Link: https://iosgods.com/topic/141151-egg-inc-cheats-all-versions-1-infinite-currencies/
      • 480 replies
    • Galaxy Attack: Alien Shooter v5.14.9 [ +30++ Cheats ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4
       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible  

       

      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Informative
      • 94 replies
    • Galaxy Attack: Alien Shooter v5.14.9 [ +30++ Jailed ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?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

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/

       

      📥 iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App
      • 77 replies
    • Galaxy Attack Alien Shooter v5.14.9 [ +3 Jailed ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4


      Hack Features:
      - Max Bullet
      - Max Life
      - DMG



      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 74 replies
    • Galaxy Attack Alien Shooter v5.14.9 [ +3 Cheats ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By ABIGAMES PTE. LTD
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?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:
      - Max Life 
      - Damage Multi [PvP Use Only Boss ] 
      - Max Bullet



      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
      • 225 replies
    • Egg, Inc. v1.35.1 Jailed Cheats +1 [ Free Store ]
      Modded/Hacked App: Egg, Inc. by Auxbrain, Inc.
      Bundle ID: com.auxbrain.egginc
      iTunes Store Link: https://itunes.apple.com/us/app/egg-inc/id993492744?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Free iAP


      Hack Download Link: https://iosgods.com/topic/86300-arm64-egg-inc-v18-jailed-cheats-1/

      #Hack #Jailbreak #Cydia #Cheat #Apple #Android #iOSGods
        • Agree
        • Like
      • 947 replies
    • Soccer Journey 2026 v1.0.6 [ +12 Cheats ] Currency Max
      Modded/Hacked App: Soccer Journey 2026 By KONG SOFTWARE JOINT STOCK COMPANY
      Bundle ID: com.kongsoftware.project02sj.gl
      App Store Link: https://apps.apple.com/us/app/soccer-journey-2026/id6745119606?uo=4


      🤩 Hack Features

      - Gold

      - Cash

      - Player Energy

      - Match Energy

      - Tokens

      - EXP User

      - Scout Ticket +3

      - Standard Scout +4

      - Cube +4

      - Training +3

      - Upgrade Cost All Building [ Earn Cash ]

      - Speed UP Cost All Building [ Earn Cash ]
        • Thanks
      • 43 replies
    • Offroad Outlaws v7.0.25 Jailed Cheats +1
      Modded/Hacked App: Offroad Outlaws by Zach Smith
      Bundle ID: com.battlecreek.offroadoutlaws
      iTunes Store Link: https://apps.apple.com/us/app/offroad-outlaws/id1286538410?uo=4&at=1010lce4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Free iAP (Turn on inside iOSGods Mod Menu first)
       


      iOS Hack Download Link: https://iosgods.com/topic/130663-offroad-outlaws-v7025-jailed-cheats-1/
        • Informative
      • 223 replies
    • Walkalypse - IRL Survival RPG v1.1.10 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Walkalypse - IRL Survival RPG By CGDEALERS LTD EOOD
      Bundle ID: com.cgdealers.walkalypse
      App Store Link: https://apps.apple.com/ph/app/walkalypse-irl-survival-rpg/id6748278171?uo=4

      🤩 Hack Features

      - Unlimited Gold / Earn Some Disable After Hack
      - Daily Steps / Auto Max When Use
      - Offline Steps Freeze
      - Resources Max 100 / Earn Some
      • 14 replies
    • Walkalypse - IRL Survival RPG v1.1.10 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Walkalypse - IRL Survival RPG By CGDEALERS LTD EOOD
      Bundle ID: com.cgdealers.walkalypse
      App Store Link: https://apps.apple.com/ph/app/walkalypse-irl-survival-rpg/id6748278171?uo=4

      🤩 Hack Features

      - Unlimited Gold / Earn Some Disable After Hack
      - Daily Steps / Auto Max When Use
      - Offline Steps Freeze
      - Resources Max 100 / Earn Some
      • 6 replies
    • Paradise Paws: Merge Animals v1.0.15 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Animal Sanctuary By Wildlife Studios, Inc
      Bundle ID: com.wildlifestudios.merge.animal.sanctuary
      App Store Link: https://apps.apple.com/us/app/animal-sanctuary/id6741805691?uo=4
       

      🤩 Hack Features

      - Gems

      - Coins

      - Heart

      - Spin

      - LvL

      - Exp

      - Fog Auto Remove [ Linked With LvL ]

      - Premum Lands Unlocked [ Just Tap ]

      - Store Free [ IAP Not ]

      Note:- Game Close After Currency Hack Don't Worry
        • Like
      • 31 replies
    • Paradise Paws: Merge Animals v1.0.15 [ +9 Jailed ] Currency Max
      Modded/Hacked App: Animal Sanctuary By Wildlife Studios, Inc
      Bundle ID: com.wildlifestudios.merge.animal.sanctuary
      App Store Link: https://apps.apple.com/us/app/animal-sanctuary/id6741805691?uo=4


      🤩 Hack Features

      - Gems

      - Coins

      - Heart

      - Spin

      - LvL

      - Exp

      - Fog Auto Remove [ Linked With LvL ]

      - Premum Lands Unlocked [ Just Tap ]

      - Store Free [ IAP Not ]

      Note:- Game Close After Currency Hack Don't Worry
      • 32 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