Jump to content

THETWINSOFFICIAL

Contributor
  • Posts

    1,259
  • Joined

  • Last visited

  • Days Won

    60

File Comments posted by THETWINSOFFICIAL

    Slayer Legends

       7,575    52
    On 3/11/2023 at 1:13 PM, Bino0123 said:

    Can you make a tutorial on how to hide root i already tried magisk delta but its not hiding it

    Enable sulist or zygislist

    Days bygone

       2,023    18
    2 hours ago, Darkuness said:

    Unfortunately they updated the game 3 days after you posted an update. Hope you will have enough strength to look into it.

    Game update ? I dont know but next time i update is to hard bypass remove security and upload i need time for doit 

  1. 14 minutes ago, XEKEX said:

    Last thing I forget to mention , 
    the company of grim soul changed and the dev are patching it's inner function and method etc , 
    the game became more depending on LIBC -- and this open the usage of FRIDA , and hacking became more easy ( frida will reclone libil2cpp and perform trampoline hook on every class , method etc ) editing libil2cpp dynamiclay real-time and require no knowladge of assembly language , all you need is basic level of node js code or python ,

    here is a tamplete I wrote for hooking il2cpp with FRIDA that work on grim soul

     

    var lib = Module.findBaseAddress('libil2cpp.so');
    function awaitForCondition(callback) {
        var i = setInterval(function () { 
          var addr = Module.findBaseAddress('libil2cpp.so');
            if (addr) {
                clearInterval(i);
                callback(+addr);
            }
        }, 0);
      }
    
      
      Java.perform(function () { // this will get the base adderess of il2cpp
          awaitForCondition(function (base) {
              lib = ptr(base);
              if (lib != null) {  
                console.log('lib = ',lib) // this will print the start address of il2cpp in memory
                
              
      }})
      })
    // copy and paste the code below for multiple method hooks or create a function that does this
      Interceptor.attach(lib.add(0x1C665E0),{ // change the 0x1C665E0 to the offset of method and the function is hooked ( RVA or Offset in dump.cs)
        onEnter: function(args){ // time = 0 when the method is called
         // console.log('args : '+args[0]) arg[0] = R0 (they are the registers in CPU I guess)
        },
        onLeave: function(retval){ // return value of the function
         // console.log('retval : '+retval)
          retval.replace(ptr(0x0)) // this will replace the return value to the one you want
        },
        })

    --> FRIDA
    --> Tuto on how to use FRIDA on il2cpp games
    you can call any function in the il2cpp with it with the parameter you want.

    Yes frida is good can doti real time 

    But must have pc 🥶

    Slayer Legends

       7,575    52
    2 hours ago, Jakerr1 said:

    Ah ok, do u know legend of slime game? It's very similar game to slayer legend. Someone just hacked it a few weeks ago, the tutorial is on yt. Maybe it also has similar encryption? In legend of slime, need to use XOR search to find the value, maybe slayer legend too? 

    Idk

    Slayer Legends

       7,575    52
    On 3/5/2023 at 7:17 AM, DELeater said:

    How did you launch it? My moded vmos pro won't boot image at 99% >_< tho the idea is great.

     

    I've already tried to use Memu, flashed xposed, but the game won't work there -_-

    Game detected root or lib?

    Or nothink happen ?

    If nothing happen maybe you emulator broken or signature apk broken

    8 hours ago, Jakerr1 said:

    It works fine tysm!!! Btw can u make the diamond hack next? I hate the gacha system so much, the possibilities is so bad

    Diamon visual , and diamon syncrone by server is realtime so i cant doit

    On 3/3/2023 at 5:51 PM, DELeater said:

    So without xposed or magisc it's impossible to hack it ATM? Too bad 😞 can't find a working vmos ROM with these. 

    Yes only root if no root use virtual but i dont know what better virtual app

    CYTUS

       146    8
    1 hour ago, Deadlox03 said:

    When i execute ur script the game crashed or force closed

    Hide gameguardian in setting

    Ceklis 1,2,3

    CYTUS

       146    8
    On 3/1/2023 at 9:36 PM, Deadlox03 said:

    And its detected i think 

     

    Detected what ?

    On 2/24/2023 at 5:18 PM, Annisaah said:

    waitiing for cytus 2 😖

    Cytus is hard because siganture i dont know how bypass it so i cant create cytus 2

    Days bygone

       2,023    18
    45 minutes ago, Keara150 said:

    yes I installed the application from you, I haven't tried it on the emulator. later I will try it on the emulator and will comment again here, thank you 

    Dont use emulator my script not support emulator

    Days bygone

       2,023    18
    1 hour ago, Keara150 said:

    always VALUE NOT FOUND, how do you fix it?

    You install my app ?

    1 hour ago, Keara150 said:

    always VALUE NOT FOUND, how do you fix it?

    And you try in emulator ?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.