Jump to content

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


123 posts in this topic

Recommended Posts

Hello Hello,

Here is finally a tutorial to patch or even hook on Non-JB/JB.ย 

This tutorial will cover the non-JB way because that's what's interesting :happydance:, but this way can work on JB.

ย 

We will see the complete installation of H5GG, and an example of offset patching, and another with hooking. The source code will also be provided. Nothing better to feel in paradise.ย PepeCoffee

ย 

Requirements:
-ย PC (or a way of managing iPA files)
-ย Sideloadly
- 3u Tools to view the app documents
- Subway Surfer

ย 

  • 1)

Since Critical Strike has serious issues with their games, I can't base my tutorial on this game. So let's go on a new one : Subway Surfer

First, download the Subway Surfer iPA :ย HERE

Thenย we will need 3 other files specific to H5GG for offset patching / hooking:

Simply see the instruction :ย HERE

You can delete the "hookme.test.dylib" cuz we don't need it.

You should have this :

ย xnHQkxz.png

Now, simply extract the iPA, copy the 3 files and move to the .app folder and paste it there. It should look like this :

P15AzgU.png

Now simply ZIP the Payload, and rename it To WhatEver.ipa

Now we need to download the .deb that we gonna inject to the iPAย :ย HERE

Now, we gonna need to Sideload the iPA WITH these settings :

sPQGERy.png

We will need to use File Sharing later in the tutorial, so enable it. Don't forget to inject the H5GG.deb file.

We did like 50% of the work now heheย PepeBusiness

ย 

  • 2)

Now, we gonna code (or Ctrl+C, Ctrl+V) :

I use EasyHTML app on the AppStore to code it.

Offset Patching/Hooking on H5GG is done by injecting a .js script so, let's write it. you have a sample:ย HERE

Below is an edited version to work on Subway Surfer 3.6.0.

Offset Patching codeย :

h5gg.require(7.9); 
var h5frida=h5gg.loadPlugin("h5frida", "h5frida-15.1.24.dylib");
if(!h5frida) throw "Failed to load h5frida plugin";

function ActiveCodePatch(fpath, vaddr, bytes) {
    if(!h5frida.ActiveCodePatch(fpath, vaddr, bytes)) {
        var result = h5frida.ApplyCodePatch(fpath, vaddr, bytes);
        alert(fpath+":0x"+vaddr.toString(16)+"-ไฟฎๆ”นๅคฑ่ดฅ!\n" + fpath+":0x"+vaddr.toString(16)+"-PatchFailed!\n" + result);return false;
    } return true;
}
function DeactiveCodePatch(fpath, vaddr, bytes) {
    return h5frida.DeactiveCodePatch(fpath, vaddr, bytes);
}

/*HERE IS OUR OFFSET PATCHING CODE*/

//public bool get_CanJump() -> 0x1B39598
//Enable a hack at 0x1B39598 with HEX : 200080D2C0035FD6
ActiveCodePatch("Frameworks/UnityFramework.framework/UnityFramework", 0x1B39598, "200080D2C0035FD6");

Well here we arn't using a template, we just want to patch our offset so we will enable it by default.

If you are using a template, just make a if statement, and use this code to disable the Offset Patching :

//this is just a POC
if (switch_Jump) {
    ActiveCodePatch("Frameworks/UnityFramework.framework/UnityFramework", 0x1B39598, "200080D2C0035FD6");
} else {
    //when you desactivate a patch, it need to be the same HEX that you use to enable the hack.
    DeactiveCodePatch("Frameworks/UnityFramework.framework/UnityFramework", 0x1B39598, "200080D2C0035FD6");
}

Now, inject the script with H5GG by clicking the "Scripts" button, and select the JavaScript file from there.

Information

The first JS run is just to prepare the Framework file and get a new one. This step is mandatory.

More details under.

Once this done, you should see this "error" (my offset is not the same on the picture, its normal i was testing another one. Ignore it):

ArBrUt9.jpg

A big alert for just telling us to overwrite a file LUL, dont panic haha we gonna fix it !

If you want to replace the file without PC :

In theory, just change the UnityFramework given by H5GG with the old one. detailed step :

So this is where we need 3uTools.ย Go to the applications on your phone using 3utools, and select subway surfer then "view" (because you normally activated File Sharing). you should be able to see this :

ehqJd4H.png

Navigate to the directory until you find the UnityFramework file. then copy it, and replace it with the one of the Playload folder of the iPA. like this :

We don't see it on the pic, but the file patch is :

Payload\SubwaySurf.app\Frameworks\UnityFramework.framework

4052GYg.png

Ofc, delete the old one. i kept it & renamed just for demonstration.

Then, simply delete the app on your device, repack the new Payload folder and again Sideload the new iPA with the edited UnityFramework. you don't need to enable file sharing exept if you want to patch a new offset. but no need if you follow the tutorial

Then run the script again on the new sideloaded iPA, and you should be able to Jump every time due to the Offset Patchingย :happydance:.

Now, lets go to Hooking !

I will make a new script with this content (an edited version of the github one)ย :

h5gg.require(7.9); //่ฎพๅฎšๆœ€ไฝŽ้œ€ๆฑ‚็š„H5GG็‰ˆๆœฌๅท//min version support for H5GG
var h5frida=h5gg.loadPlugin("h5frida", "h5frida-15.1.24.dylib");
if(!h5frida) throw "ๅŠ ่ฝฝh5fridaๆ’ไปถๅคฑ่ดฅ\n\nFailed to load h5frida plugin";
if(!h5frida.loadGadget("frida-gadget-15.1.24.dylib"))
    throw "ๅŠ ่ฝฝfrida-gadgetๅฎˆๆŠคๆจกๅ—ๅคฑ่ดฅ\n\nFailed to load frida-gadget daemon module";
var procs = h5frida.enumerate_processes();
if(!procs || !procs.length) throw "fridaๆ— ๆณ•่Žทๅ–่ฟ›็จ‹ๅˆ—่กจ\n\nfrida can't get process list";
var pid = -1; //pid=-1, ไฝฟ็”จ่‡ช่บซ่ฟ›็จ‹ๆฅ่ฐƒ็”จOC/C/C++ๅ‡ฝๆ•ฐ, ไนŸๅฏไปฅ้™„ๅŠ ๅˆฐๅ…ถไป–APP่ฟ›็จ‹ๆฅ่ฐƒ็”จ
var found = false;
for(var i=0;i<procs.length;i++) {
    if(procs[i].pid==pid) {
        if(procs[i].name!='Gadget') throw "ๅ…่ถŠ็‹ฑๆต‹่ฏ•่ฏทๅธ่ฝฝfrida-server็š„deb็„ถๅŽ้‡ๅฏๅฝ“ๅ‰APP\nFor non-jailbreak tests, please uninstall the frida-server deb and restart the current APP";
        found = true;
    }
}
if(!found) throw "fridaๆ— ๆณ•ๆ‰พๅˆฐ็›ฎๆ ‡่ฟ›็จ‹\n\nfrida cannot find the target process";
var session = h5frida.attach(pid);
if(!session) throw "frida้™„ๅŠ ่ฟ›็จ‹ๅคฑ่ดฅ\n\nfrida attach process failed";

//็›‘ๅฌfrida็›ฎๆ ‡่ฟ›็จ‹่ฟžๆŽฅ็Šถๆ€, ๆฏ”ๅฆ‚ๅผ‚ๅธธ้€€ๅ‡บ
session.on("detached", function(reason) {
    alert("frida็›ฎๆ ‡่ฟ›็จ‹ไผš่ฏๅทฒ็ปˆๆญข(frida target process session terminated):\n"+reason);
});

var frida_script_line = frida_script("getline"); //safari console will auto add 2 line
var frida_script_code = "("+frida_script.toString()+")()"; //ๅฐ†frida่„šๆœฌ่ฝฌๆขๆˆๅญ—็ฌฆไธฒ
var script = session.create_script(frida_script_code); //ๆณจๅ…ฅfrida็š„js่„šๆœฌไปฃ็ 

if(!script) throw "fridaๆณจๅ…ฅ่„šๆœฌๅคฑ่ดฅ\n\nfrida inject script failed!";
script.on('message', function(msg) {
    if(msg.type=='error') {
        script.unload(); //ๅฆ‚ๆžœ่„šๆœฌๅ‘็”Ÿ้”™่ฏฏๅฐฑๅœๆญขfrida่„šๆœฌ
        try {if(msg.fileName=="/frida_script.js") msg.lineNumber += frida_script_line-1;} catch(e) {}
        if(Array.isArray(msg.info)) msg.info.map(function(item){ try { if(item.fileName=="/frida_script.js")
            item.lineNumber += frida_script_line-1;} catch(e) {}; return item;});
        var errmsg = JSON.stringify(msg,null,1).replace(/\/frida_script\.js\:(\d+)/gm,
            function(m,c,o,a){return "/frida_script.js:"+(Number(c)+frida_script_line-1);});
        alert("frida(่„šๆœฌ้”™่ฏฏ)script error:\n"+errmsg.replaceAll("\\n","\n"));
    }
    
    if(msg.type=='send')
        alert("frida(่„šๆœฌๆถˆๆฏ)srcipt msg:\n"+JSON.stringify(msg.payload,null,1));
    if(msg.type=='log')
        alert("frida(่„šๆœฌๆ—ฅๅฟ—)script log:\n"+msg.payload);
});

if(!script.load()) throw "fridaๅฏๅŠจ่„šๆœฌๅคฑ่ดฅ\n\nfrida load script failed"; //ๅฏๅŠจ่„šๆœฌ
function frida_script() { if(arguments.length) return new Error().line; 
                         
                         
            /*HERE IS OUR HOOKING*/
                         
                         
var Jump = h5frida.StaticInlineHookFunction("Frameworks/UnityFramework.framework/UnityFramework",
    0x1B39598,
    "bool",
    ["pointer"],
    function(instance) {
        //return 1 for true, 0 for false
        return 1;
    }
);
                        
   
}

You can hook any function type, just change the return type of the function.

//public float get_SpeedModifier() -> 0x1234567
var Speed = h5frida.StaticInlineHookFunction("Frameworks/UnityFramework.framework/UnityFramework",
    0x1234567,
    "float",
    ["pointer"],
    function(instance) {
        return 9999;
    }

);

Well, that'sย all hehe, hope you could achieve your goals !ย PepeCoffee

Usefull
To "Enable" all your offset at once, you can just call the ActiveCodePatch function as much as u need on the script. it will proceed each offset at once, so that u need to replace the UnityFramework file once only

ย 

ActiveCodePatch("Frameworks/UnityFramework.framework/UnityFramework", 0x1212121, "YOUR HEX");
ActiveCodePatch("Frameworks/UnityFramework.framework/UnityFramework", 0x8989898, "YOUR HEX");
ActiveCodePatch("Frameworks/UnityFramework.framework/UnityFramework", 0x6565656, "YOUR HEX");

ย 

Usefull

Better would be to make a full working mod menu on JB, and convert it to H5GG after, cuz its a pain to test offset with H5GG lol

ย 

Credits :

@tuanccย H5GG tool

- Me for the tuto

ย 

Feel free to ask questions about it if its related to the topic

If your app is crashing, you can see thisย 

ย 

H5GG Discord :ย https://discord.gg/h5gg

H5GG Github :ย https://github.com/H5GG/H5GG

Maybe usefull :ย 

ย 

ย 

Updated by ๐“„ผ . f v c k . ๐“„น
made it cleaner
  • Like 81
  • Winner 7
  • Thanks 1
  • Haha 4
  • Agree 16
  • Informative 10
Link to comment
Share on other sites

This is brilliant. Let me follow exactly what you done here.

ย 

Not sure why my try with another game was not successful. The patched instruction is not the instruction I want. Odd.

let me follow yours and see how it works.

ย 

thanks again in creating this.ย 

  • Like 1
Link to comment
Share on other sites

Quick test result:

1. I also got the the UnityFramework patched by h5frida and stored inside static-inline-hook folder

2. With a detail look into it, the hex code of the instruction (patched) doesn't look right to me.

Orignal atย 0x1B39598 is FD7BBFA9FD030091

- stp x29, x30, [sp, #-0x10]!
- mov x29, sp

After patch atย 0x1B39598 is CF2A9914FD030091

- b #0x264ab4c
- mov x29, sp

What we are expecting atย 0x1B39598 isย 200080D2C0035FD6, Right??

- mov x0, #1
- retย 

Tested in game, always Can Jump is not working. Same as my try in another game these few days.ย 

I am using iPadOS 16.2 (non-jailbreak) with iPad Pro 2nd Gen.ย ย 

Updated by Happy Secret
Link to comment
Share on other sites

Update on the hook:

Not sure why I got hook fail as well.

Index
frida(่„šๆœฌๆ—ฅๅฟ—๏ผ‰script log:
Frameworks/UnitFramework.frame-work/UnitvFramework:0x1b39598-
HOOKๅคฑๆ•—๏ผ
Frameworks/UnityFramework.frame-work/UnityFramework:0x1b39598-HOOK-Failed!
ๆœช็ญพๅ่ฏฅๅœฐๅ€๏ผŒไฟฎ่กฅๆ–‡ไปถๅฐ†็”ŸๆˆๅœจAPP็š„
Documents/static-inline-hook็›ฎๅฝ•ไธญ๏ผŒ่ฏทๅฐ†่ฏฅ็›ฎๅฝ•ไธญๆ‰€ๆœ‰ๆ–‡ไปถๆ›ฟๆขๅˆฐ ipaไธญ็š„.app็›ฎๅฝ•ๅนถ้‡ๆ–ฐ็ญพๅๅฎ‰่ฃ…๏ผ
The offset has not been patched, the patched file will be generated in the Documents/static-inline-hook directory of the APP, please replace all the files in this directory to the app directory in the ipa and re-sign and reinstall!

Issue for me is: The h5frida internal function find_hook_block always return NULL, and reporting โ€œcannot parse hook info!โ€ In NSLog.

This internal function is being use for ActiveCodePatch andย StaticInlineHookFunction.

I donโ€™t know how to debug further.

Updated by Happy Secret
Link to comment
Share on other sites

4 hours ago, Happy Secret said:

Quick test result:

1. I also got the the UnityFramework patched by h5frida and stored inside static-inline-hook folder

2. With a detail look into it, the hex code of the instruction (patched) doesn't look right to me.

Orignal atย 0x1B39598 is FD7BBFA9FD030091

- stp x29, x30, [sp, #-0x10]!
- mov x29, sp

After patch atย 0x1B39598 is CF2A9914FD030091

- b #0x264ab4c
- mov x29, sp

What we are expecting atย 0x1B39598 isย 200080D2C0035FD6, Right??

- mov x0, #1
- retย 

Tested in game, always Can Jump is not working. Same as my try in another game these few days.ย 

I am using iPadOS 16.2 (non-jailbreak) with iPad Pro 2nd Gen.ย ย 

Mhh i did the tutorial on an A14, iOS 15.1 and the patch/hook worked well.

maybe H5GG doesn't support iOS 16 atm, but it's weard since we hook the app framework and not any device framework.

i don't understand how you got the bytes at 0x1B39598, i didn't used ida, i simply checked the function on dnSpy, patched it on JB with the LOP tool from iOSGods, it worked so i did it on H5GG, and it worked tooย 

ย 

edit :

oh you mean the UnityFramework patched ? well i didn't looked at the data at the offset 0x1B...98, but it's seems normal to me that's it's not 2000...FD6, otherwise it will always be enable. i think that it creates another function on the UnityFramework (at another place) and at 0x1B...98, it calls it.

so if there is no script running, we shouldn't be able to jump always,ย but when we load our script, it probably jump to our created function in the UnityFramework, and so it return 2000..FD6 at our function (maybe atย 0x264ab4c) and if we unload the script, the original bytes in the memory will load again making "normal jumps"

ย 

(this is my personal analysis, it may not be 100% right but this is how i visual it)ย 

video :ย https://streamable.com/5g6nvz

Updated by ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ๊ž‹๊žŒ
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%)ย 
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • 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
        • Agree
        • Haha
        • 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 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/
        • Informative
        • Agree
        • Haha
        • Winner
        • 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 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/
        • Thanks
        • Winner
        • Like
      • 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