Jump to content

11 posts in this topic

Recommended Posts

Posted

HELLO AGAIN! 🙋🏻‍♀️ 

I’ve run into another issue during this learning journey and I’ve searched the forums to see whether someone’s had the same issue or not, one person did but it went unsolved.

Steps:

1. Grabbed ASLR — CE8000

Money: 3320 — CF8

 

2. Removed ASLR from WatchPoint Offsets.

•WatchPoint1 — 0X12C144674

Frame#0 — 10832D0F8

ASLR Removed — 1076450F8

 

•WatchPoint2 — 0X12C3C8BB0

Frame#0 — 10836CE58

ASLR Removed — 107684E58
 

3. Converted Decimal to Hex.

4. Searched in Register Read.

5. Made a match (x11 - 12C65CCF8)

6. Went to IDA.

7. Searched for 1076450F8 & 107684E58

8. Met with Command “JumpAsk” Failed.

 

Did I go wrong somewhere? Please educate me!

Posted
On 8/29/2021 at 2:33 AM, LEON... said:

 

 

1 hour ago, Mandu said:

HELLO AGAIN! 🙋🏻‍♀️ 

I’ve run into another issue during this learning journey and I’ve searched the forums to see whether someone’s had the same issue or not, one person did but it went unsolved.

Steps:

1. Grabbed ASLR — CE8000

Money: 3320 — CF8

 

2. Removed ASLR from WatchPoint Offsets.

•WatchPoint1 — 0X12C144674

Frame#0 — 10832D0F8

ASLR Removed — 1076450F8

 

•WatchPoint2 — 0X12C3C8BB0

Frame#0 — 10836CE58

ASLR Removed — 107684E58
 

3. Converted Decimal to Hex.

4. Searched in Register Read.

5. Made a match (x11 - 12C65CCF8)

6. Went to IDA.

7. Searched for 1076450F8 & 107684E58

8. Met with Command “JumpAsk” Failed.

 

Did I go wrong somewhere? Please educate me!

Hey can you provide screenshots on exactly what you are doing or a video, you might be grabbing offsets that might be from another process, sometimes games are weird and have stuff in a framework which can make things a little more difficult 

Posted (edited)
3 hours ago, ProGamerMoment said:

 

Hey can you provide screenshots on exactly what you are doing or a video, you might be grabbing offsets that might be from another process, sometimes games are weird and have stuff in a framework which can make things a little more difficult 

If you don’t mind, I’ll list everything in detailed steps.

Game:

• Zombie Shop V-0.21.1

 

Devices:

• iPhone X 13.3 UnC0Ver 7.0.0 JB

• ASUS ROG Laptop Win10 x64

 

Programs:

• IDA PRO 7.3

• iL2CPPDumper

• Notepad++

• LLDB

• 3uTools

• PuTTy

• iGameGod

• Filza

• NewTerm

• FlexDecrypt | CrackerXI

 

Sites:

• ArmConverter

• BinaryHexConverter

• Calculator-HexCalculator

——————————————

1. Gathering the necessary files.

• [iPhone] Launch CrackerXI —> Zombie Shop —> Full IPA

• [iPhone] Launch Filza (/var/mobile/Documents/CrackerXI) —> EXTRACT ZombieShop_0.21.1_Weiss
• Launch NewTerm —> flexdecrypt /var/mobile/Documents/CrackerXI/ZombieShop_0.21.1_Weiss/Payload/ZombieShop.app/Frameworks/UnityFramework.framework/UnityFramework

[[Cracked binary is in /tmp/UnityFramework]]

• [PC] — Launch 3uTools > Grab UnityFramework and place in Desktop Folder.

• [PC] Direct to ZombieShop.app > Data > Managed > Metadata > Grab global-metadata.dat and place in Desktop Folder.

——————————————

2. IDA Pro Portion

• [PC] Launch IDA Pro x64 > New > Select “UnityFramework” > Allow to fully load with “IDLE” is on the bottom left.

• [PC] Launch iL2CPPDumper > Select “UnityFramework” > Select “global-metadata.dat” > Allow to finish.

• [PC] Return to IDA Pro (Fully Loaded) > File > Script File... > IDA.py > Script.JSON

• [PC] Allow the script to fully finish until it says “IDLE” is on the bottom left.

——————————————

3. 3uTools / PuTTy / LLDB / Game Portion

• [iPhone] Open iGameGod and enable Zombie Shop.

• [iPhone] Launch Zombie Shop.

• [PC] Launch 3uTools > Toolbox > Open SSH Tunnel > SSH Client (PuTTy)

• [PC] In PuTTy > Type “lldb” > Type “attach ZombieShop”

• [PC] Game attaches successfully, the game freezes.

• [PC] In PuTTy > Type “image list ZombieShop” > Note the ASLR > Type “c” to continue process (unfreeze game).

• [iPhone] Use iGameGod to search values until I’m left with 1-2 (in my case, 3).

• [PC] In PuTTy > Type “process interrupt” (freezes game).

[[NOTE: Cannot create Watchpoints while the game’s running.]]

• [PC] Creates Watchpoints.

• [iPhone/PC] Changes the value > Trigger Watchpoints 1.

• [PC] In PuTTy > Type “register read” and copy the output into Notepad++ > Type “c” to proceed > Watchpoint 2 was trigger-ed > Type “register read” and copy the output into Notepad++.

• [PC] Acquired 2 IDA offsets > Removed ASLR using hex calculator.

• [PC/iPhone] Kept notes on money value and converted using decimal to hex.

• [PC] Searched for the converted value in the register read outputs and found a match in watchpoint 1.

• [PC] Returned to IDA > Press “G” > Inserts Address (ASLR REMOVED ONE)

——————————————
[[ENCOUNTERS ERROR]]
• Command “JumpAsk” Failed

——————————————

Hopefully you could help spot the issue this way!

 

Updated by 0xWeiss
Posted

EDIT:

Possible Mistakes List:

- “image list UnityFramework” instead of “image list ZombieShop”? (3:23AM Thought)

Posted
5 hours ago, 0xWeiss said:

EDIT:

Possible Mistakes List:

- “image list UnityFramework” instead of “image list ZombieShop”? (3:23AM Thought)

That is correct, you must use UnityFramework, offsets will be in there and usually they don’t have the 0x10 in front so try it without and see if they match up, however when looking for the process you have to side Zombie shop since it loads the the frameworks once the binary has been loading, hence why the binary is small. Hope this helps

  • Like 1
Posted
7 hours ago, ProGamerMoment said:

That is correct, you must use UnityFramework, offsets will be in there and usually they don’t have the 0x10 in front so try it without and see if they match up, however when looking for the process you have to side Zombie shop since it loads the the frameworks once the binary has been loading, hence why the binary is small. Hope this helps

That solved a problem, but not the one I originally had. Haha. However, I realized I was able to find the address in the debug portion of IDA. The green play button thing. However it didn’t have anything next to it, so I exited and saw that the analysis thing wasn’t finished. So I’m gonna let that load and try again tonight.

Posted
On 10/27/2021 at 9:46 AM, 0xWeiss said:

If you don’t mind, I’ll list everything in detailed steps.

Game:

• Zombie Shop V-0.21.1

 

Devices:

• iPhone X 13.3 UnC0Ver 7.0.0 JB

• ASUS ROG Laptop Win10 x64

 

Programs:

• IDA PRO 7.3

• iL2CPPDumper

• Notepad++

• LLDB

• 3uTools

• PuTTy

• iGameGod

• Filza

• NewTerm

• FlexDecrypt | CrackerXI

 

Sites:

• ArmConverter

• BinaryHexConverter

• Calculator-HexCalculator

——————————————

1. Gathering the necessary files.

• [iPhone] Launch CrackerXI —> Zombie Shop —> Full IPA

• [iPhone] Launch Filza (/var/mobile/Documents/CrackerXI) —> EXTRACT ZombieShop_0.21.1_Weiss
• Launch NewTerm —> flexdecrypt /var/mobile/Documents/CrackerXI/ZombieShop_0.21.1_Weiss/Payload/ZombieShop.app/Frameworks/UnityFramework.framework/UnityFramework

[[Cracked binary is in /tmp/UnityFramework]]

• [PC] — Launch 3uTools > Grab UnityFramework and place in Desktop Folder.

• [PC] Direct to ZombieShop.app > Data > Managed > Metadata > Grab global-metadata.dat and place in Desktop Folder.

——————————————

2. IDA Pro Portion

• [PC] Launch IDA Pro x64 > New > Select “UnityFramework” > Allow to fully load with “IDLE” is on the bottom left.

• [PC] Launch iL2CPPDumper > Select “UnityFramework” > Select “global-metadata.dat” > Allow to finish.

• [PC] Return to IDA Pro (Fully Loaded) > File > Script File... > IDA.py > Script.JSON

• [PC] Allow the script to fully finish until it says “IDLE” is on the bottom left.

——————————————

3. 3uTools / PuTTy / LLDB / Game Portion

• [iPhone] Open iGameGod and enable Zombie Shop.

• [iPhone] Launch Zombie Shop.

• [PC] Launch 3uTools > Toolbox > Open SSH Tunnel > SSH Client (PuTTy)

• [PC] In PuTTy > Type “lldb” > Type “attach ZombieShop”

• [PC] Game attaches successfully, the game freezes.

• [PC] In PuTTy > Type “image list ZombieShop” > Note the ASLR > Type “c” to continue process (unfreeze game).

• [iPhone] Use iGameGod to search values until I’m left with 1-2 (in my case, 3).

• [PC] In PuTTy > Type “process interrupt” (freezes game).

[[NOTE: Cannot create Watchpoints while the game’s running.]]

• [PC] Creates Watchpoints.

• [iPhone/PC] Changes the value > Trigger Watchpoints 1.

• [PC] In PuTTy > Type “register read” and copy the output into Notepad++ > Type “c” to proceed > Watchpoint 2 was trigger-ed > Type “register read” and copy the output into Notepad++.

• [PC] Acquired 2 IDA offsets > Removed ASLR using hex calculator.

• [PC/iPhone] Kept notes on money value and converted using decimal to hex.

• [PC] Searched for the converted value in the register read outputs and found a match in watchpoint 1.

• [PC] Returned to IDA > Press “G” > Inserts Address (ASLR REMOVED ONE)

——————————————
[[ENCOUNTERS ERROR]]
• Command “JumpAsk” Failed

——————————————

Hopefully you could help spot the issue this way!

 

Im inestigating this issue because it just happening to me same. I think i have founded the solution , but not 100% sure, checking well before posting any bulsh!t and i will update here tomorrow ,

Posted (edited)
3 minutes ago, Max-- said:

Im investigating this issue because it just happening to me same. I think i have founded the solution , but not 100% sure, checking well before posting any bulsh!t and i will update here tomorrow ,

i can give a tip like the droping offset when watchpoint hits its not the real one, thats why when remove the aslr from it we get a ridiculous offset, that doesnt even exist in ida=Jump failed

Updated by Max--
Posted
7 hours ago, Max-- said:

i can give a tip like the droping offset when watchpoint hits its not the real one, thats why when remove the aslr from it we get a ridiculous offset, that doesnt even exist in ida=Jump failed

Please let me know. I'm currently trying to hack a game atm using LLDB.

I've searched values -> set watchpoints -> trigger watchpoints -> image lookup -a 0x00000000 (the watchpoint hit)

Posted

@0xWeiss Did you eventually find a solution? 
 

I hit very similar things when I am hacking Otherworld Legends. Unity Framework game, I can modify the memory of the arm code (with Xcode) but i can’t find the real offset for the UnityFramework Binary file.

also got “JumpAsk” failed

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

    • Tasty Travels: Merge Game v30.0 +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Tasty Travels: Merge Game By Century Games Pte. Ltd.
      Bundle ID: com.fatmerge.global
      iTunes Store Link: https://apps.apple.com/us/app/tasty-travels-merge-game/id6471045672?uo=4

       


      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      - Unlimited Energy -> Will increase instead of decrease.
        • Agree
        • Like
      • 7 replies
    • Tasty Travels: Merge Game v30.0 +3 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Tasty Travels: Merge Game By Century Games Pte. Ltd.
      Bundle ID: com.fatmerge.global
      iTunes Store Link: https://apps.apple.com/us/app/tasty-travels-merge-game/id6471045672?uo=4

       


      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      - Unlimited Energy -> Will increase instead of decrease.
        • Thanks
        • Winner
        • Like
      • 5 replies
    • Glow Fashion Idol v0.6.0 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Glow Fashion Idol By CRAZY LABS BY TABTALE , G.P.
      Bundle ID: com.crazylabs.fashionsquad
      iTunes Store Link: https://apps.apple.com/us/app/glow-fashion-idol/id6446197181?uo=4


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems


      Jailbreak required hack(s): [Mod Menu Hack] Glow Fashion Idol v0.3.3 +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
      • 49 replies
    • Glow Fashion Idol v0.6.0 +2 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Glow Fashion Idol By CRAZY LABS BY TABTALE , G.P.
      Bundle ID: com.crazylabs.fashionsquad
      iTunes Store Link: https://apps.apple.com/us/app/glow-fashion-idol/id6446197181?uo=4


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Glow Fashion Idol v0.3.3 +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/
        • Agree
        • Thanks
        • Winner
        • Like
      • 25 replies
    • Solaria: Dawn of Heroes v0.23.1 +3 Jailed Cheats [ Damage + More ]
      Modded/Hacked App: Solaria: Dawn of Heroes By Glaive Games LTD
      Bundle ID: com.glaivegames.solaria
      App Store Link: https://apps.apple.com/us/app/solaria-dawn-of-heroes/id6739830946?uo=4

       


      🤩 Hack Features

      - Weak Enemies -> Enable before a level.
      - Dumb Enemies
      - Damage Multiplier -> Linked. Use with Dumb Enemies.
      • 1 reply
    • Solaria: Dawn of Heroes v0.23.1 +3 Cheats [ Damage + More ]
      Modded/Hacked App: Solaria: Dawn of Heroes By Glaive Games LTD
      Bundle ID: com.glaivegames.solaria
      App Store Link: https://apps.apple.com/us/app/solaria-dawn-of-heroes/id6739830946?uo=4

       
       

      🤩 Hack Features

      - Weak Enemies -> Enable before a level.
      - Dumb Enemies
      - Damage Multiplier -> Linked. Use with Dumb Enemies.
        • Agree
        • Winner
        • Like
      • 7 replies
    • Bowmasters - Multiplayer Game v8.2.0 +3 Jailed Cheats
      Modded/Hacked App: Bowmasters - Multiplayer Game By Playgendary Limited
      Bundle ID: com.playgendary.bowmasters
      iTunes Store Link: https://apps.apple.com/us/app/bowmasters-multiplayer-game/id1118431695?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 Coins
      - Unlimited Gems
      - No Ads


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 124 replies
    • Idle Ninja Online v2400 +8 Jailed Cheats
      Modded/Hacked App: Idle Ninja Online By Puzzle Monsters Inc.
      Bundle ID: com.puzzlemonsters.growninja
      iTunes Store Link: https://apps.apple.com/us/app/idle-ninja-online/id1559182313?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:
      - Hit Count Multiplier
      - Disable Enemy Skills
      - Move Speed Multiplier
      - Attack Speed Multiplier 
      - Shuriken Count Multiplier 
      - No Skills Cooldown
      - Shuriken Penetrate All Enemies
      - No Mana Skills


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 312 replies
    • Bowmasters - Multiplayer Game v8.2.0 +3 Cheats
      Modded/Hacked App: Bowmasters - Multiplayer Game By Playgendary GmbH
      Bundle ID: com.playgendary.bowmasters
      iTunes Store Link: https://apps.apple.com/us/app/bowmasters-multiplayer-game/id1118431695?uo=4


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


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems
      - No Ads


      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.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: 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 7: 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, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 269 replies
    • Idle Ninja Online v2400 +9 Cheats
      Modded/Hacked App: Idle Ninja Online By Puzzle Monsters Inc.
      Bundle ID: com.puzzlemonsters.growninja
      iTunes Store Link: https://apps.apple.com/us/app/idle-ninja-online/id1559182313?uo=4


      Hack Features:
      - Hit Count Multiplier
      - Disable Enemy Skills
      - Move Speed Multiplier
      - Attack Speed Multiplier 
      - Shuriken Count Multiplier 
      - No Skills Cooldown
      - Shuriken Penetrate All Enemies 
      - No Mana Skills 
      - Jailbreak Detection Removed


      Non-Jailbroken & No Jailbreak required hack(s): 


      iOS Hack Download Link: https://iosgods.com/topic/148430-idle-ninja-online-v2312-9-cheats/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 697 replies
    • (Tower Of Saviors) 神魔之塔 v2025.3 +4 Jailed Cheats
      Modded/Hacked App: 神魔之塔 By Mad Head Limited
      Bundle ID: com.madhead.tos.zh
      iTunes Store Link: https://apps.apple.com/us/app/%E7%A5%9E%E9%AD%94%E4%B9%8B%E5%A1%94/id583798880?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:
      - Damage Multiplier
      - Defense Multiplier
      - Weak Enemies
      - Dumb Enemies


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 95 replies
    • Hero Wars: Alliance v1.244.200 +2 Jailed Cheats
      Modded/Hacked App: Hero Wars: Alliance By Nexters Global LTD
      Bundle ID: com.nexters.titanhunters
      iTunes Store Link: https://apps.apple.com/us/app/hero-wars-alliance/id1158967485?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:
      - Damage Multiplier
      - Defense Multiplier

      Note:
      Don't Use Hack In Tutorial


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 139 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