Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/19/2022 in Posts

  1. Hi! Yes, It's possible. ELSE will carries any Values other than 1 (On Above Script). You don't need to Specificly define all Condition, Unless You had to do something When 'That' Conditions met. local switch = 1 if switch == 1 then --Do Something if Condition is 1 function1() else if switch == 2 then --Do Something if Condition is 2 function2() else --Do Something if Condition is other than 1 and 2 (Accept any value A-Z 0-Infinite) function3() end This apply accross any language, In fact; checking every Conditions is NOT Recommended in Optimization Perspective even It is supported by ANY Hardware (Computer is basicly a bunch of 0 and 1 Input). Take some Example from Yandere Dev Simulator on How ELSE IF can Affect Performance: Code Review for Yandere Simulator Some demonstration in other language: # Good Practice switch = 1 if switch == 1: function1() elif switch == 2: function2() else: function3() # Bad Practice if switch == 1: function1() elif switch == 2: function2() elif switch > 2: function3() elif switch 0: print('errr')
    1 point
  2. ALTERNATIVE MODDING : after you load the lib in IDA pro (The game must have LIBC maybe not in some cases) connect ur phone with ur PC and download frida instrument in ur pc also vscode and adb ( go to youtube how to download frida / adb ) create a file in your workspace like "test.js" in test.js write this basic hook code : this code will hook the lib u put it and log it's base adress same as game guardian. after that go to IDA pro and find what function u want to hook for example from this tutorial : MonsterUnit::getMaxHP() after u searched for the function click on it and copy this part : Go back to test.js and write this code : What does this function is to log the R0 and the Return value of the function (you can change args[0] to any R1 .. R2 .. etc ) Finally : attach ur phone to ur pc via usb in terminal write adb devices to make sure adb is active then from vscode terminal write : frida -Uf the game bandlle name com.somthing -l .\test.js --no-pause -U means usb f mean force -l means the file to inject --no-pause a parameter to frida to doesnt pause the game by default NOTE : the scipt only console log the values to change the args just make args[0] = the value u want (should be in hex 0x) to change the return value : retval.replace(0xthe value u want in hex) WHY FRIDA ? * MOD the game realtime without changing the lib or game files * You can change the SCRIPT while it's running * You can Bypass root detection / SSL pinning from the game * Undetected from server-side bc it clone the lib u hooked on the script and perform trampoline hook for all it's functions * U just need a little javascript / py knowledge Frida Repo ---> frida.re A tuto found in youtube --> Tuto (in the tuto he use libil2cpp.so(debbugable = true) and the app should have libc in their lib file or frida won't work you can make it work by hooking java function instead of IDA use jadx note : MORE ADVANCED) ------------------------------------------------------ "From my experince with frida I hooked encrypt function in a game and from that hook I successfully decrypt all the data from requests and Hack the game server-side with burpsuite & frida "
    1 point
  3. 1 point
  4. New version 10.8.2.4.7.x64 released!
    1 point
  5. 1 point
×
×
  • 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.