Hi
Try to find flies like jpg, word and pdf manually via hexedit in FTK Imager
As we know the signature of jpg is:
Header --> FFD8FF and Footer-->FFD9FF
Â
What’s is the signature of Word and pdf?
Â
As I see the header of docx is
header ---> 50 4B
But what is the footer?
@tony75 A docx file is in fact a PKZIP file. Such a file can have any numeric ending. The final bytes are a pointer to the final directory within the zip file. It therefore depends on file size, and the number files in the ZIP.
With carving, one often continues until one finds the start of the next file
Â
Don't forget, an a JPG there may be more than one FF D9 in a complete file
Â
Also, get TriD:
https://mark0.net/soft-trid-e.html
and/or study its deflist, either:
https://mark0.net/download/triddefs.zip
or its .xml version:
https://mark0.net/download/triddefs_xml.7z
Â
The header of docx (as well as that of some types of zip) is:
https://file-extension.net/seeker/file_extension_docx
Â
Header Hexdump: Â 50 4B 03 04Â
jaclaz
Carving should be the last thing you should do. File writes to disk are not linear! If there is a way for recovering a docx at filesystem logical level using info from MFT/FAT entries, you should certainly try those first. It's more or less data recovery, not forensics 🙂