liner0211 / HuyJIT-ModMenu

Huy JIT Mod Menu is a template menu for iOS that supported patching offsets/hexes for Non-jailbreak with JIT and fix patch for Dopamine jailbreak using IMGUI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HuyJIT-ModMenu

Huy JIT Mod Menu is a template menu for iOS that supported patching offsets/hexes for Non-jailbreak with JIT and fix patch for Dopamine jailbreak using IMGUI, also working with other jailbreak!

IMGUI Template Preview

About

  • I'm using vm_writeData.h to patch the offsets/hexes
  • Kopycat some code from joeyjurjens
  • Also bring encryption from joeyjurjens template too
  • Hook by DobbyHook
  • Fan boi of 五等分の花嫁

Installation

  • Using theos for compilation
  • Add THEOS_PACKAGE_SCHEME = rootless to support Dopamine if you want

Feature

  • On/Off switch for patching offsets
  • Support Hooking (by DobbyHook)
  • Added getRealOffset(), you can now use it to read the address data if you want to

Usage

3 fingers double tap to screen to open menu, 2 fingers double tap to disable menu

Editing these in ImGuiDrawView.mm

  • Patching offset on default binary NULL
vm(ENCRYPTOFFSET("0x10517A154"), strtoul(ENCRYPTHEX("0xC0035FD6"), nullptr, 0));
  • Patching offset on UnityFramework
vm_unity(ENCRYPTOFFSET("0x517A154"), strtoul(ENCRYPTHEX("0x360080D2"), nullptr, 0));

You can change this to anything you want to patch on the line where I noted in 5Toubun/NakanoYotsuba.h. Normally it's UnityFramework but some games like LoL WildRift is FEProj

  • Hooking a static address (both NULL and UnityFramework)
void (*huy)(void *instance);
void _huy(void *instance){
    huy(instance);
}

DobbyHook((void *)(getRealOffset(ENCRYPTOFFSET("0x5F145F8"))), (void *)_huy, (void **)&huy);
  • Font using for this menu is Honkai Star Rail font (English only)

Pull request button is on the top, you can contribute to this project if you want

Credits

About

Huy JIT Mod Menu is a template menu for iOS that supported patching offsets/hexes for Non-jailbreak with JIT and fix patch for Dopamine jailbreak using IMGUI

License:MIT License


Languages

Language:C++ 83.3%Language:C 12.4%Language:Objective-C 3.0%Language:Objective-C++ 1.3%Language:Makefile 0.0%