码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-11-02 00:41:37      阅读:608      评论:0      收藏:0      [点我收藏+]

标签: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操作伪造系统

标签:mount

原文地址:http://5228690.blog.51cto.com/5218690/1570803

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!