Home:ALL Converter>How to find file on NTFS volume given a volume offset

How to find file on NTFS volume given a volume offset

Ask Time:2010-04-29T01:36:05         Author:Charles

Json Formatter

Using a hex-editor to mount a NTFS volume, I've found an offset within the volume containing data I'm interested in. How can I figure out the full path/name of the file containing this volume offset?

Author:Charles,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/2731822/how-to-find-file-on-ntfs-volume-given-a-volume-offset
Christian :

Perhaps there are still some people searching for the solution. There is a tool for this problem: SleuthKit Tools.\n\nGiven an byte offset from the beginning of the partition table you have to divide it by the block size of your NTFS-Partition (usually 4096).\n\nifind /dev/... -d block_offset => inode_number\n\nffind /dev/... inode_number => Location of file",
2015-08-23T12:37:56
yy