Skip to content

Mount DFXML file as though it were a disk image

License

Unknown, LGPL-2.1 licenses found

Licenses found

Unknown
LICENSE
LGPL-2.1
COPYING
Notifications You must be signed in to change notification settings

ajnelson-nist/dfxmlfs

 
 

Repository files navigation

DFXMLFS

Some disks use storage systems that lack support from standard sources. In these cases, to read the disk you need working knowledge of:

  • The disk's partition manager;
  • The disk's file system(s);
  • A way to present the file system contents, whether through a forensic tool, a kernel-level file system, or a userspace-level file system.

Some tools exist to deal with partition managers (e.g. Disktype, The SleuthKit, UPartsFS).

This tool exists to deal with the file system presentation. Conceptually, you could equate this tool to running ls -lR, capturing its output to a text file, shipping that text file to another computer, and navigating that file as a mounted file system. The difference is, instead of the output of ls -l, this tool uses Digital Forensics XML, a well-structured language for file system metadata.

License

LGPL v2.1, inherited from an example file system packaged with the FUSE-Python bindings.

Usage

For a demonstration, run the following commands. The first installs packages; the second and third initialize and download dependent Git repositories; and the last runs the demo code. (Note that the dollar sign indicates a value you should replace yourself.)

deps/install_dependent_packages-$your_distro.sh #Requires sudo
git submodule init
git submodule update
make

In general, this program requires a Python version that has fuse-python available. FUSE-Python is a Python 2 module at the moment, so this example uses python2.7:

python2.7 dfxmlfs.py \
  -o xmlfile=$path_to_dfxml_file \
  [-o imgfile=$path_to_image_file] \
  $mount_point

(The xmlfile option will eventually be an argument.)

The imgfile option provides the path to the disk image that the XML file represents. The disk image is not used for any metadata accesses, but instead is for extracting file contents.

State of the code

  • Mounting does work.
  • Walking the directory tree does work.
  • Extracting file contents somewhat works. Currently slow on big files.
  • Writing anywhere in the file system will never work. This is meant to be a read-only file system.

Resources

About

Mount DFXML file as though it were a disk image

Resources

License

Unknown, LGPL-2.1 licenses found

Licenses found

Unknown
LICENSE
LGPL-2.1
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 67.0%
  • Makefile 18.0%
  • Shell 15.0%