Jump to content

Happy Secret

Contributor
  • Posts

    539
  • Joined

  • Last visited

Posts posted by Happy Secret

  1. On 9/24/2021 at 7:57 PM, Boza said:

    I have seen that in some games there are people who with the code of an item (Gun or Gear) can add new items to their game. I've been in filza for more than a week and I swear I've already read the entire game file but I don't know how or where to look exactly, could someone help me at least with the basics so I can learn to do it myself!

    To be clearer and give a good example I will use a post respawnables that I saw a long time ago in this forum

    [Updated] Respawnables 10.6.0 Bundle Hack [All Versions]
     

    How can you see he uses a basic item code, I want to learn how to do that, I only need a code the others I will look for myself I just want to know how to do it

    Thanks in advance

    For Unity Game, with IL2Cpp Dumper it is not difficult to locate how the game store item code. 
    Whether you can influence the item generation or change item, it is another story. Suggest you find a local (non-server sided Unity Game) to try.

    You can try Dungreed, where I already hack the item cheat panel. It should make you mush easier to do your research or practice.

    • Thanks 1
  2. 3 hours ago, Jonny77 said:

    haha that was my post. In all honesty i tried making my own mod menu with the iosgods template thing etc but i hard a hard time finding offsets. i was looking into tutorials aswel but i couldnt find anything. im not sure if everything is server sided etc but you could hack the game easily using string search and that type of modding using iMemEditor/iGG. The way i found the codes is somewhat baffling to me but it made sense to me back when i was modding the game. I’d search the code for the rookie machine gun and then id go equip an item i wanted to find the code for. then id go back into the memory editor and see what codes changed. whichever code changed, the new code that was displayed was the item code if that makes sense at all. It was a mix of string search and modding via iMemEditor. String search isnt possible on igamegod although i did request it on the day igamegod was released years ago and rook said itll be coming in the next update (rook where the hell is string search?) however its not been added so i used gameguardian on android which supports string search. anyway ive probably gone off topic here but point is i had alot of trouble finding offsets through iDA i think the program i was using. but yeah hope this helped. the game shutdown for good so if you do find offsets they’ll be permanent bevause there wont be any updates coming to the game.

    If you are referring to TEXT search, it is already there from v0.3.0

    Very nice feature, you should give it a try.

    Watch point is another nice new feature that you should look into. 

  3. New Version 1.3:
    1. You can type in simple ARM64 instruction to let the tool to convert to HEX for you. Only works on Simple ARM64 Instruction like MOV, ADD, SUB, NOP, RET.
    2. Upgraded H5Frida Core to version 16.0.10 (thanks to @LeePham helping on final compilation on Theos)
    3. Minor bug fix on a number of bugs.

    XcZ5NHny_o.png
    New Frida resolved iOS15 + iOS16 support issue on some memory function. 

    • Like 1
  4. On 3/9/2023 at 10:11 PM, 𓄼 . f v c k . 𓄹 said:

    I mean seeing the instructions where the Watchpoint got trigger (near it)

    Per your request, update to Version 1.2:
    1. You can tap on Bytes (middle column) to open Live Offset Patcher. Only works on Non-Jailbroken device with Debug state on the App OR Jailbroken device.

    aI2DZdAy_o.png

    Feel free to let me know if you have other idea.

    • Like 2
  5. 5 minutes ago, 𓄼 . f v c k . 𓄹 said:

    google it*

    But i remember u made a topic to edit memory segment on jailed. i tested it and attached my iPhone 12 iOS 15.1 to lldb (XCode) and i could used the JB code to patch an offset :

    h5gg.require(7.8);
    
    var modules = h5gg.getRangesList("UnityFramework"); //module file name
    
    var base = modules[0].start; //module base addr in runtime memory
    
    var addr = Number(base) + 0x01915304; //offset
    
    patchBytes(addr,  "00E0AFD2C0035FD6"); //bytes
    
    /********************************************************/
    //only jailbroken devices can do this
    function patchBytes(addr, hex) {
        for(i = 0;i<hex.length/2;i++) {
            var item = parseInt(hex.substring(i*2, i*2+2), 16);
            h5gg.setValue(addr+i,item, "U8");
        }
    }

    from H5GG github

    ohh im dumb, the Address showed is ASLR + real offset right ?

    The address next to Hex and instruction is with ASLR. The normal memory address find in Cheat Engine. 

    7 minutes ago, 𓄼 . f v c k . 𓄹 said:

    But i remember u made a topic to edit memory segment on jailed. i tested it and attached my iPhone 12 iOS 15.1 to lldb (XCode) and i could used the JB code to patch an offset

    Yes, it worked one some devices. But not all. 
    Good to know it works on your device as well. 

  6. 8 minutes ago, 𓄼 . f v c k . 𓄹 said:

    maybe a feature like LOP (Live Offset Patcher) but this would need to have the app in debug mode to allow the JB way of editing an offset in memory 

     

    have u tried gogoled or chatGPT ?

     

    edit: also, is it just me or sometimes The Adress field is kinda incorrect ? 

    the last 3 digit are correct but the rest before it isnt, 

    Ex : offset : 0x1B97120

    Adress showed : 0x10C5CF120

    Top address bar is ASLR removed, including the address backup.

     

    So essentially, you don’t need to calculate (remove ASLR) to get the real offset. You just need to TAP on it, my tool will give you the real offset for you to use with Live Offset Patch or do Binary patch.

     

    But i cannot 100% sure, if there really a bug somewhere…haha.

    • Like 1
  7. 3 minutes ago, 𓄼 . f v c k . 𓄹 said:

    maybe a feature like LOP (Live Offset Patcher) but this would need to have the app in debug mode to allow the JB way of editing an offset in memory 

     

    have u tried gogoled or chatGPT ?

    What is gogoled?

    Already tried chatGPT, this is really insane. It can give me code example real quick and even customise it for me.

     

    I only on non-Jailbroken. I have no way to change protected memory segment easily.

    It worked once previously with my old iPad under debug mode. But it is not working with current one. 
    I hope iGameGod has give me surprise on this.

    • Like 3
  8. 18 minutes ago, 𓄼 . f v c k . 𓄹 said:

    Wow it's working so great ! so coool that we can click an adress and see the other instructions of it ! we can even click on branches ! INSANE !

    Weard, i got it work on an old mac, but i don't remember how i did it. Maybe theos installation is good and u just need to get the took chain from XCode.

    Gl with frida !

    Ya, it complaints about tool chains as well. No idea how to fix it.

     

    Anyway, good to know you enjoy the Read Instruction feature. If you think of anything that could add or improve. Do let me know, I am running out of idea on next version already. Haha.

    • Haha 1
  9.  

    7 minutes ago, 𓄼 . f v c k . 𓄹 said:

    Did you compiled a new H5GG version ? PepeThink

    No, not yet. I just upgrade the existing H5GG HTML to include new features. 
    But yes, it is pretty much a significant upgrade in features. 
     

    For H5GG real upgrade, I have intention to upgrade H5GG. I am figuring out how to update H5GG Frida core.

    Not sure why I can’t install Theos on my Mac.

    I have some ideas with slim chance to update H5Frida plugin and gadget  to latest version.

    But I need to figure out why I can’t install Theos. It keeps complaining I don’t have Xcode. Crazy.

  10. 8 hours ago, 𓄼 . f v c k . 𓄹 said:

    I mean seeing the instructions where the Watchpoint got trigger (near it)

    Sad to say, I failed. 
    armconverter.com prohibit CORS - Cross origin request.

    But I am sure, Rook and iGameGod team can do it. Because they also manage armconverter.com.

    Logic is, dump the memory segment near the watchpoint and use api call to armconverter.com to do real-time conversion and displace the result back in iGameGods. 

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