首页 > 代码库 > 修改squashfs.img文件mount操作伪造系统

修改squashfs.img文件mount操作伪造系统

通过前面的分析,我们已经可以unsquash squashfs.img文件获得ext3fs.img通过直接挂载就是

一个完整的根文件系统,一般情况下,我们只需要直接chroot就可以安装rpm包等等操作

如果我们想运行什么程序或者干点别的,例如df -Th,发现输出错误,ifconfig也没有任何的显示

这个时候我们需要进行如下的操作:

   mount --bind /dev /mnt/custom/dev
     mount --bind /sys /mnt/custom/sys
     mount --bind /proc /mnt/custom/proc
     chroot /mnt/custom

其中/mnt/custom是ext3fs.img文件的挂载点。

修改完毕退出:

exit   # This leaves the chrooted environment
     umount /mnt/custom/dev
     umount /mnt/custom/sys
     umount /mnt/custom/proc
     umount /mnt/custom

修改squashfs.img文件mount操作伪造系统