Extract the $MFT
sudo icat -o <offset (in sectors not bytes)> image.E01 0 > mft.raw
GUI application on windows
Use MFTExplorer (a tool from Eric Zimmerman) directly on mft.raw
TUI application on linux
Use my own custom script mft-reader.sh
Parse $MFT to csv
On linux
Use my own custom script
mft-reader.sh
mft-reader.sh mft.raw > mft.csv
# and remove the first line of the output
# or use
# analyzeMFT : https://github.com/dkovar/analyzeMFT : pip2 install analyzeMFTOn windows
Parse the MFT of the current workstation:
PS C:\Users\Sekoia>MFTECmd.exe --csv C:\Users\Sekoia\Documents --csvf mft_parse.csvParse an MFT extracted form another disk
PS C:\Users\Sekoia>MFTECmd.exe -f .\MFT --csv C:\Users\Sekoia\Documents --csvf mft_parse.csvIt’s also possible to use
MFTExplorerwhich is the same but with a GUI
MFTECmd.exe works also for
$UsnJrnl
Search a keywords
Select-String -Path C:\Users\talion\Desktop\mft.csv -Pattern "your keyword" | Format-Table