Instructions for new tool (apoxi-tool)
- Follow the installation instructions for apoxi-tools. If you are using Windows, you will need the Windows driver for your particular phone model. You can search for these on archive.org.
- To use this tool, you must put the phone into debug mode. With the battery inserted and charged, press these three keys simultaneously: # + * + Power. Wait a few seconds, and a screen should appear showing various vertical stripes of color. When the phone is connected to the PC in this mode, you generally will not need to specify the port with the “-p PORT” argument
- Use the following command to dump all parts of the phone into a folder titled OUTPUT_DIR
apoxi-tool read-all-memory -o OUTPUT_DIR
- Note: if you are only looking for games, you will only need to extract the FLASH region
apoxi-tool read-memory -n FLASH
Instructions for old tool (node-sie-serial)
- To use this tool, you must put the phone into debug mode. With the battery inserted and charged, press these three keys simultaneously: # + * + Power. Wait a few seconds, and a screen should appear showing various vertical stripes of color.
- Download the node-sie-serial repository from GitHub
- Install the package with the following command
npm i @sie-js/serial
- (Only needed once) Update with the following command
pnpm i #
- Extract data with the following command
npx tsx examples/dwd-apoxi-memory-dump.js --addr 0xA0000000 --size 0x8000000 --out output.bin
This will place the data dump into the repository's folder on your PC as output.bin.