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

    • Screw Tap Jam - Screw Sort 3D Cheats v2.500 +3
      Modded/Hacked App: Screw Tap Jam™ - Screw Sort 3D By Wonder Rush Technology Limited
      Bundle ID: com.screw.jam.tap
      iTunes Store Link: https://apps.apple.com/us/app/screw-tap-jam-screw-sort-3d/id6670189511?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

      - PREMIUM
      - Infinite Coins
      - Infinite Boosters (Able to use even without having enough)

       

      Non-Jailbroken Hack: https://iosgods.com/topic/193632-screw-tap-jam-screw-sort-3d-v2200-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/193631-screw-tap-jam-screw-sort-3d-cheats-v2200-3/
      • 3 replies
    • [ FFBE WoTV Japan ] FFBE幻影戦争 WAR OF THE VISIONS Cheats v12.1.1 +3
      Modded/Hacked App: FFBE幻影戦争 戦略RPG/シミュレーションゲーム By SQUARE ENIX Co., Ltd.
      Bundle ID: com.square-enix.WOTVffbejp
      iTunes Store Link: https://apps.apple.com/jp/app/ffbe%E5%B9%BB%E5%BD%B1%E6%88%A6%E4%BA%89-%E6%88%A6%E7%95%A5rpg-%E3%82%B7%E3%83%9F%E3%83%A5%E3%83%AC%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%82%B2%E3%83%BC%E3%83%A0/id1443703517?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Full Map Movement


      iOS Hack Download Link: https://iosgods.com/topic/173484-ffbe-wotv-japan-ffbe%E5%B9%BB%E5%BD%B1%E6%88%A6%E4%BA%89-war-of-the-visions-cheats-v916-3/
      • 93 replies
    • Travel Town - Merge Adventure v2.12.1060 Jailed Cheats +1
      Modded/Hacked App: Travel Town - Merge Adventure By Magmatic Games Ltd
      Bundle ID: io.randomco.travel
      iTunes Store Link: https://apps.apple.com/us/app/travel-town-merge-adventure/id1521236603?uo=4


      Hack Features:
      - Infinite Currencies


      iOS Hack Download Link: https://iosgods.com/topic/148953-travel-town-merge-adventure-v212287-jailed-cheats-1/
      • 728 replies
    • Battle Camp Cheats v5.37.1 +2
      Modded/Hacked App: Battle Camp By Battlecamp AB
      Bundle ID: com.battlecamp.monsters
      iTunes Store Link: https://apps.apple.com/us/app/battle-camp/id1555773592?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

      - God Mode
      - One Hit Kill

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147532-battle-camp-cheats-v5360-2/
      • 134 replies
    • Sword Master Story Cheats v4.111.558 +5
      Modded/Hacked App: Sword Master Story By SuperPlanet corp.
      Bundle ID: com.superplanet.swordmaster
      iTunes Store Link: https://apps.apple.com/us/app/sword-master-story/id1521447065?uo=4


      Hack Features:
      - Custom Player Stats
      - Weak Enemies
      - One Hit Kill
      - & More

      Press & Hold to read feature description


      iOS Hack Download Link: https://iosgods.com/topic/146819-sword-master-story-cheats-v42294-3/
      • 1,452 replies
    • 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.
      • 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.
      • 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/
      • 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/
      • 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.
      • 8 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
      • 124 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