Jump to content
  • 0

How to dump cocos2djs.so and libgame.so


kpba

Question

2 answers to this question

Recommended Posts

Hi @kpba, you need some manual dumping for other libs than Unity or Unreal Engine. It is expected that you're going to need some Computer and use IDA Pro or Ghidra. In Android, you can use: Disassembler, it is not as powerfull as on Computers though. For dumping only purposes, you can use Game Guardian itself or MemDumper inside Termux:

./memdumper -p [Your.Game.Pkg] -l -r -n YourTargetLib.so -o /storage/emulated/0/dump
./memdumper -i [123YourgamePID] -l -r -n YourTargetLib.so -o /storage/emulated/0/dump

# Automate
for i in $(pidof your.game.pkg) do 
   ./memdumper -i $i -l -r -n YourTargetLib.so -o /storage/emulated/0/dump
done

It can dump the Lib file from Memory, hoping that it will avoid Lib Obfuscation.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.