frida ue4dump
1.0.0
UE4 ดัมพ์สคริปต์ frida สำหรับ UE >= 4.23 64 บิต
มีพื้นฐานมาจาก UE4Dumper อย่างมาก
ทดสอบกับเกมตามรายการด้านล่าง อาจทำงานไม่ถูกต้องกับเกมอื่นเว้นแต่คุณจะแก้ไขออฟเซ็ตใน 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()`
หรือ
(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()
หรือ
(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()