During a mobile forensics investigation, an analyst needs to acquire data from an iPhone that cannot be bypassed via passcode. The device is locked, and the analyst has the passcode. Which acquisition method provides the MOST comprehensive data extraction?
Trap 1: Manual acquisition
Manual acquisition involves an examiner physically operating the device through its touchscreen, screenshotting or photographing each screen that displays relevant data. This process is inherently slow, prone to human error such as missed content or screen transitions, and captures only data currently visible on the interface. It does not create a forensic image, accesses no underlying storage, and completely misses deleted messages, call logs, or artifacts hidden in app sandboxes.
Trap 2: Logical acquisition
Logical acquisition relies on the device's operating system to enumerate and copy files through APIs, often using ADB backup or MTP, yielding an organized set of allocated files and their timestamps. Because it operates above the storage driver, it can only see objects the OS considers accessible; unallocated blocks, deleted entries, and raw partition remnants are never presented to the extraction agent. The result is a clean but incomplete dataset that may satisfy simple requests but fails to reveal deleted database rows or freed blocks.
Trap 3: File system acquisition
File system acquisition reads the on-disk file system structures directly, such as ext4 inodes, APFS file records, or FAT directory entries, to reconstruct allocated files and their metadata (names, sizes, timestamps) without going through the operating system's user-level APIs. However, it operates at the logical file system layer rather than the raw block layer, so unallocated storage blocks and free-space remnants are not imaged; deleted data that has not been overwritten may remain invisible unless the tool conducts targeted carving. This distinguishes it from physical acquisition, which captures the medium itself, and from logical acquisition, which depends on the OS.
- A
Physical acquisition
Physical acquisition creates a complete bit-for-bit image of the device's internal flash storage via low-level interfaces such as JTAG, ISP, or chip-off, bypassing the operating system and file system. This preserves user data, system partitions, unallocated space, and remnants of deleted files, enabling forensic recovery of free-space artifacts from messaging and browser applications. It is the only option listed that can reliably capture deleted data from unused storage blocks, making it the definitive approach for deep mobile forensic examinations.
- B
Manual acquisition
Why wrong: Manual acquisition involves an examiner physically operating the device through its touchscreen, screenshotting or photographing each screen that displays relevant data. This process is inherently slow, prone to human error such as missed content or screen transitions, and captures only data currently visible on the interface. It does not create a forensic image, accesses no underlying storage, and completely misses deleted messages, call logs, or artifacts hidden in app sandboxes.
- C
Logical acquisition
Why wrong: Logical acquisition relies on the device's operating system to enumerate and copy files through APIs, often using ADB backup or MTP, yielding an organized set of allocated files and their timestamps. Because it operates above the storage driver, it can only see objects the OS considers accessible; unallocated blocks, deleted entries, and raw partition remnants are never presented to the extraction agent. The result is a clean but incomplete dataset that may satisfy simple requests but fails to reveal deleted database rows or freed blocks.
- D
File system acquisition
Why wrong: File system acquisition reads the on-disk file system structures directly, such as ext4 inodes, APFS file records, or FAT directory entries, to reconstruct allocated files and their metadata (names, sizes, timestamps) without going through the operating system's user-level APIs. However, it operates at the logical file system layer rather than the raw block layer, so unallocated storage blocks and free-space remnants are not imaged; deleted data that has not been overwritten may remain invisible unless the tool conducts targeted carving. This distinguishes it from physical acquisition, which captures the medium itself, and from logical acquisition, which depends on the OS.