frida ue4dump
1.0.0
Skrip frida dump UE4 untuk UE >= 4.23 64bit
Sangat didasarkan pada UE4Dumper
Diuji pada game yang tercantum di bawah ini. Ini mungkin tidak berfungsi dengan benar dengan game lain kecuali Anda memperbaiki offset di script.js
frida -Ul script.js <UE4 Game>
frida -Ul script.js --realm=emulated <UE4 Game>
Call set(<moduleName>) on terminal(ex. set("libUE4.so"))
It will set moduleBase, GUObjectArray, GName
If it cannot find GUObjectArray, GName, need to provide those values manually
dumpSdk()
(1) After successfully completing the dump, call `hookProcessEvent()`
atau
(2) If you already know the ProcessInternal offset and have found and fixed all the offsets for the game, then...
set(<moduleName>)
processInternal_offset = <ProcessInternal offset you found. e.g, 0x123123>
hookProcessEvent()
atau
(3) If you already know the ProcessEvent offset and have found and fixed all the offsets for the game, then...
set(<moduleName>)
processEvent = moduleBase.add(<ProcessEvent offset you found. e.g, 0x123123>)
hookProcessEvent()