This page is a work in process.
Check the dumping hardware overview for a list of known preservation hardware.
If you need help, please come chat with us on the VGPC or No-Intro discord servers.
NEC Docomo phones generally run on a customized form of Linux. They use a bootloader related to the one used in Panasonic and Casio Docomo phones. When an NEC phone is properly connected to a debug cable, it will light up for approximately one second, and then turn off.
Note: We currently do not know how to extract NAND data from NEC phones between approximately N902i - N703iμ. These phones are also challenging to connect to PC. It may take multiple tries for your PC to detect one of these phones. Sometimes, these phones connect better after booting up once.
Phone Model | Extractable? | File System/FTL | Tools |
---|---|---|---|
N2001 | Unknown | Unknown | Unknown |
N2002 | Unknown | Unknown | Unknown |
N2051 | Yes | Customized FAT16 + SSR200 | fs-tools (SSR200) Old Flavor |
N2102V | Yes | Customized FAT16 + SSR200 | fs-tools (SSR200) |
N2701 | Unknown | Unknown | Unknown |
N900i | Yes | Customized FAT16 + SSR200 | fs-tools (SSR200) |
N900iS | Yes | Customized FAT16 + SSR200 | fs-tools (SSR200) |
N900iG | Unknown | Unknown | Unknown |
N900iL | Unknown | Unknown | Unknown |
N700i | Yes | JFFS2 | Jefferson |
N901iC | Yes | JFFS2 | Jefferson |
N901iG | Unknown | Unknown | Unknown |
N901iS | Yes | Samsung RFS + XSR1 | rfs_dumper.exe |
N701i | Yes | Samsung RFS + XSR1 | rfs_dumper.exe |
N701iECO | Unknown | Unknown | Unknown |
N601i | Unknown (might be possible through jtag) | Unknown | Unknown |
N902i | Partial (NOR only) | JFFS2 | Jefferson |
N902iS | Partial (NOR only) | Unknown | Unknown |
N902iX HIGH-SPEED | Partial (NOR only) | Unknown | Unknown |
N902iL | Unknown | Unknown | Unknown |
N702iD | Yes | Samsung RFS + XSR1 | rfs_dumper.exe |
N702iS | Unknown | Unknown | Unknown |
N903i | Yes | JFFS2 | Jefferson |
N703iD | Partial (NOR only) | JFFS2 | Jefferson |
N703iμ | Partial (NOR only) | Unknown | Unknown |
N904i | Yes | JFFS2 | Jefferson |
N704iμ | Unknown | Unknown | Unknown |
N905i | Yes | JFFS2 | Jefferson |
N905iμ | Yes | JFFS2 | Jefferson |
N705i | Unknown | Unknown | Unknown |
N705iμ | Yes | JFFS2 | Jefferson |
N906i | Yes | JFFS2 | Jefferson |
N906iμ | Yes | JFFS2 | Jefferson |
N906iL | Yes | JFFS2 | Jefferson |
N706i | Yes | JFFS2 | Jefferson |
N706ie | Yes | JFFS2 | Jefferson |
N706iII | Yes | JFFS2 | Jefferson |
N-01A | Yes | JFFS2 | Jefferson |
N-02A | Yes | JFFS2 | Jefferson |
N-03A | Yes | JFFS2 | Jefferson |
N-04A | Yes | JFFS2 | Jefferson |
N-05A | Yes | JFFS2 | Jefferson |
N-06A | Yes | JFFS2 | Jefferson |
N-07A | Yes | JFFS2 | Jefferson |
N-08A | Yes | JFFS2 | Jefferson |
N-09A | Yes | JFFS2 | Jefferson |
N-01B | Unknown | Unknown | Unknown |
N-02B | Yes | YAFFS2 + CramFS | yaffs-tools |
N-03B | Yes | JFFS2 | Jefferson |
N-04B | Yes | YAFFS2 + CramFS | yaffs-tools |
N-05B | Yes | YAFFS2 + CramFS | yaffs-tools |
N-06B | Yes | YAFFS2 + CramFS | yaffs-tools |
N-07B | Yes | YAFFS2 + CramFS | yaffs-tools |
N-08B | Yes | YAFFS2 + CramFS | yaffs-tools |
N-01C | Yes | YAFFS2 + CramFS | yaffs-tools |
N-02C | Yes | YAFFS2 + CramFS | yaffs-tools |
N-03C | Unknown | Unknown | Unknown |
N-05C | Yes | YAFFS2 + CramFS | yaffs-tools |
N-02D | Unknown | Unknown | Unknown |
N-03D | Yes | YAFFS2 + CramFS | yaffs-tools |
N-01E | Yes | YAFFS2 + CramFS | yaffs-tools |
N-01F | Yes | YAFFS2 + CramFS | yaffs-tools |
N-01G | Can dump with chip-off (not yet compatible with ktdumper) | YAFFS2 + CramFS | yaffs-tools |
Extracting Data
Reading File Systems
Ktdumper is a tool for extracting data from feature phones that are compatible with the Foma debug adapter, which includes all Docomo phones and select SoftBank phones. Please note that ktdumper will not work unless you have the Foma debug adapter.
Ktdumper is compatible with Linux and WSL (Windows System on Linux). It can be used as a command line tool or as a live Linux iso with a GUI.
sudo ./ktdumper.sh [insert phone model] dump_nand
sudo ./ktdumper.sh [insert phone model] dump_nor
sudo ./ktdumper.sh [insert phone model] dump_java
Sample For D904i
sudo ./ktdumper.sh d904i dump_nand
WIP
Current tools for removing the SSR200 FTL are meant to work on Linux or WSL (Windows Subsystem for Linux)
sudo apt-get install python3-pip sudo pip3 install pyfatfs
chmod +x install.
Then run install.sh
sudo ./install.sh
The following steps are different based on whether you are trying to extract SSR200 or SSR200 “Old Flavor”
Regular SSR200
python3 run.py nand.bin
SSR200 “Old Flavor”
sudo apt install sleuthkit
run.sh nand.bin
The JFFS2 file system can be extracted with Jefferson, which runs on Python. You can install Jefferson in a pre-existing Python using pip:
sudo apt-get install python3-pip sudo pip3 install jefferson
The following command creates a folder called “jffs2_extracted” to contain the data extracted from nand.bin.
sudo jefferson -d jffs2_extracted nand.bin
Note: You may see the error
data_crc does not match!
The dump may still be working. Let it continue until the process is complete before trying other steps.
Troubleshooting
If the jffs2_extracted folder contains no data, the offset will need to be removed from the .bin file.
You can determine the offset two ways:
binwalk nand.bin
85 20 19 E0
Or
85 19 02 E0
Delete all data before those four bytes and try again to extract with Jefferson.
Note: It is not possible to undelete files from a JFFS2 file system.
Current tools for extracting XSR1 require Windows.
.\rfs_dumper.exe input.bin output.bin
The file system can now be read and extracted with TestDisk.
python extract.py <bin file> <output folder> <config>
-d, --show-deleted, --no-show-deleted Show deleted files in DELETED subfolder. -m, --show-missing, --no-show-missing Show entries with missing parents in MISSING subfolder. -u, --try-undelete, --no-try-undelete Try to restore latest version of a file marked as deleted. -s, --mix-spare, --no-mix-spare Mix spare using filepath '[input (without extension)].oob'.
Example: N-04B MLC
python extract.py -m -u -s onenand_mlc.bin output_dir config/config_n04b_mlc.json
TestDisk can be used on either Windows or Linux. It is available for download here. Once you have downloaded TestDisk, use the program to open your current .bin file.
>Disk <your file>
Press enter to proceed.
[None ] Non partitioned media
[ quit ]
[ Analyse ]
[Quick Search]
You should now have all the extracted files.
Note: For select devices (such as F905i and D905i), you need to select None → Undelete rather than the usual TestDisk procedure.
Once you've dumped your games, it's time to generate and submit metadata to a preservation project for validating and cataloging. See the dump submission instructions for more information.