Crates.io | zffacquire |
lib.rs | zffacquire |
version | 2.0.0-beta.0 |
source | src |
created_at | 2021-10-17 21:59:21.026956 |
updated_at | 2023-12-28 15:36:17.117177 |
description | A command line utility for acquiring data into the forensic format Zff. |
homepage | https://zff.dev |
repository | https://github.com/zff-team/zffacquire |
max_upload_size | |
id | 466436 |
size | 106,765 |
zffacquire
is a command line utility for acquiring images and/or logical file/folder structures into the forensic format Zff.
First, you need to install rust and cargo to build or install zffacquire
.
After that you still need the gcc, which you can install as follows (depends on the distribution):
$ sudo apt-get install gcc
$ sudo dnf install gcc
Then you can easily build this tool yourself by using cargo:
[/home/ph0llux/projects/zffacquire] $ cargo build --release
Or you can install the tool directly from crates.io:
$ cargo install zffacquire
To create an image with the default parameters, the following command is just enough:
zffacquire physical -i /dev/sda -o /media/usb-hdd/my_zff_container
You can also dump a logical folder structure into a logical zff container:
zffacquire logical -i /home/ph0llux/pictures -o /media/usb-hdd/my_zff_container
And you can extend an zff container by adding additional containers:
zffacquire physical -i /dev/sda -o /media/usb-hdd/my_zff_container
zffacquire extend logical -i /home/ph0llux/pictures -a /media/usb-hdd/my_zff_container.z01
zffacquire extend physical -i /dev/sdb -a /media/usb-hdd/my_zff_container.z01
The complete feature set of zffacquire
can be shown using zffacquire -h
.