├── .gitignore ├── LICENSE ├── README.md ├── conf ├── 29F2F108_Micron.conf ├── 29F4G08_Micron_ATMEL.conf ├── K9F1G08U0D_Samsung.conf ├── MX30LF2G18AC_NXP_IMX28.conf └── S34ML01G2_ATMEL.conf ├── images └── exploiting_unencrypted_nand_poc_video.jpg ├── nand_dump_decoder.py ├── nand_dump_decoder.sh ├── nand_dump_encoder.py ├── nand_dump_encoder.sh ├── requirements.txt ├── setup.sh └── yaffs_ecc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/README.md -------------------------------------------------------------------------------- /conf/29F2F108_Micron.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/conf/29F2F108_Micron.conf -------------------------------------------------------------------------------- /conf/29F4G08_Micron_ATMEL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/conf/29F4G08_Micron_ATMEL.conf -------------------------------------------------------------------------------- /conf/K9F1G08U0D_Samsung.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/conf/K9F1G08U0D_Samsung.conf -------------------------------------------------------------------------------- /conf/MX30LF2G18AC_NXP_IMX28.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/conf/MX30LF2G18AC_NXP_IMX28.conf -------------------------------------------------------------------------------- /conf/S34ML01G2_ATMEL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/conf/S34ML01G2_ATMEL.conf -------------------------------------------------------------------------------- /images/exploiting_unencrypted_nand_poc_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/images/exploiting_unencrypted_nand_poc_video.jpg -------------------------------------------------------------------------------- /nand_dump_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/nand_dump_decoder.py -------------------------------------------------------------------------------- /nand_dump_decoder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/nand_dump_decoder.sh -------------------------------------------------------------------------------- /nand_dump_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/nand_dump_encoder.py -------------------------------------------------------------------------------- /nand_dump_encoder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/nand_dump_encoder.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bchlib>=0.7 2 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/setup.sh -------------------------------------------------------------------------------- /yaffs_ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/nand-dump-tools/HEAD/yaffs_ecc.py --------------------------------------------------------------------------------