Created
October 24, 2020 10:20
-
-
Save cyberheartmi9/6da190933e3acc1236f675d13640a7c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
strings file | |
binwalk -e file | |
# mounting | |
mknod /dev/mtdblock0 b 31 0 | |
mkdir /mnt/jffs2_file/ | |
modprobe jffs2 | |
modprobe mtdram | |
modprobe mtdblock | |
dd if=/root/Router/600000.jffs2 of=/dev/mtdblock0 | |
mount -t jffs2 /dev/mtdblock0 /mnt/jffs2_file/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment