Drive acquisition in RAW format with dc3dd
DC3DD (by Jesse Kornblum) is a patched version of the classic GNU dd utility with some computer forensics features. For example, the fly hashing with a number of algorithms, such as MD5, SHA-1, SHA-256, and SHA-512, showing the progress of the acquisition process, and so on.
Getting ready
You can find a compiled standalone version of DC3DD for Windows at SourceForge. Just download the ZIP or 7z archive, unpack it, and you are ready to go.
How to do it...
The steps for drive acquisition in RAW format using dc3dd are as follows:
- Open
Windows Command Prompt,
change directory (you can use cd command to do it) to the one withdc3dd.exe
, and type the following command:
dc3dd.exe if=\\.\PHYSICALDRIVE2 of=X:\147-2017.dd hash=sha256 log=X:\147-2017.log
- Press Enter and the acquisition process will start.
Of course, your command will be a bit different, so let's find out what each part of it means:
- if - stands for input file. Originally, dd was a Linux utility, and...