Firmware Dumping
Flash Memory Types
- NOR Flash (SOIC8 package)
- SPI Flash
- Mostly error "Fault-free" memory
- Used for embedded device that need fast execution, but low storage capacity
- NAND Flash (TSOP48 package)
- eMMC Flash (BGA{153} package)
- UFS Universal Flash Storage
Flash a new firmware into the microcontroller
-
Using avrdudes/avrdude
# send raw data firmware $ avrdude -p m328p -c usbasp -P /dev/ttyUSB0 -b 9600 -U flash:w:flash_raw.bin # send ihex firmware $ avrdude -c arduino -p atmega328p -P /dev/ttyUSB* -b115200 -u -V -U flash:w:CHALLENGE.hex $ avrdude -c usbasp -p m328p -F -U flash:r:dump.hex:i # default $ avrdude -c usbasp -p m328p -C /etc/avrdude.conf -U flash:w:hardcodedPassword.ino.arduino_standard.hex -
Using raspberrypi/picotool
Dump flash using debug port
-
Using avrdudes/avrdude
-
Using openocd-org/openocd
-
Determine code space in the microcontroller (for example nRF51822 - Micro:bit), save as
dump_img.cfg: -
Dump with openocd
-
-
Using raspberrypi/picotool
-
Build PicoTool, you will need the pico-sdk
-
Dump the program or the whole flash memory
-
Dump Flash via SPI
-
Using flashrom/flashroom
sudo apt-get install build-essential pciutils usbutils libpci-dev libusb-dev libftdi1 libftdi-dev zlib1g-dev subversion libusb-1.0-0-dev svn co svn://flashrom.org/flashrom/trunk flashrom cd flashrom make flashrom -p ft232_spi:type:232h -r spidump.bin flashrom -p linux_spi:dev=/dev/spidev0.0,spispeed=512 -r spi_dump.bin flashrom -p serprog:dev=/dev/ttyACM0,spispeed=160k -r dump_spi.bin -c "MX25L6406E/MX25L6408E" -
Using HydraBus: hydrabus/hydrafw/hydra_spi_dump.py
Convert ihex to elf
The Intel HEX is a transitional file format for microcontrollers, (E)PROMs, and other devices. The documentation states that HEXs can be converted to binary files and programmed into a configuration device.
Each line in the ihex file starts with :
- a colon :
- followed by ONE BYTE = record length
- followed by TWO BYTES = offset to load
- followed by ONE BYTE = Record Type
- Last BYTE in the line = Checksum
Convert .hex(ihex format) to .elf file with avr-objcopy or with an online tool http://matrixstorm.com
$ avr-objcopy -I ihex -O elf32-avr dump.hex dump.elf
# or
$ objcopy -I ihex chest.hex -O binary chest.bin ; xxd chest.bin
Alternative with Python bincopy
Quick strings on .hex
Inspect the assembly with avr-objdump -m avr -D chest.hex.\
Emulate : qemu-system-avr -S -s -nographic -serial tcp::5678,server=on,wait=off -machine uno -bios chest.bin
Explore Filesystem
Common Filesystem
- SquashFS : It is a compressed read-only filesystem commonly used in Linux-based Firmware. It provides a good flexibility because it supports creating writable overlay filesystems, allowing changes to be made to the filesystem at runtime.
- CramFS (Compressed ROM Filesystem) : Simple read-only filesystem, that supports compression.
- ROMFS (Read-Only Memory Filedystem) : Simple filesystem that is strictly read-only, and do not provide compression support.
- YAFFS/YAFFS2 (Yet Another Flash Filesystem) : This filesystem is specifically designed for NAND Flash memory. In particular, it incorporates ECC management for ensuring data integrity. Filesystem integrity is also maintained by storing metadata redundantly.
- JFFS/JFFS2 (Journalized Flash Filesystem) : This filesystem is also designed for NAND Flash memory. JFFS utilizes a journaling mechanism to track changes to the filesystem, ensuring data consistency and integrity even in the event of sudden power loss or system crashes. It also supports ECC.
- UBIFS (Unsorted Block Image Filesystem) : UBIFS is a successor to JFFS2 and is optimized for NAND flash memory. It offers improved performance, reliability, and scalability, with features such as compression, encryption, and fast mounting. UBIFS supports multiple partitions.
| Filesystem | RO/RW | Magic | Tool |
|---|---|---|---|
| SquashFS | RO | sqsh, hsqs, qshs, sqsl | unsquashfs, 7zip |
| JFFS(2) | RW | 0x07C0 (v1), 0x72b6(v2) | jefferson |
| YAFFS(2) | RW | 0x5941ff53 | unyaffs |
| CramFS | RO | 0x28cd3d45 | uncramfs, 7zip |
| UBIFS | RW | 0x06101831 | ubi_reader |
| RomFS | RO | 0x7275 | / |
| CPIO | RO | "070707" | cpio, 7zip |
Tools
-
$ strings file.bin $ strings -e l file.bin The strings -e flag specifies the encoding of the characters. -el specifies little-endian characters 16-bits wide (e.g. UTF-16) $ strings -tx file.bin The -t flag will return the offset of the string within the file. -tx will return it in hex format, T-to in octal and -td in decimal. -
onekey-sec/jefferson - JFFS2 filesystem extraction tool
-
whataday/unyaffs - YAFFS2 filesystem extraction tool
unyaffs [-l <layout>] [-t] [-v] [-V] <image_file_name> [<base dir>] -l <layout> set flash memory layout layout=0: detect chunk and spare size (default) layout=1: 2K chunk, 64 byte spare size layout=2: 4K chunk, 128 byte spare size layout=3: 8K chunk, 256 byte spare size layout=4: 16K chunk, 512 byte spare size -t list image contents -v verbose output -V print version
Write new firmware
-
Repack firmware
-
Flashrom write
Type of firmware
SREC- Motorola S-Record : All S-record file lines start with a capital S.Intel HEXlines all start with a colon.TI-TXTis a Texas Instruments format, usually for the MSP430 series. Memory addresses are prepended with an @, and data is represented in hex.RawNAND dumps
Check entropy
High entropy = probably encrypted (or compressed). Low entropy = probably not
Encrypted firmware
Over-the-air updates
TODO