frida-ue4dump
frida-ue4dump copied to clipboard
Black Clover Mobile support
Hi! Can you add Black Clover Mobile please? Global and JP version if it's possible please. Thank you very much!
Hi, I've added dump for the KR and JP versions. check it out!
Thank you very much! I have a question:
I run frida -Ul script.js com.vic.bc.kr but it doesn't found the process. I have frida-server running and the game is open.
Failed to spawn: unable to find process with name 'com.vic.bc.kr'
Edit: If I run frida -Ul script.js 블랙클로버 it attaches. But when I run set("libUE4.so") I get this:
[!] Cannot find GUObjectArray
[*] Try to search GUObjectArray on memory
TypeError: cannot read property 'base' of null
at findGUObjectArray (C:\Users\user\Desktop\frida-ue4dump-main\script.js:1169)
at set (C:\Users\user\Desktop\frida-ue4dump-main\script.js:1256)
at eval (input:1)
That's weird. That error means it couldn't find the module named "libUE4.so".
But when I test the script, it works fine.
Check the module existence by following frida command after attaching to the process.
Process.findModuleByName("libUE4.so")
It should show you the module information.
Hi, thanks for the reply.
Process.findModuleByName("libUE4.so") gives me null.
Edit: I checked /data/app/com.vic.bc.kr-1/lib/arm64 and libUE4.so is there.
I checked the emulators (Nox, LDPlayer) and confirmed that it's not working on them. Sadly, frida can't find the module
Hi, thanks for the reply.
Process.findModuleByName("libUE4.so")gives me null.Edit: I checked
/data/app/com.vic.bc.kr-1/lib/arm64and libUE4.so is there.
You should start the game with frida options frida -U -f com.package.name --realm=emulated , then you will find the module libUE4.so
Hi, thanks for the reply.
Process.findModuleByName("libUE4.so")gives me null.Edit: I checked
/data/app/com.vic.bc.kr-1/lib/arm64and libUE4.so is there.You should start the game with frida options
frida -U -f com.package.name --realm=emulated, then you will find the modulelibUE4.so
Thanks, I updated README.

