Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeffbryner/pymftgrabber

Utility to retrieve the Master File Table (MFT) from a live running NTFS volume and send it to a netcat listener.
https://github.com/jeffbryner/pymftgrabber

Last synced: about 2 months ago
JSON representation

Utility to retrieve the Master File Table (MFT) from a live running NTFS volume and send it to a netcat listener.

Awesome Lists containing this project

README

        

2012 Jeff Bryner
Script to retrieve the Master File Table (MFT) record for an NTFS file system from a live system.

Usage:
Victim/Client NTFS/Windows box:
python pyMFTGrabber.py -f "\\.\C:" -s 10.200.1.1 -p 6666
(or compile it using pyinstaller and run without python)

Forensic workstation at 10.200.1.1:
nc -l -p 6666 >mft.dd

You can then use several tools to decode the MFT records:
1) analyzeMFT.py ( https://github.com/dkovar/analyzeMFT )
analyzeMFT.py -f mft.dd -o mft.out

2) INDXParse (https://github.com/williballenthin/INDXParse )
MFTINDX.py -t MFT -m -d mft.dd > mft.out

Demo at: http://www.youtube.com/watch?v=uKSM_kbpn4g