Jump to content

H5GG Full Tutorial [Offset Patching + Hooking] for Non-Jailbroken/Jailbreak Devices !


123 posts in this topic

Recommended Posts

2 hours ago, Happy Secret said:

Not completely get it. I have the H5GG hook script loaded and called.ย 

It already hooked on the instruction I want.ย 

I am working on mod menu and want to see if I can turn on/off H5GG Hook.

As you know, the H5Frida script cannot directly communicate with the outside Javascript. It can only do communication based on Send/Recv function.ย 

I have no idea how to pass the "Boolean Switch" from the mod menu to H5Frida script.

Frankly, I believe it is already registered in Frida. Changing the H5Frida script after it is loaded to Frida, might not help. I am not sure.ย 

If I want to change anything, I might need to override the hook or update the hook function in H5Frida.ย  Or you mean hook another rpc.exports to override the other one? Will it cause repatch of binary?ย 

Or I need to re-initiate a new H5Frida instance? Or unload the script and load a new one?ย 

I have school exams atm, but after i will make a part 2 with mod menu and switch on/off for offset patch and hook :)ย 

But no, you donโ€™t need to create another instance of frida or unload the script.ย 

You need to create an rpc.export that hold your hooks like this :ย 

// i donโ€™t have iG iDE on iOS sadly

rpc.exports.healthHack= function(context){ย  ย 

//your hook

}

ย 

and after you need to create a HTML element to get if there is a button clicked or slider

//here you call it

script.call("healthHack");

Updated by ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ
  • Like 1
Link to comment
Share on other sites

16 minutes ago, ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ said:

I have school exams atm, but after i will make a part 2 with mod menu and switch on/off for offset patch and hook :)ย 

But no, you donโ€™t need to create another instance of frida or unload the script.ย 

You need to create an rpc.export that hold your hooks like this :ย 

// i donโ€™t have iG iDE on iOS sadly

rpc.exports.healthHack= function(context){ย  ย 

//your hook

}

ย 

and after you need to create a HTML element to get if there is a button clicked or slider

//here you call it

script.call("healthHack");

Do you mean I have two exports?

1. With hack, say healthHack (including hook detail for hack, apply on hook address, say 0xABC)ย 

2. Without hack, say NoHealthHackย (blank hook function not modify anything, apply on hook address, say 0xABC)

In my HTML element,

- When turn on hack. I call script.call("healthHack");

- When turn off hack, I call script.call("NoHealthHack);

As both hook apply on same Hook address, it will override with each other? It renders the hack turn on and off?

Can't wait to see your second part Tutorial.

ย 

By the way, my new hack on Dungreed with H5GG Mod Menu and Hook. I am preparing a Specific Tutorial for this Hack as well. Below is the Hack, the relate tutorial will upload a bit later. Very busy recently.

ย 

Updated by Happy Secret
Link to comment
Share on other sites

19 minutes ago, Happy Secret said:

Do you mean I have two exports?

1. With hack, say healthHack (including hook detail for hack, apply on hook address, say 0xABC)ย 

2. Without hack, say NoHealthHackย (blank hook function not modify anything, apply on hook address, say 0xABC)

In my HTML element,

- When turn on hack. I call script.call("healthHack");

- When turn off hack, I call script.call("NoHealthHack);

As both hook apply on same Hook address, it will override with each other? It renders the hack turn on and off?

Can't wait to see your second part Tutorial.

ย 

By the way, my new hack on Dungreed with H5GG Mod Menu and Hook. I am preparing a Specific Tutorial for this Hack as well. Below is the Hack, the relate tutorial will upload a bit later. Very busy recently.

ย 

Yeah itโ€™s the idear, but the script.call need to be called only after a if, otherwise it will be constantly called even if you called the NoHealthHack hook.ย 

so itโ€™s here where you can check if button has been clicked, and if yes, then call HealthHack, else call NoHealthHack.

ย 

Nice, gonna see the hack right now

๐Ÿ™‚

Edit ย : here is a link where it uses a button action to call a functionย https://github.com/H5GG/H5GG/blob/main/examples-HTML5/H5DrawEsp(3.0).html

it will draw an ESP example, but you can replace it with your hook, you may need to include frida stuffย 

Updated by ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ
  • Like 1
Link to comment
Share on other sites

39 minutes ago, ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ said:

Yeah itโ€™s the idear, but the script.call need to be called only after a if, otherwise it will be constantly called even if you called the NoHealthHack hook.ย 

so itโ€™s here where you can check if button has been clicked, and if yes, then call HealthHack, else call NoHealthHack.

ย 

Nice, gonna see the hack right now

๐Ÿ™‚

Edit ย : here is a link where it uses a button action to call a functionย https://github.com/H5GG/H5GG/blob/main/examples-HTML5/H5DrawEsp(3.0).html

it will draw an ESP example, but you can replace it with your hook, you may need to include frida stuffย 

I will definitely try it out when I have time.

For ESP, I still havenโ€™t got my first ESP working. Not sure why, I keep receiving Invalid Camera. Haha.

It will be great to see more from your coming Tutorial.

  • Like 1
Link to comment
Share on other sites

On 2/9/2023 at 9:34 PM, ๐“„ผ . f v c k . ๐“„น said:

gonna see once iโ€™m at home, but it should work, i tested it on sausage mangeย 

I have to put the mode menu code in html, but I don't know how to put the Offset , it's a bit complicated. Can you please explain where to put the Offset and link it in the button?

ย Happy Secret

๐“„ผ . f v c k . ๐“„น

here is the mod
https://github.com/H5GG/H5GG/blob/main/examples-HTML5/H5Menu(DarkStyle).html

ย 

Updated by Alihackali
Link to comment
Share on other sites

4 hours ago, Alihackali said:

I have to put the mode menu code in html, but I don't know how to put the Offset , it's a bit complicated. Can you please explain where to put the Offset and link it in the button?

ย 

ย 

ย Happy Secret

๐“„ผ . f v c k . ๐“„น

here is the mod
https://github.com/H5GG/H5GG/blob/main/examples-HTML5/H5Menu(DarkStyle).html

ย 

You would need to create an HTML script element, and paste all frida code stuff to make it work. I will cover this in a second part of this tutorial series.

Link to comment
Share on other sites

6 hours ago, ๐“„ผ . f v c k . ๐“„น said:

You would need to create an HTML script element, and paste all frida code stuff to make it work. I will cover this in a second part of this tutorial series.

okay but please if u can make it soon ย and thanksย 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Idle Ninja Online v2312 Cheats +17
      Modded/Hacked App: Idle Ninja Online By Puzzle Monsters Inc.
      Bundle ID: com.puzzlemonsters.growninja
      iTunes Store Link: https://apps.apple.com/us/app/idle-ninja-online/id1559182313?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:
      - fast farm (attack full map & hide some shuriken)ย 
      - no cool skill
      - no need mana
      - speed
      - wall hack
      - increase damageย 
      -ย increase damage v2ย 
      - Always ultimate skill???? (not test, need tester)ย 
      - fast shot
      - penetration
      - multi shot
      - far FOV (in setting)
      - can move while attackย 
      - reduce animationย 
      - skin dame (need show damege skin in setting, from 1 to 23)
      - antiban (not sure 100%)ย 
        • Haha
        • Winner
      • 96 replies
    • Idle Ninja Online v2312 Cheats +17
      Modded/Hacked App: Idle Ninja Online By Puzzle Monsters Inc.
      Bundle ID: com.puzzlemonsters.growninja
      iTunes Store Link: https://apps.apple.com/us/app/idle-ninja-online/id1559182313?uo=4


      Hack Features:
      - no cool skill
      - no need mana
      - speed
      - max level
      - fast shot
      - penetration
      - multi shot
      - far FOV (in setting)
      - can moveย 
      - reduce animation
      - skin dame (need show damege skin in setting, from 1 to 23)
      - antiban (not sure 100%)ย 


      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 679 replies
    • Pocket Champs PVP Racing Games Cheats v5.2.1 +2
      Modded/Hacked App: Pocket Champs: 3D Racing Games By MADBOX
      Bundle ID: com.pocketchamps.game
      iTunes Store Link: https://apps.apple.com/us/app/pocket-champs-3d-racing-games/id1542776143?uo=4


      Hack Features:
      - Free Store (not Free iAP) -- Negative value will reset to 0 on launch
      - Infinite Coins & Gems

      iOS Hack Download Link: https://iosgods.com/topic/165006-pocket-champs-3d-racing-games-cheats-v318-2/
        • Agree
        • Like
      • 161 replies
    • Idle Theme Park - Tycoon Game Cheats v6.1.1 +1
      Modded/Hacked App: Idle Theme Park - Tycoon Game by Digital Things Sociedad Limitada
      Bundle ID: com.codigames.idle.theme.park.tycoon
      iTunes Store Link: https://apps.apple.com/us/app/idle-theme-park-tycoon-game/id1460772578?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash


      iOS Hack Download Link: https://iosgods.com/topic/116320-arm64-idle-theme-park-tycoon-game-cheats-v210-1/
        • Informative
        • Thanks
        • Winner
        • Like
      • 531 replies
    • Gran Saga Idle:KNIGHTSxKNIGHTS Cheats v1.18.0 +2
      Modded/Hacked App: Gran Saga Idle:KNIGHTSxKNIGHTS By Kakao Games Corp.
      Bundle ID: com.piedpixels.gransagaidle
      iTunes Store Link: https://apps.apple.com/us/app/gran-saga-idle-knightsxknights/id6482985104?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense


      iOS Hack Download Link: https://iosgods.com/topic/182761-gran-saga-idleknightsxknights-cheats-v101-2/
        • Agree
        • Winner
      • 225 replies
    • Toram Online v4.0.51 - [ Custom Move Speed & More ]
      Modded/Hacked App: Toram Online By ASOBIMO,Inc.
      Bundle ID: com.asobimo.toramonline
      iTunes Store Link: https://itunes.apple.com/us/app/toram-online/id988683886?mt=8&uo=4&at=1010lce4
      ย 

      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate or Substitute.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - Custom Move Speed
      - God Modeย 
      - Fast Attack Speed
      - Fast Cast Speed
      - Always Critical Chance
      - Never Miss Hitย 
      - Mobs/Bosses Can't Avoid & Guardย 
      - Quick Draw
      - Armor Break
      - Magic Wall - Stun + Full Map Hackย 
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 2,511 replies
    • Operate Now: Hospital Cheats v1.58.5 +1
      Modded/Hacked App: Operate Now: Hospital by SPIL Games
      Bundle ID: com.spilgames.OperateNow2
      iTunes Store Link: https://itunes.apple.com/us/app/operate-now-hospital/id1136678102?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Heart Reward Instead of Cash


      Hack Download Link: https://iosgods.com/topic/97086-arm64-operate-now-hospital-cheats-v1312-1/
      • 279 replies
    • Slayer Legend Cheats v600.0.0 +3
      Modded/Hacked App: Slayer Legend By GEAR2
      Bundle ID: com.gear2.growslayer
      iTunes Store Link: https://apps.apple.com/us/app/slayer-legend/id1635712706?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Freeze Currencies


      iOS Hack Download Link: https://iosgods.com/topic/186299-slayer-legend-cheats-v50084-3/
        • Like
      • 55 replies
    • Immortal Rising Cheats v2.4.7 +4
      Modded/Hacked App: Immortal Rising By MOBIRIX
      Bundle ID: com.badbeans.DarkIdle
      iTunes Store Link: https://apps.apple.com/us/app/immortal-rising/id1588863558?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill
      - PREMIUM
      - Freeze Currencies*

      *Abuse = Ban


      iOS Hack Download Link: https://iosgods.com/topic/178921-immortal-rising-cheats-v222-4/
        • Winner
        • Like
      • 159 replies
    • Demon Squad: Idle RPG Cheats v1.60 +2
      Modded/Hacked App: Demon Squad: Idle RPG By SuperPlanet corp.
      Bundle ID: com.superplanet.demonsquad
      iTunes Store Link: https://apps.apple.com/us/app/demon-squad-idle-rpg/id6504470907?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense


      iOS Hack Download Link: https://iosgods.com/topic/185576-demon-squad-idle-rpg-cheats-v139-2/
      • 67 replies
    • Delusion: Tactical Idle RPG Cheats v2.0.4 +3
      Modded/Hacked App: Delusion: Tactical Idle RPG By SuperPlanet corp.
      Bundle ID: com.superplanet.delusion
      iTunes Store Link: https://apps.apple.com/us/app/delusion-tactical-idle-rpg/id6496342351?uo=4


      Hack Features:
      - Multiply Attack
      - God Mode
      - Freeze Currencies

      NOTE: Do not abuse or buy ViP just for this cheats


      iOS Hack Download Link: https://iosgods.com/topic/183614-delusion-tactical-idle-rpg-cheats-v1027-3/
      • 53 replies
    • Candy Crush Saga Cheats v1.291.0 +2
      Modded/Hacked App: Candy Crush Saga By King
      Bundle ID: com.midasplayer.apps.candycrushsaga
      iTunes Store Link: https://itunes.apple.com/us/app/candy-crush-saga/id553834731?mt=8&uo=4&at=1010lce4




      Hack Features:
      - Infinite Lifeย (Turn on when you running out of life)
      - Infinite Booster (Won't subtract when use)
      ย 

      Hack Download Link: https://iosgods.com/topic/72296-arm64-candy-crush-saga-cheats-v11330-2-iosgods-exclusive/


      Credits:
      - @Laxus
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 4,749 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