Jump to content

Some questions with reversing asm via ida


Go to solution Solved by Theo1357,

11 posts in this topic

Recommended Posts

Posted

Got a few questions, Still new to decompiling stuff and reversing so yeah.

I will list them below.

 

1.

When I am reversing a function and it calls the CityBalance$$GetUpgradePrice then (I am guessing) it stores the returned value in D8 from D0 right? 

image.png

 

2.

When decompiling functions I sometimes see var_whateverhere = 0xwhateverHere but it isnt a field offset of anykind, what do they do and how can I understand them? (I included some of the start asm of that function to help you understand if needed)

image.png

 

3.

When wanting to hook onto functions, to modify the field offset (in this case we will use 0x10 = int Coins) would I do something like FunctionOffset + 0x10 to get the fieldoffest variable to then read/write toward that pointed to object?

 

Like I said I am still new to decompiling stuff and reversing, please excuse me if this is easy for you. 

  • Solution
Posted

1. Yes
2. I gusse it is offset in stack, skip it
3. No, you must use pointer class + 0x10

void (*old_PersistentPlayerUpdate)(void* _this) = nil;
void PersistentPlayerUpdate(void* _this) {
   old_PersistentPlayerUpdate(_this);
   if ([menu isSwitchWithIdentifierActive:@"currency"]) {
     void *playerData = *(void **)((uint64_t)_this + 0x18);
     void *Container = *(void **)((uint64_t)playerData + 0x30);
     void *Player = *(void **)((uint64_t)Container + 0x10);
     void *player = *(void **)((uint64_t)Player + 0x10);
    *(int *)((uint64_t)player + 0x134) = 999999999;
    *(int *)((uint64_t)player + 0x138) = 999999999;
    *(int *)((uint64_t)player + 0x13C) = 999999999;
    *(int *)((uint64_t)player + 0x140) = 999999999;
  }
}

MSHookFunction((void *)getRealOffset(APEncryptHex(0x013BE034)), (void *)PersistentPlayerUpdate, (void **)&old_PersistentPlayerUpdate);

  • Like 2
Posted
4 minutes ago, tien0246 said:

1. Yes
2. I gusse it is offset in stack, skip it
3. No, you must use pointer class + 0x10

void (*old_PersistentPlayerUpdate)(void* _this) = nil;
void PersistentPlayerUpdate(void* _this) {
   old_PersistentPlayerUpdate(_this);
   if ([menu isSwitchWithIdentifierActive:@"currency"]) {
     void *playerData = *(void **)((uint64_t)_this + 0x18);
     void *Container = *(void **)((uint64_t)playerData + 0x30);
     void *Player = *(void **)((uint64_t)Container + 0x10);
     void *player = *(void **)((uint64_t)Player + 0x10);
    *(int *)((uint64_t)player + 0x134) = 999999999;
    *(int *)((uint64_t)player + 0x138) = 999999999;
    *(int *)((uint64_t)player + 0x13C) = 999999999;
    *(int *)((uint64_t)player + 0x140) = 999999999;
  }
}

MSHookFunction((void *)getRealOffset(APEncryptHex(0x013BE034)), (void *)PersistentPlayerUpdate, (void **)&old_PersistentPlayerUpdate);

Thank you and thank you alot more for providing a code sample. 

Posted
On 6/2/2024 at 9:55 AM, tien0246 said:

3. No, you must use pointer class + 0x10

Just to be 100% sure:

The offset of the class would be the pointer class in this case correct?
image.png

So 0x32B87DC + 0x14 (example)

Posted
38 minutes ago, carpoa said:

Just to be 100% sure:

The offset of the class would be the pointer class in this case correct?
image.png

So 0x32B87DC + 0x14 (example)

Nope, pointer not offset.

If you wanna hack field in ida, try find somewhere like

str w9, [x19, #0x10]
register w9 hold your coin, find at the top somewhere write the value in w9

Posted
1 minute ago, tien0246 said:

Nope, pointer not offset.

If you wanna hack field in ida, try find somewhere like

str w9, [x19, #0x10]
register w9 hold your coin, find at the top somewhere write the value in w9

ic mk. Could you just explain using pointers and getting them please? Thanks for your help :thankyou:

Posted
31 minutes ago, carpoa said:

ic mk. Could you just explain using pointers and getting them please? Thanks for your help :thankyou:

 

On 6/2/2024 at 3:55 PM, tien0246 said:

1. Yes
2. I gusse it is offset in stack, skip it
3. No, you must use pointer class + 0x10

void (*old_PersistentPlayerUpdate)(void* _this) = nil;
void PersistentPlayerUpdate(void* _this) {
   old_PersistentPlayerUpdate(_this);
   if ([menu isSwitchWithIdentifierActive:@"currency"]) {
     void *playerData = *(void **)((uint64_t)_this + 0x18);
     void *Container = *(void **)((uint64_t)playerData + 0x30);
     void *Player = *(void **)((uint64_t)Container + 0x10);
     void *player = *(void **)((uint64_t)Player + 0x10);
    *(int *)((uint64_t)player + 0x134) = 999999999;
    *(int *)((uint64_t)player + 0x138) = 999999999;
    *(int *)((uint64_t)player + 0x13C) = 999999999;
    *(int *)((uint64_t)player + 0x140) = 999999999;
  }
}

MSHookFunction((void *)getRealOffset(APEncryptHex(0x013BE034)), (void *)PersistentPlayerUpdate, (void **)&old_PersistentPlayerUpdate);

Using hook like it

  • Like 1
Posted
3 minutes ago, tien0246 said:

 

Using hook like it

ohh ok gotcha.

Reading the code I'm assuming _this is the pointer (I guess you could say that) for the class it is within right? I just want to be sure.

Posted
9 minutes ago, carpoa said:

ohh ok gotcha.

Reading the code I'm assuming _this is the pointer (I guess you could say that) for the class it is within right? I just want to be sure.

_this is poiter class

Posted
1 minute ago, tien0246 said:

_this is poiter class

gotcha right that makes sense thank you.

  • Like 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

    • Arcado Battle: MOBA v0.1.6 [ +4 Cheats ] AI Disable
      Modded/Hacked App: Arcado Battle: MOBA By Gape Labs Private Limited
      Bundle ID: com.gapelabs.arcadobattle
      App Store Link: https://apps.apple.com/us/app/arcado-battle-moba/id6752850317?uo=4

      🤩 Hack Features

      - Add Arcanium / Visual But Works
      - Disable AI / 1
      - Disable Opponent / 2
      - Damage Multi
      • 0 replies
    • Arcado Battle: MOBA v0.1.6 [ +4 Jailed ] AI Disable
      Modded/Hacked App: Arcado Battle: MOBA By Gape Labs Private Limited
      Bundle ID: com.gapelabs.arcadobattle
      App Store Link: https://apps.apple.com/us/app/arcado-battle-moba/id6752850317?uo=4

      🤩 Hack Features

      - Add Arcanium / Visual But Works
      - Disable AI / 1
      - Disable Opponent / 2
      - Damage Multi
      • 0 replies
    • Dust Survivors v0.0.5 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Dust Survivors By Rodrigo Laiz
      Bundle ID: com.sorolla.steamandbullets
      App Store Link: https://apps.apple.com/us/app/dust-survivors/id6762451724?uo=4

      🤩 Hack Features

      - Auto Win
      - ADD Coins
      - Heroes Unlocked
      • 0 replies
    • Dust Survivors v0.0.5 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Dust Survivors By Rodrigo Laiz
      Bundle ID: com.sorolla.steamandbullets
      App Store Link: https://apps.apple.com/us/app/dust-survivors/id6762451724?uo=4

      🤩 Hack Features

      - Auto Win
      - ADD Coins
      - Heroes Unlocked
      • 0 replies
    • Fox Shot: Number Run v1.2.0 [ +1 Cheats ] Damage Multi
      Modded/Hacked App: Fox Shot: Number Run By JSL ENTERTAINMENT CO., LTD.
      Bundle ID: com.jsl.entco.fox
      App Store Link: https://apps.apple.com/us/app/fox-shot-number-run/id6767464582?uo=4

      🤩 Hack Features

      - Damage Multi
      • 0 replies
    • Fox Shot: Number Run v1.2.0 [ +1 Jailed ] Damage Multi
      Modded/Hacked App: Fox Shot: Number Run By JSL ENTERTAINMENT CO., LTD.
      Bundle ID: com.jsl.entco.fox
      App Store Link: https://apps.apple.com/us/app/fox-shot-number-run/id6767464582?uo=4

      🤩 Hack Features

      - Damage Multi
      • 0 replies
    • Grand Tour +5 Mods [ Damage & Defence ]
      Mod APK Game Name: Grand Tour By PLUMERIA Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.plumeriagames.msr

       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Gold -> Will increase instead of decrease.
      - Unlimited Gems -> Will increase instead of decrease.
      • 0 replies
    • Penny & Flo: Home Renovation +2++ Mods [ Unlimited Everything ]
      Mod APK Game Name: Penny & Flo: Home Renovation By Tactile Games
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=dk.tactile.mansionstory

       

      🤩 Hack Features

      - Unlimited Everything -> Spend some.
      - Freeze Moves
      • 0 replies
    • War Survival : Last Shooter v0.1.6 [ +3 Cheats ] Currency Max
      Modded/Hacked App: War Survival : Last Shooter By HORUS ENTERTAINMENT LIMITED
      Bundle ID: com.horusent.war.survival.last.shooter
      App Store Link: https://apps.apple.com/us/app/war-survival-last-shooter/id6797393006?uo=4

      🤩 Hack Features

      - Auto ADS NO
      - ADD Gems
      - ADD Coins
      • 0 replies
    • War Survival : Last Shooter v0.1.6 [ +3 Jailed ] Currency Max
      Modded/Hacked App: War Survival : Last Shooter By HORUS ENTERTAINMENT LIMITED
      Bundle ID: com.horusent.war.survival.last.shooter
      App Store Link: https://apps.apple.com/us/app/war-survival-last-shooter/id6797393006?uo=4

      🤩 Hack Features

      - Auto ADS NO
      - ADD Gems
      - ADD Coins
      • 1 reply
    • I'M Dead +6 Jailed Cheats
      Modded/Hacked App: I'M Dead By NADDIC GAMES Co Ltd.
      Bundle ID: com.naddic.iamdead
      App Store Link: https://apps.apple.com/us/app/im-dead/id6767488876?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

      - Damage Multiplier
      - Defense Multiplier
      - Currency Multiplier
      - Experience Multiplier
      - Move Speed Multiplier
      - No ADS

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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 8: 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. 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 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
      • 13 replies
    • Guidus One +4 Jailed Cheats
      Modded/Hacked App: 가이더스 원 By izzle Inc.
      Bundle ID: com.izzle.go
      App Store Link: https://apps.apple.com/kr/app/%EA%B0%80%EC%9D%B4%EB%8D%94%EC%8A%A4-%EC%9B%90/id6752554540?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

      - Damage Multiplier
      - Defense Multiplier
      - Currency Multiplier
      - No ADS

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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 8: 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. 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 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
      • 8 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