There are some specialized tools that allow an investigator to dig out certain types of files from unallocated space by identifying the header of that file type and copying all of the information between the head and a valid end of file marker. What is the name for this technique?
a. File imaging
b. Data carving
c. File reconciliation
d. Magic number recovery
b.
Computer Science & Information Technology
You might also like to view...
What does the function that follows return? TO_CHAR(1234, '$99,999.99')
A. $12,340.00 B. $ 1,234.00 C. $ 12.34 D. $1,234.00
Computer Science & Information Technology
What is not true about this code segment?
location = fileObject.tellg(); a. tellg is a member function of fileObject. b. location is a pointer. c. The value of location after the segment executes must be less than or equal to the number of bytes in the file attached to fileObject. d. fileObject is an istream object.
Computer Science & Information Technology