以编程方式从C中的dd图像中提取文件
我有一些 dd 映像,我想知道使用 C 从这些映像中提取文件的最佳方法。这些映像属于混合文件系统(fat32、ntfs、ext2/3),并且执行提取的主机是 Ubuntu盒子,所以你可以假设内核头文件和 GNU C 库等。
本地是最好的,但完成这项工作的外部库也可以。一个例子的链接就完美了。
I have a few dd images and I wanted to know the best way of extracting files out of these using C. The images are of mixed file systems (fat32, ntfs, ext2/3) and the host machine doing the extraction would be an Ubuntu box, so you can assume kernel headers and GNU C library, etc.
Natively would be best, but external libraries that do the job would also be fine. A link to an example would be perfect.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一项重大努力。您必须从根本上重新实现 NTFS、FAT 和 EXT2 的文件系统驱动程序。我已经为 FAT 和 NTFS 完成了这项工作,但花了两年多的时间,尽管其中大部分是对 NTFS 进行逆向工程。
考虑使用
文件挂载
选项mount 命令的一部分,这样您就可以使用 Ubuntu 文件系统驱动程序,而不必重新发明大轮子。然后您可以仔细阅读已安装的文件系统。This is a significant effort. You'd have to essentially reimplement filesystem drivers for NTFS, FAT, and EXT2. I've done this for FAT and NTFS, but it took more than two years, though much of that was reverse engineering NTFS.
Consider using the
file mount
option of the mount command so you can use the Ubuntu filesystem drivers and not reinvent the significantly large wheel. Then you can peruse the mounted filesystems.为什么用 C 语言编程?
sudo mount -o Loop,offset=[offset] -t auto [where] [what]
哪里
Why programatically with C?
sudo mount -o loop,offset=[offset] -t auto [where] [what]
Where
查看 The Sleuth Kit,它应该适用于您列出的所有文件系统类型:
如果您正在寻找可使用的示例代码,Sleuth Kit 的现有工具集是一个很好的起点。
Look at The Sleuth Kit, which should work with all of the file system types you listed:
The Sleuth Kit's existing toolset is a great place to start if you're looking for sample code to work from.
查看:
Check out: