Jump to content

22 posts in this topic

Recommended Posts

Posted
  On 9/7/2017 at 6:14 PM, Mr Cub3s said:

i'll ask you one question, do u know what's aslr?

 

Expand  

"IMAGE LIST"

of course, i got ASLR in this case "F4000", but that is also have nothing with this on LLDB, aslr is important for IDA PRO, BUT WHAT TO DO IN THIS CASE? IF YOU GOTZ THIS ONE, WHAT YOU WILL DO NEXT IN THIS CASE?

Posted
  On 9/7/2017 at 6:25 PM, Goran said:

"IMAGE LIST"

of course, i got ASLR in this case "F4000", but that is also have nothing with this on LLDB, aslr is important for IDA PRO, BUT WHAT TO DO IN THIS CASE? IF YOU GOTZ THIS ONE, WHAT YOU WILL DO NEXT IN THIS CASE?

Expand  

lmaoo

i didn't understand a word... are u doing this for arm64 binaries? if yes, you need to add the bias to the offset you find in lldb

Posted (edited)
  On 9/7/2017 at 6:31 PM, Mr Cub3s said:

lmaoo

i didn't understand a word... are u doing this for arm64 binaries? if yes, you need to add the bias to the offset you find in lldb

Expand  

Here it is in details... :) i have iPhone 6s, that app is ARM64 and ARM7, so i thinned binary to ARMv7, and it works on phone...

i found value for diamonds in app it is I64 in iGG,

attached to lldb, do image list...

w s e -- 0xiGGaddress and got this in lldb...

* thread #1: tid = 0x36f39, 0x00425cb4 covetHome, stop reason = watch 1
    frame #0: 0x00425cb4 covetHome
-> 0x425cb4:  andlo  r6, r1, r0, lsr r11
    0x425cb8:  andlt  r6, r7, r0, lsr r3
    0x425cbc:  stceq  p8, c14, [r0, #-756]

than i was stuck... because when i go 425cb4-F4000(ASLR) it give me "331cb4" ida address... but in IDA, there is no that address, as you can see on picture... Tried to watch and breakpoint those 0x425cb4, 0x425cb8, 0x425cbc...

but no luck...

here is IDA PRO part...

lqJAIWr.png

as you can see here even don't have 331cb4 address...

so what can it be problem here, because functions don't match... and how could you solve this? if you are working on that...

Updated by Goran
Posted
  On 9/7/2017 at 7:27 PM, Goran said:

Here it is in details... :) i have iPhone 6s, that app is ARM64 and ARM7, so i thinned binary to ARMv7, and it works on phone...

i found value for diamonds in app it is I64 in iGG,

attached to lldb, do image list...

w s e -- 0xiGGaddress and got this in lldb...

* thread #1: tid = 0x36f39, 0x00425cb4 covetHome, stop reason = watch 1
    frame #0: 0x00425cb4 covetHome
-> 0x425cb4:  andlo  r6, r1, r0, lsr r11
    0x425cb8:  andlt  r6, r7, r0, lsr r3
    0x425cbc:  stceq  p8, c14, [r0, #-756]

than i was stuck... because when i go 425cb4-F4000(ASLR) it give me "331cb4" ida address... but in IDA, there is no that address, as you can see on picture... Tried to watch and breakpoint those 0x425cb4, 0x425cb8, 0x425cbc...

but no luck...

here is IDA PRO part...

lqJAIWr.png

as you can see here even don't have 331cb4 address...

so what can it be problem here, because functions don't match... and how could you solve this? if you are working on that...

Expand  

DID U REMOVE ASLR FROM THE BIN?

Posted

Ask yourself are you hacking 32 or 64 bit? I'd go with the 64 bit if I were you. It looks as though r1 is storing the value but I'd have to have a look myself and see.

Posted

Dude, you need to post a tutorial like this for beginners. I spent weeks looking at tutorials and reading up but always felt i was missing something.

Even with the broken english in places, after reading your post with screen shots i feel i was on the right path and when i get some free time next will jump back on it. 

Please make a tutorial, exactly as above. Given all the infomation for what you're doing at each point. Alot of neebs could benefit from this. 

Also @Ted2sup, always around to help ?

  • Agree 1
Posted
  On 9/7/2017 at 10:16 PM, BigDaddy284 said:

Dude, you need to post a tutorial like this for beginners. I spent weeks looking at tutorials and reading up but always felt i was missing something.

Even with the broken english in places, after reading your post with screen shots i feel i was on the right path and when i get some free time next will jump back on it. 

Please make a tutorial, exactly as above. Given all the infomation for what you're doing at each point. Alot of neebs could benefit from this. 

Also @Ted2sup, always around to help ?

Expand  

am begginer and when i get basics, i will make tutorial like you never seen before... to make it clear once for all... cuz i get many troubles by now.. because of lack of information and deformations... in tutorials....

  On 9/7/2017 at 10:04 PM, K_K said:

Ask yourself are you hacking 32 or 64 bit? I'd go with the 64 bit if I were you. It looks as though r1 is storing the value but I'd have to have a look myself and see.

Expand  

binary was ARM64bit, but i thinned binary, and it works on iPhone 6s.. i found with iGG value its I64, and in lldb gave me this weird function, so i ask, what means this function??? why have codes like that???

-> 0x425cb4:  andlo  r6, r1, r0, lsr r11
    0x425cb8:  andlt  r6, r7, r0, lsr r3
    0x425cbc:  stceq  p8, c14, [r0, #-756]

  • Like 1
Posted
  On 9/7/2017 at 10:23 PM, Goran said:

am begginer and when i get basics, i will make tutorial like you never seen before... to make it clear once for all... cuz i get many troubles by now.. because of lack of information and deformations... in tutorials....

binary was ARM64bit, but i thinned binary, and it works on iPhone 6s.. i found with iGG value its I64, and in lldb gave me this weird function, so i ask, what means this function??? why have codes like that???

-> 0x425cb4:  andlo  r6, r1, r0, lsr r11
    0x425cb8:  andlt  r6, r7, r0, lsr r3
    0x425cbc:  stceq  p8, c14, [r0, #-756]

Expand  

What happens if you go to that offset?

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

    • Elysia: The Astral Fall v1.0.2 +4 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Elysia: The Astral Fall By Panthera Joint Stock Company
      Bundle ID: com.pantheraplay.projecth
      App Store Link: https://apps.apple.com/us/app/elysia-the-astral-fall/id6737166302?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Currencies -> Will increase instead of decrease.
        • Like
      • 4 replies
    • Elysia: The Astral Fall v1.0.2 +4 Cheats [ Damage & Defence ]
      Modded/Hacked App: Elysia: The Astral Fall By Panthera Joint Stock Company
      Bundle ID: com.pantheraplay.projecth
      App Store Link: https://apps.apple.com/us/app/elysia-the-astral-fall/id6737166302?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Currencies -> Will increase instead of decrease.
        • Like
      • 1 reply
    • Crunchyroll: Two Strikes v1.0.1 +2 Jailed Cheats [ Unlocked ]
      Modded/Hacked App: Crunchyroll: Two Strikes By Crunchyroll, LLC
      Bundle ID: com.crunchyroll.gv.twostrikes
      App Store Link: https://apps.apple.com/us/app/crunchyroll-two-strikes/id6742846993?uo=4

       


      🤩 Hack Features

      - God Mode *Online Untested*
      -- Full Game Unlocked
      • 0 replies
    • Crunchyroll: Two Strikes v1.0.1 +2 Cheats [ Unlocked ]
      Modded/Hacked App: Crunchyroll: Two Strikes By Crunchyroll, LLC
      Bundle ID: com.crunchyroll.gv.twostrikes
      App Store Link: https://apps.apple.com/us/app/crunchyroll-two-strikes/id6742846993?uo=4

       
       

      🤩 Hack Features

      - God Mode *Online Untested*
      -- Full Game Unlocked
      • 0 replies
    • Galaxiga - Classic 80s Arcade v10.95 [ +7 Jailed ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Hack Features:

      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ]

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ] Easy To Win PvP NO Bannnn


      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/
        • Agree
        • Winner
        • Like
      • 52 replies
    • Galaxiga - Classic 80s Arcade v10.95 [ +7 Cheats ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


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


      Hack Features:
      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ] Maybe Effect PvP 

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ]

      Not3:- Don't Abuse The Hack Incase Banned Lower Chances Maybe


      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
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 86 replies
    • What Duck v1.0.54 [ +6 Cheats ] Currency Max
      Modded/Hacked App: What Duck By Nexelon inc.
      Bundle ID: com.nexelon.duckwars
      App Store Link: https://apps.apple.com/us/app/what-duck/id6744432301?uo=4

      🤩 Hack Features

      - ADS No [ Rewards Free ]

      - Currency

      - Resources

      - Battle Coins

      - Energy

      - Free Pass [ Claim Unlimited ]
        • Thanks
        • Winner
        • Like
      • 15 replies
    • What Duck v1.0.54 [ +6 Jailed ] Currency Max
      Modded/Hacked App: What Duck By Nexelon inc.
      Bundle ID: com.nexelon.duckwars
      App Store Link: https://apps.apple.com/us/app/what-duck/id6744432301?uo=4


      🤩 Hack Features

      - ADS No [ Rewards Free ]

      - Currency

      - Resources

      - Battle Coins

      - Energy

      - Free Pass [ Claim Unlimited ]
        • Agree
        • Thanks
        • Like
      • 26 replies
    • Merge Cruise: Mystery Puzzle v0.36.460 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Merge Cruise: Mystery Puzzle By STUDIO PEERPLAY GAMES LTD
      Bundle ID: com.peerplay.megamerge
      iTunes Store Link: https://apps.apple.com/us/app/merge-cruise-mystery-puzzle/id6459056553?uo=4
       

      🤩 Hack Features

      - Cash
      - Energy

        • Agree
        • Haha
        • Thanks
        • Like
      • 20 replies
    • Merge Cruise: Mystery Puzzle v0.36.460 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Merge Cruise: Mystery Puzzle By STUDIO PEERPLAY GAMES LTD
      Bundle ID: com.peerplay.megamerge
      iTunes Store Link: https://apps.apple.com/us/app/merge-cruise-mystery-puzzle/id6459056553?uo=4
       

      🤩 Hack Features

      - Cash
      - Energy

        • Winner
        • Like
      • 23 replies
    • ELEMENTAL: 2D MMORPG v161.1 +4 Jailed Cheats
      Modded/Hacked App: ELEMENTAL: 2D MMORPG By DAERI SOFT
      Bundle ID: com.daerigame.elemental
      iTunes Store Link: https://apps.apple.com/us/app/elemental-2d-mmorpg/id6455983161?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
      - Reward Multiplier
      - Gold Multiplier
      - EXP Multiplier


      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@iosgods.com'.
      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
      • 232 replies
    • Survivor!.io v4.0.2 +4 Jailed Cheats
      Modded/Hacked App: Survivor!.io By HABBY PTE. LTD.
      Bundle ID: com.dxx.firenow
      iTunes Store Link: https://apps.apple.com/us/app/survivor-io/id1528941310?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
      - Never Die
      - No Skills Cooldown
      - Infinite Magnet


      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@iosgods.com'.
      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
      • 677 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