A simple CLI tool to dump .dex codes in memory. Without ptrace.
Made for a specific protection. May not work for all packers.
Push the executable to the target device. Acquire root access and run:
dexdump <Process Name>The dumped .dex file will be saved in the current working directory.
First, clone the repository:
git clone https://github.com/lihe07/dexdump
cd ./dexdumpEnsure the path to NDK clang in the Makefile is correct. Then, build the project:
makeThis will generate the executable dexdump in the current directory.