adrelanos
2013-Nov-22 17:56 UTC
[Libguestfs] Auditing a vm image - virt-diff - was: Read MBR and store in a file?
Thank you all for your suggestions! Richard W.M. Jones:> I keep meaning to write a comprehensive "virt-diff" tool. I needed it > myself just yesterday.Most interesting. I guess there are two reasons for creating such a tool: just compare the images (show the diff) and/or check for malicious additions in the other image. Did you consider implementing the former or both? Do you think it's realistic to compare vm images with the goal of eventually finding deliberately hard to detect (malicious) changes? At the moment I am not trying to write a virt-diff like tool, but something simpler. A tool to create a report of all of a vm image's contents. (Checksums for all files, filesystem, for MBR and Volume Boot Record.) When publishing VM images, it might be useful to publish such a report together with the image, so others who re-build from source can be certain, they ended up with a very similar image. When having created two such reports, one could easily get a virt-diff like tool.> although that *only* > compares files, not the other data outside the filesystemWhat other data can there be outside the filesystem? I can think of: - MBR - Volume Boot Record Anything else? If these have been compared, the compared image should be as safe to use as the original one? (I could imagine that there can be extra data outside filesystem, maybe in regions outside the partition table, but those data shouldn't get executed after starting the image in a VM.) Cheers, adrelanos
Alex Nelson
2013-Nov-22 18:24 UTC
Re: [Libguestfs] Auditing a vm image - virt-diff - was: Read MBR and store in a file?
Hi all, Piping in here as someone who has worked on file system and Registry differencing for a few years now. Taking diffs of a storage system is not a straightforward task. Hopefully, this message saves you some re-implementation heartache. In the forensics world, there is a tool called Fiwalk, which enumerates the contents of a file system and its metadata (with some basic data summaries, including libmagic and checksums). The tool "idifference" compares file system states and enumerates differences, using the Digital Forensics XML output from Fiwalk. A research publication on the forensic differencing process and idifference is here: http://dfrws.org/2012/proceedings/DFRWS2012-6.pdf Fiwalk is a component of The SleuthKit, here: https://github.com/sleuthkit/sleuthkit If you wish to use Fiwalk on your images, you should convert any of your disk images to a raw image or Expert Witness Format. Actually, I don't suppose qemu-img has a FUSE-like wrapper that exposes the underlying image as a raw file? DFXML has an entry on the Forensics Wiki: http://www.forensicswiki.org/wiki/Category:Digital_Forensics_XML As for your external-to-filesystem data question: I think you got the essential non-file-system data. I can imagine data fragments from past/shrunken file systems, or hidden-data regions that fall outside what's recorded in the partition table. My imagination runs dry there, though. --Alex On Fri, Nov 22, 2013 at 12:56 PM, adrelanos <adrelanos@riseup.net> wrote:> Thank you all for your suggestions! > > Richard W.M. Jones: > > I keep meaning to write a comprehensive "virt-diff" tool. I needed it > > myself just yesterday. > > Most interesting. I guess there are two reasons for creating such a > tool: just compare the images (show the diff) and/or check for malicious > additions in the other image. > > Did you consider implementing the former or both? > > Do you think it's realistic to compare vm images with the goal of > eventually finding deliberately hard to detect (malicious) changes? > > At the moment I am not trying to write a virt-diff like tool, but > something simpler. A tool to create a report of all of a vm image's > contents. (Checksums for all files, filesystem, for MBR and Volume Boot > Record.) When publishing VM images, it might be useful to publish such a > report together with the image, so others who re-build from source can > be certain, they ended up with a very similar image. When having created > two such reports, one could easily get a virt-diff like tool. > > > although that *only* > > compares files, not the other data outside the filesystem > > What other data can there be outside the filesystem? > > I can think of: > > - MBR > - Volume Boot Record > > Anything else? > > If these have been compared, the compared image should be as safe to use > as the original one? > > (I could imagine that there can be extra data outside filesystem, maybe > in regions outside the partition table, but those data shouldn't get > executed after starting the image in a VM.) > > Cheers, > adrelanos > > _______________________________________________ > Libguestfs mailing list > Libguestfs@redhat.com > https://www.redhat.com/mailman/listinfo/libguestfs >
Richard W.M. Jones
2013-Nov-22 20:14 UTC
Re: [Libguestfs] Auditing a vm image - virt-diff - was: Read MBR and store in a file?
On Fri, Nov 22, 2013 at 05:56:00PM +0000, adrelanos wrote:> Thank you all for your suggestions! > > Richard W.M. Jones: > > I keep meaning to write a comprehensive "virt-diff" tool. I needed it > > myself just yesterday. > > Most interesting. I guess there are two reasons for creating such a > tool: just compare the images (show the diff) and/or check for malicious > additions in the other image. > > Did you consider implementing the former or both?For all the reasons that Alex goes into, it would just be for checking NON-malicious differences. The use case is to reverse engineer what files change in a guest when you perform an action (eg. install a Windows driver or run some Linux administrative command). [...]> At the moment I am not trying to write a virt-diff like tool, but > something simpler. A tool to create a report of all of a vm image's > contents. (Checksums for all files, filesystem, for MBR and Volume Boot > Record.) When publishing VM images, it might be useful to publish such a > report together with the image, so others who re-build from source can > be certain, they ended up with a very similar image. When having created > two such reports, one could easily get a virt-diff like tool.I think Matt Booth was doing something like this for Windows systems, with the aim of being able to recreate a Windows VM from a (smaller) description. Don't know what state that was/is in. [...]> What other data can there be outside the filesystem? > > I can think of: > > - MBR > - Volume Boot Record > > Anything else?Potentially all unused space inside and between partitions / filesystems / logical volumes. The boot loader is sometimes stored in the space between the MBR and the first partition. Other peculiar things lie in other spaces. However if you don't care about guests that are malicious / hiding data, then you can ignore everything except for the MBR and any non-zero data between the MBR and the first partition. Note for GPT you have to take into account two partition tables as well.> If these have been compared, the compared image should be as safe to use > as the original one? > > (I could imagine that there can be extra data outside filesystem, maybe > in regions outside the partition table, but those data shouldn't get > executed after starting the image in a VM.)For Linux guests, you could boot from an external kernel & initrd ... Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
Richard W.M. Jones
2013-Nov-22 20:15 UTC
Re: [Libguestfs] Auditing a vm image - virt-diff - was: Read MBR and store in a file?
On Fri, Nov 22, 2013 at 01:24:35PM -0500, Alex Nelson wrote:> Actually, I don't suppose qemu-img has a FUSE-like wrapper that exposes the > underlying image as a raw file?qemu-nbd is the closest, AFAIK. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://libguestfs.org
Matthew Booth
2013-Nov-25 09:43 UTC
Re: [Libguestfs] Auditing a vm image - virt-diff - was: Read MBR and store in a file?
On Fri, 2013-11-22 at 20:14 +0000, Richard W.M. Jones wrote:> On Fri, Nov 22, 2013 at 05:56:00PM +0000, adrelanos wrote: > > Thank you all for your suggestions! > > > > Richard W.M. Jones: > > > I keep meaning to write a comprehensive "virt-diff" tool. I needed it > > > myself just yesterday. > > > > Most interesting. I guess there are two reasons for creating such a > > tool: just compare the images (show the diff) and/or check for malicious > > additions in the other image. > > > > Did you consider implementing the former or both? > > For all the reasons that Alex goes into, it would just be for checking > NON-malicious differences. The use case is to reverse engineer what > files change in a guest when you perform an action (eg. install a > Windows driver or run some Linux administrative command). > > [...] > > At the moment I am not trying to write a virt-diff like tool, but > > something simpler. A tool to create a report of all of a vm image's > > contents. (Checksums for all files, filesystem, for MBR and Volume Boot > > Record.) When publishing VM images, it might be useful to publish such a > > report together with the image, so others who re-build from source can > > be certain, they ended up with a very similar image. When having created > > two such reports, one could easily get a virt-diff like tool. > > I think Matt Booth was doing something like this for Windows systems, > with the aim of being able to recreate a Windows VM from a (smaller) > description. Don't know what state that was/is in.I wrote a POC tool to store an MD5 of every file on a Windows filesystem. It looked like a good idea for what it was, but not very applicable here.> [...] > > What other data can there be outside the filesystem? > > > > I can think of: > > > > - MBR > > - Volume Boot Record > > > > Anything else? > > Potentially all unused space inside and between partitions / > filesystems / logical volumes. The boot loader is sometimes stored in > the space between the MBR and the first partition. Other peculiar > things lie in other spaces.Any mechanism for doing volume management. e.g. MBR, GPT, LVM (Linux), LDM (Windows). Sometimes these overlap and interact in complex ways, e.g. LDM has an MBR and a GPT, both of which it ignores in favour of its own metadata.> However if you don't care about guests that are malicious / hiding > data, then you can ignore everything except for the MBR and any > non-zero data between the MBR and the first partition. Note for GPT > you have to take into account two partition tables as well. > > > If these have been compared, the compared image should be as safe to use > > as the original one? > > > > (I could imagine that there can be extra data outside filesystem, maybe > > in regions outside the partition table, but those data shouldn't get > > executed after starting the image in a VM.)I'm coming in to this discussion late, so I don't know what you're doing or how paranoid you need to be. However, cranking up the paranoia a little, imagine the following scenario: There's a bug in a critical boot element which means the boot relies on uninitialised disk space. As it happens, in a normal installation this uninitialised disk space is always safe and it's located somewhere which will rarely, if ever, be touched, so nobody has every noticed it. (Paranoia level: state actor. Somebody put the bug there deliberately.) Malicious person modifies the uninitialised disk space. Your tool will never notice. The boot process is now compromised. You could probably come up with more with a few minutes of thought. I'm pretty sure a dedicated team given a few months to work on this project could come up with some inventive ideas :)> For Linux guests, you could boot from an external kernel & initrd ...Again, not sure what that's trying to achieve, but the boot process isn't over after switchroot. Matt
adrelanos
2013-Nov-25 22:20 UTC
Re: [Libguestfs] Auditing a vm image - virt-diff - was: Read MBR and store in a file?
Hi Alex! Thank you for your suggestions. Fiwalk seems great. I couldn't test it yet, since the version in Debian does not support ext4 yet and because upstream does not sign their images. (And suggesting to use lots of code only verified by github https seems to open up a bigger hole than I am trying to close.) I would be curious if it produces deterministic results (i.e. when running on the same image, always producing the very same report and when running on a marginally different image, be in roughly the same order with only marginal changes.). I will keep an eye on Fiwalk. The one or the other issue my resolve itself at some point. Cheers, adrelanos Alex Nelson:> Hi all, > > Piping in here as someone who has worked on file system and Registry > differencing for a few years now. Taking diffs of a storage system is not > a straightforward task. Hopefully, this message saves you some > re-implementation heartache. > > In the forensics world, there is a tool called Fiwalk, which enumerates the > contents of a file system and its metadata (with some basic data summaries, > including libmagic and checksums). The tool "idifference" compares file > system states and enumerates differences, using the Digital Forensics XML > output from Fiwalk. > > A research publication on the forensic differencing process and idifference > is here: > http://dfrws.org/2012/proceedings/DFRWS2012-6.pdf > > Fiwalk is a component of The SleuthKit, here: > https://github.com/sleuthkit/sleuthkit > If you wish to use Fiwalk on your images, you should convert any of your > disk images to a raw image or Expert Witness Format. > Actually, I don't suppose qemu-img has a FUSE-like wrapper that exposes the > underlying image as a raw file? > > DFXML has an entry on the Forensics Wiki: > http://www.forensicswiki.org/wiki/Category:Digital_Forensics_XML > > As for your external-to-filesystem data question: I think you got the > essential non-file-system data. I can imagine data fragments from > past/shrunken file systems, or hidden-data regions that fall outside what's > recorded in the partition table. My imagination runs dry there, though. > > --Alex > > > > > On Fri, Nov 22, 2013 at 12:56 PM, adrelanos <adrelanos@riseup.net> wrote: > >> Thank you all for your suggestions! >> >> Richard W.M. Jones: >>> I keep meaning to write a comprehensive "virt-diff" tool. I needed it >>> myself just yesterday. >> >> Most interesting. I guess there are two reasons for creating such a >> tool: just compare the images (show the diff) and/or check for malicious >> additions in the other image. >> >> Did you consider implementing the former or both? >> >> Do you think it's realistic to compare vm images with the goal of >> eventually finding deliberately hard to detect (malicious) changes? >> >> At the moment I am not trying to write a virt-diff like tool, but >> something simpler. A tool to create a report of all of a vm image's >> contents. (Checksums for all files, filesystem, for MBR and Volume Boot >> Record.) When publishing VM images, it might be useful to publish such a >> report together with the image, so others who re-build from source can >> be certain, they ended up with a very similar image. When having created >> two such reports, one could easily get a virt-diff like tool. >> >>> although that *only* >>> compares files, not the other data outside the filesystem >> >> What other data can there be outside the filesystem? >> >> I can think of: >> >> - MBR >> - Volume Boot Record >> >> Anything else? >> >> If these have been compared, the compared image should be as safe to use >> as the original one? >> >> (I could imagine that there can be extra data outside filesystem, maybe >> in regions outside the partition table, but those data shouldn't get >> executed after starting the image in a VM.) >> >> Cheers, >> adrelanos >> >> _______________________________________________ >> Libguestfs mailing list >> Libguestfs@redhat.com >> https://www.redhat.com/mailman/listinfo/libguestfs >> >
Maybe Matching Threads
- Auditing a vm image - virt-diff - was: Read MBR and store in a file?
- Re: Auditing a vm image - virt-diff - was: Read MBR and store in a file?
- Re: Read MBR and store in a file?
- Re: Read MBR and store in a file?
- Re: Auditing a vm image - virt-diff - was: Read MBR and store in a file?