- Windows Forensics Cookbook
- Oleg Skulkin Scar de Courcier
- 218字
- 2021-07-02 20:57:45
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 with dc3dd.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 in case you didn't know, everything is a file in Linux. As you can see in our command, we put the physical drive 2 here (this is the drive we wanted to image, but in your case it may be another drive, depending on the number of drives connected to your workstation).
- of - stands for output file. Here, you should type the destination of your image in RAW format. In our case, it's X:\ drive and 147-2017.dd file.
- hash - as has already been said, DC3DD supports four hashing algorithms: MD5, SHA-1, SHA-256, and SHA-512. We chose SHA-256, but you can choose whichever one you like.
- log - here, you should type the destination for the logs. You will find the image version, image hash, and so on in this file once acquisition is completed.
推薦閱讀
- Node.js Design Patterns
- JavaScript:Functional Programming for JavaScript Developers
- OpenNI Cookbook
- 高級語言程序設計(C語言版):基于計算思維能力培養
- Learning Unity 2D Game Development by Example
- Mastering Linux Security and Hardening
- Django 5企業級Web應用開發實戰(視頻教學版)
- C語言程序設計
- Mastering SciPy
- SSH框架企業級應用實戰
- 數據結構:Python語言描述
- 軟硬件綜合系統軟件需求建模及可靠性綜合試驗、分析、評價技術
- 現代C++語言核心特性解析
- 虛擬現實:引領未來的人機交互革命
- Vue.js從入門到精通