Jump to content

onlyu1106

Member
  • Posts

    16
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPad (5th Generation)
  • iOS Version
    12.2.0
  • Jailbroken
    No
  • Android Device
    MiMax 3
  • Android Version
    8.1
  • Rooted
    No

Recent Profile Visitors

136 profile views

onlyu1106's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Collaborator
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

1

Reputation

  1. public int CurMissionId { [Address(RVA = "0x16CCFF0", Offset = "0x16CCFF0", VA = "0x16CCFF0")] get { return 0; } [Address(RVA = "0x16CCFF8", Offset = "0x16CCFF8", VA = "0x16CCFF8")] set {} } // Token: 0x060068A9 RID: 26793 RVA: 0x00002050 File Offset: 0x00000250 [Address(RVA = "0x16CD000", Offset = "0x16CD000", VA = "0x16CD000")] public void Init() { } // Token: 0x060068AA RID: 26794 RVA: 0x00002050 File Offset: 0x00000250 [Address(RVA = "0x16CD474", Offset = "0x16CD474", VA = "0x16CD474")] private void UpdateCurMissionId(object[] param) { } [FieldOffset(Offset = "0x0")] private static MissionManager _instance; // Token: 0x040037C2 RID: 14274 [FieldOffset(Offset = "0x8")] private int _curMissionId; And here's my C++ int (*_Get_Mission_Id)(void *MissionInstance) = (int (*)(void *))getRealOffset(0x16CCFF0); void(*_MissionManager_Update)(void *instance); void MissionManager_Update(void *instance) { if(instance != NULL) { LOGI("[MissionManager Update]"); int MissionId_1 = _Get_Mission_Id(instance); LOGI("MIssion Id_1 : %d", MissionId_1); int MissionId_2 = *(int*)((uint64_t)instance + 0x8); LOGI("MIssion Id_2 : %d", MissionId_2); } _MissionManager_Update(instance); } MSHookFunction((void*)getRealOffset(0x16CD474), (void*)MissionManager_Update, (void**) &_MissionManager_Update); But It's always return I/Debug (23541): MIssion Id_1 : -1 I/Debug (23541): MIssion Id_2 : -1 How can I get this fields ?
  2. I saw but it's still recompile the apk, not working at runtime
  3. I followed steeps here: I built a share library and wanna hook / inject into runtime process without build APK or mod APK, I found https://github.com/asLody/AndHook maybe It's helpful, but I dont know how does it work without build / mob APK I tried to research all in Google but no ways for me Sorry if my English isnt good.
×
  • 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