Jump to content
  • 0

IS THERE ANY WAY TO DUMP ALL LIB FILES?


DARK_DEMON_SCRIPTER
 Share

Question

Recommended Posts

  • 0

if is unity game u can use that for dump in phone :

https://github.com/Poko-Apps/Il2cppDumpDroidGUI

or u can use tool online :

 

https://il2cppdumper.com/the-dumper-tool

for other game engine not know for dump

if u want read dump cs use this if ur root ( not work for me in vmos ) 

https://play.google.com/store/apps/details?id=com.ourcodeworld.pocketeditor

or than me ise mt manager for open .cs and use txt wiever

https://apkcombo.com/fr/mt-manager/bin.mt.plus/

 

Link to comment
Share on other sites

  • 0

Ok bro thx ill try

 

12 minutes ago, blocx said:

if u have trouble with those tools or how to use bc tool box or something tell us i will try to provide video to help u

Bro app successfully installed in f1vm and working but idk how to locate my file and decode it can you give me the tutorials for it pls

Edited by DARK_DEMON_SCRIPTER
Link to comment
Share on other sites

  • 0
On 10/14/2022 at 8:26 AM, DARK_DEMON_SCRIPTER said:

I WANT TO DUMP ANY LIBS IN ANY GAMES BECAUSE I CANT FIND LIBIL2CPP.SO FILE IN MANY GAMES SO PLS HELP ME GUYS

Hi! What you mean is to "dump all the lib files other than LibilCPP", is that correct? You can try: MemDumper, it will dump any lib files from memory. Just specify your target lib using:
 

./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

 

Edited by MainC
fix naming
Link to comment
Share on other sites

  • 0
1 minute ago, MainC said:

Hi! What you mean is to "dump all the lib files other than LibilCPP", is that correct? You can try: MemDumper, it will dump any lib files from memory. Just specify your target lib using:
 

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

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

 

How to use it and where to execute it?

@MainC Memdumper is so confusing for me can I get any tutorials for it pls

And I need installation tutorial too pls

Edited by DARK_DEMON_SCRIPTER
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

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