Unformatted text preview:

Computer ForensicsMBR and GPT DisksNTFS ArchitectureNTFS ArchitectureNTFS Boot SectorSlide 6NTSF Boot SectorSlide 8Slide 9NTFS BPBSlide 11Slide 12Slide 13NTFS Master File TableSlide 15Slide 16MFT Record StructureMFT RecordsSlide 19MFT RecordSlide 21Slide 22Slide 23Slide 24Slide 25Slide 26Slide 27MFT Record StructureSlide 29Slide 30Slide 31Slide 32MFT List of possible attributesMFT Attribute LayoutMFT Attribute ExampleSlide 36Slide 37Slide 38Slide 39Slide 40Slide 41NTFS VersionsComputer ForensicsNTFS File SystemMBR and GPT DisksMBR disks for 32b 86x-compatiblesGPT disks for 64b Itanium processorsStart with a MBR in order to maintain compatibilityMBR has a single partition with a partition table entry of 0xEENTFS ArchitectureNTFS ArchitectureNTFS Boot SectorNotice that the end of sector marker is 55 AA.You can look for this to find boot sectors for NTFS and DOS.NTFS Boot Sector0x00 3B Jump Instruction 0x03 8B OEM ID 0x0B 25B BPB 0x24 48B Extended BPB 0x54 426B Bootstrap Code. 0x1FE 2B End of Sector MarkerNTSF Boot SectorNTSF Boot SectorMany fields are not important, but:0x0B, Bytes per sector. 0x0D Sectors per Cluster0x15 Media descriptor. F8: HD; F0: HD Floppy0x28 Total sectors.0x30 Logical cluster number for the MFT0x38 Logical cluster number copy of the MFT0x40 Clusters per MFT Record. 0x48 Volume serialNTFS Boot SectorWinHex allows access to an interpreted NTFS Boot Sector.Use the Access Tab.NTFS BPB0x0B Bytes per sector: 00 02  0200 = 512 decimal0x0D Sectors per cluster: 0x 080x0E Reserved sectors 0x 00 00NTFS BPB0x15: Media Descriptor: F8 is hard drive, F0 is floppy.0x28 Total number of sectors: F7AF4E0900000000  000000094EAFF7  156,151,799 sectors, i.e. ~80GBNTFS BPB0x30: Logical cluster number for MFT copy 1: cluster C07FE9 (File $MFT)0x38: Logical cluster number for MFT copy 2: cluster 40029DNTFS BPB0x40: Clusters per MFT record: F60x48: Volume Serial NumberNTFS Master File TableFirst four entries are replicated, so that MFT can be repairedFirst 16 records are reserved for metadata files, their name begins with a dollar sign ($)NTFS Master File Table1. Master file table $MFT. 2. Master file table mirror $MftMirr. 3. Log file $LogFile. 4. Volume $Volume Attribute definitions $AttrDef. 5. The root folder “.” 6. Cluster bitmap $Bitmap 7. Boot sector $Boot (located at the beginning of partition) 8. Bad cluster file $BadClus9. Security file $Secure 10. Upcase table $Upcase 11. NTFS extension file $Extend, that is used for future use.NTFS Master File TableMFT Record StructureEntries are 1KB eachEntries containFile AttributesLocation DataMFT RecordsSmall Files (<900B) are contained completely in the MFT entry.MFT RecordsFolders contain index data.Small folders reside within the MFT recordLarger folders have an index structure to other data blocks. They use a B-tree structure.MFT RecordEach MFT record is addressed by a 48 bit MFT entry value.First entry has address 0.Each MFT entry has a 16 bit sequence number that is incremented when the entry is allocated.MFT entry value and sequence number combined yield 64b file reference address.MFT RecordNTFS uses the file reference address to refer to MTF entries.When the system crashes during allocation, then the sequence number describes whether the MTF entry belonged to the previous file or to the current one.MFT RecordMFT entry attributes are loosely defined.Each attribute is preceded by the attribute header.The attribute header identifiesType of attribute.Size.Name.MFT Record StructureThe attribute header gives basic information about the attribute.A resident attribute is stored in the MFT entry.A non-resident entry is stored in a cluster outside the MFT.MFT Record StructureResident attributes are stored in MFT record.Non-resident attributes are stored in cluster runs.Cluster run consists of consecutive clusters and are identified by starting cluster and run length.NTFS distinguishes between Virtual Cluster Numbers and Logical Cluster Numbers.LCN * (#sectors in cluster) = sector numberLCN 0 is first cluster in the volume (boot sector).VCN 0 refers to the first cluster in a cluster run.MFT Record StructureMFT entry header has a fixed structureMFT Record Structure0x00 - 0x03: Magic Number: "FILE" 0x04-0x05: Offset to the update sequence.0x06-0x07: Number of entries in fixup array0x08-0x0f: $LogFile Sequence Number (LSN)0x10-0x11: Sequence number0x12 - 0x13: Hard link count0x14-0x15: Offset to first attributeMFT Record Structure0x16 - 0x17: Flags: 0x01: record in use, 0x02 directory.0x18-0x1b: Used size of MFT entry0x1c-0x1f: Allocated size of MFT entry.0x20-0x27: File reference to the base FILE record0x28-0x29: Next attribute ID0x2a-0x2b: (XP) Align to 4B boundary0x2c-ox2f: (XP) Number of this MFT record0x30-0x100: Attributes and fixup valueMFT Record Structure EXAMPLE 1: A directory entryMFT RecordMFT records start with “FILE”. A bad cluster would start with “BAAD”MFT RecordBytes 4-5: Offset to update sequence.Bytes 6-7: Number of entries in fixup arrayBytes 8-f: Log file sequence numberBytes 0x10-0x11: Sequence number: 59 00MFT RecordBytes 0x12-0x13: 2 – hard link countBytes 0x14-0x15: Offset to first attribute: 0x 38 Bytes 0x16-0x17: Flags: In use and contains a directory 0x 0001 | 0x 0002MFT RecordBytes 0x14 – 0x15: First attribute starts at 0x 38 00  0x 00 38MFT List of possible attributesDefined in $AttrDef entry of MFT, but default is:0x10 STANDARD_INFORMATION0x20$ATTRIBUTE_LIST0x30$FILE_NAME0X40 (NT) $VOLUME_VERSION (2K) $OBJECT_ID0x50 $SECURITY_DESCRIPTOR0x60$VOLUME_NAME0x70 $VOLUME_INFORMATION0x80$DATA0x90$INDEX_ROOT0xA0$INDEX_ALLOCATION0xB0$BITMAP0xC0 (NT) $SYMBOLIC_LINK, (2K) $REPARSE_POINT0xD0$EA_INFORMATION0xE0$EA0xF0NT$PROPERTY_SET0x100 (2K) $LOGGED_UTILITY_STREAMMFT Attribute LayoutAttributes can be resident or non-resident.Beginning is always the same:0x00 Attribute Type Identifier0x04 Length of Attribute0x08 non-resident flag0x09 length of name0x0a offset to name0x0c flagsMFT Attribute ExampleAttribute is of type 00 00 00 01.Standard InformationAttribute is 0x 00 00 00 60 bytes long.Attribute is resident (0x00)Contents are 0x 00 00 00 48 bytes long and start at offset 0x 00 18.MFT Attribute


View Full Document

SCU COEN 152 - NTFS File System

Download NTFS File System
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view NTFS File System and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view NTFS File System 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?