By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Digital forensics is the process of collecting, analyzing, and preserving electronic evidence to investigate cybercrimes, data breaches, or policy violations. You’d use it to recover deleted files, trace hackers, or prove fraud in legal cases.
Cybercrime costs the global economy $6 trillion annually (Cybersecurity Ventures, 2023). Digital forensics helps: - Law enforcement prosecute criminals.- Businesses respond to data breaches.- IT teams diagnose system intrusions.- Individuals recover lost or stolen data.
Without forensics, attackers erase their tracks, and evidence vanishes.
dd
FF D8 FF
shred
Key question: What evidence do we need to prove the crime?
Preservation
dd if=/dev/sda of=evidence.img bs=4M
Hash the image (e.g., sha256sum evidence.img) to prove it wasn’t altered.
sha256sum evidence.img
Analysis
Tools: Autopsy, Volatility (RAM analysis), Wireshark (network traffic).
Reporting
Include:
Presentation
strings
binwalk
ls
cd
grep
Goal: Create a forensic image of a USB drive and recover deleted files.
Empty the recycle bin (if on Windows).
Create a Forensic Image
E:\
usb_evidence.dd
Linux (Command Line): ```bash # Identify the USB drive (e.g., /dev/sdb) sudo fdisk -l
# Create a forensic image sudo dd if=/dev/sdb of=usb_evidence.dd bs=4M status=progress
# Generate a hash for integrity sha256sum usb_evidence.dd > usb_evidence.hash ```
Analyze the Image with Autopsy
Expected outcome: Recovered deleted files with original timestamps.
File Carving (Manual Method)
bash binwalk -e usb_evidence.dd
_usb_evidence.dd.extracted
scalpel
auditd
A forensic investigator is analyzing a suspect’s laptop. What is the first step they should take to preserve evidence?
A) Boot the laptop to check running processes.B) Create a forensic image of the hard drive.C) Delete temporary files to speed up analysis.D) Copy important files to an external drive.
Correct Answer: B) Create a forensic image of the hard drive.Explanation: Booting the laptop (A) alters evidence (e.g., timestamps, RAM). Deleting files (C) destroys evidence. Copying files (D) doesn’t capture deleted data or slack space. A forensic image preserves the entire drive in its original state.Why the Distractors Are Tempting: - A: Beginners might think checking running processes is urgent, but it modifies RAM.- C: Some assume cleaning up speeds up analysis, but it’s destructive.- D: Copying files seems logical, but it misses hidden/deleted data.
An investigator recovers a deleted JPEG file using file carving. What header did the tool likely search for?
A) PK (ZIP files) B) FF D8 FF (JPEG files) C) 25 50 44 46 (PDF files) D) 47 49 46 38 (GIF files)
PK
25 50 44 46
47 49 46 38
Correct Answer: B) FF D8 FF (JPEG files).Explanation: File carving works by identifying file signatures (headers/footers). FF D8 FF is the standard JPEG header. The other options are signatures for ZIP, PDF, and GIF files.Why the Distractors Are Tempting: - A: ZIP files are common, but not relevant to JPEGs.- C/D: PDFs and GIFs are image-adjacent, but their headers differ.
A company’s server was hacked, and logs show an attacker used a reverse shell. Which tool would best analyze the RAM for traces of this attack?
A) Wireshark B) Autopsy C) Volatility D) FTK Imager
Correct Answer: C) Volatility.Explanation: Volatility is a RAM forensics tool that detects malware, open network connections, and running processes—critical for analyzing reverse shells. Wireshark (A) analyzes network traffic, Autopsy (B) analyzes file systems, and FTK Imager (D) creates disk images.Why the Distractors Are Tempting: - A: Wireshark is for networks, but the question focuses on RAM.- B: Autopsy is a general forensic tool, but not specialized for RAM.- D: FTK Imager creates images but doesn’t analyze RAM.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.