# Volatility # Copyright (C) 2008-2011 Volatile Systems # Copyright (C) 2011 Jamie Levy (Gleeda) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # """ @author: Jamie Levy (gleeda) @license: GNU General Public License 2.0 or later @contact: jamie.levy@gmail.com @organization: Volatile Systems """ # Information for this script taken heavily from File System Forensic Analysis by Brian Carrier import volatility.plugins.common as common import volatility.scan as scan import volatility.utils as utils import volatility.addrspace as addrspace import volatility.obj as obj import struct import binascii ATTRIBUTE_TYPE_ID = { 0x10:"STANDARD_INFORMATION", 0x20:"ATTRIBUTE_LIST", 0x30:"FILE_NAME", 0x40:"OBJECT_ID", 0x50:"SECURITY_DESCRIPTOR", 0x60:"VOLUME_NAME", 0x70:"VOLUME_INFORMATION", 0x80:"DATA", 0x90:"INDEX_ROOT", 0xa0:"INDEX_ALLOCATION", 0xb0:"BITMAP", 0xc0:"REPARSE_POINT", 0xd0:"EA_INFORMATION", #Extended Attribute 0xe0:"EA", 0xf0:"PROPERTY_SET", 0x100:"LOGGED_UTILITY_STREAM", } VERBOSE_STANDARD_INFO_FLAGS = { 0x1:"Read Only", 0x2:"Hidden", 0x4:"System", 0x20:"Archive", 0x40:"Device", 0x80:"Normal", 0x100:"Temporary", 0x200:"Sparse File", 0x400:"Reparse Point", 0x800:"Compressed", 0x1000:"Offline", 0x2000:"Content not indexed", 0x4000:"Encrypted", 0x10000000:"Directory", 0x20000000:"Index view", } # this method taken from mftscan by tecamac in issue 309: # http://code.google.com/p/volatility/issues/detail?id=309 # I like that it's more readable than the long version I had above :-) SHORT_STANDARD_INFO_FLAGS = { 0x1:"r", 0x2:"h", 0x4:"s", 0x20:"a", 0x40:"d", 0x80:"n", 0x100:"t", 0x200:"S", 0x400:"r", 0x800:"c", 0x1000:"o", 0x2000:"I", 0x4000:"e", 0x10000000:"D", 0x20000000:"i", } FILE_NAME_NAMESPACE = { 0x0:"POSIX", # Case sensitive, allows all Unicode chars except '/' and NULL 0x1:"Win32", # Case insensitive, allows most Unicide except specials ('/', '\', ';', '>', '<', '?') 0x2:"DOS", # Case insensitive, upper case, no special chars, name is 8 or fewer chars in name and 3 or less extension 0x3:"Win32 & DOS", # Used when original name fits in DOS namespace and 2 names are not needed } MFT_FLAGS = { 0x1:"In Use", 0x2:"Directory", # if flag & 0x0002 == 0 this is a regular file } INDEX_ENTRY_FLAGS = { 0x1:"Child Node Exists", 0x2:"Last entry in list", } MFT_PATHS_FULL = {} class MFT_FILE_RECORD(obj.CType): def remove_unprintable(self, str): return ''.join([c for c in str if (ord(c) > 31 or ord(c) == 9) and ord(c) <= 126]) def add_path(self, fileinfo): cur = MFT_PATHS_FULL.get(int(self.RecordNumber), None) if cur == None or cur["filename"].find("~") != -1 and fileinfo.is_valid(): temp = {} temp["ParentDirectory"] = fileinfo.ParentDirectory temp["filename"] = self.remove_unprintable(fileinfo.get_name()) MFT_PATHS_FULL[int(self.RecordNumber)] = temp def get_full_path(self, fileinfo): parent = "" parent_id = fileinfo.ParentDirectory & 0xffffff path = self.remove_unprintable(fileinfo.get_name()) or "(Null)" if int(self.RecordNumber) == 5 or int(self.RecordNumber) == 0: return path while parent != {}: parent = MFT_PATHS_FULL.get(int(parent_id), {}) if parent == {} or parent["filename"] == "" or int(parent_id) == 0 or int(parent_id) == 5: return path path = parent["filename"] + "\\" + path parent_id = parent["ParentDirectory"] & 0xffffff return path def get_mft_type(self): thetype = "In Use & " if self.Flags & 0x1 == 0x1 else "" if int(self.Flags) & 0x2: thetype += "Directory" elif int(self.Flags) & 0x2 == 0: thetype += "File" return thetype.rstrip(" & ") class RESIDENT_ATTRIBUTE(obj.CType): def process_attr_list(self, bufferas, mft_entry, attributes = [], check = False): start = 0 end = self.obj_offset + self.ContentSize while start < end: item = obj.Object("ATTRIBUTE_LIST", vm = bufferas, offset = self.AttributeList.obj_offset + start) if item == None: return try: thetype = ATTRIBUTE_TYPE_ID.get(int(item.Type), None) if thetype == None: return elif item.Length > 0x20 and thetype in ["STANDARD_INFORMATION", "FILE_NAME"]: theitem = obj.Object(thetype, vm = bufferas, offset = item.AttributeID.obj_offset) if thetype == "STANDARD_INFORMATION" and (not check or theitem.is_valid()): attributes.append(("STANDARD_INFORMATION (AL)", theitem)) elif thetype == "FILE_NAME" and (not check or theitem.is_valid()): mft_entry.add_path(theitem) attributes.append(("FILE_NAME (AL)", theitem)) except struct.error: return if item.Length == 0: return start += item.Length class STANDARD_INFORMATION(obj.CType): # XXX need a better check than this # we return valid if we any timestamp other than Null def is_valid(self): return "1970-01-01 00:00:00" != str(self.ModifiedTime).strip() or \ "1970-01-01 00:00:00" != str(self.MFTAlteredTime).strip() or \ "1970-01-01 00:00:00" != str(self.FileAccessedTime).strip() or \ "1970-01-01 00:00:00" != str(self.CreationTime).strip() def get_type_short(self): if self.Flags == None: return "?" type = "" for i, j in sorted(SHORT_STANDARD_INFO_FLAGS.items()): if i & self.Flags == i: type += j else: type += "-" return type def get_type(self): if self.Flags == None: return "Unknown Type" type = None for i in VERBOSE_STANDARD_INFO_FLAGS: if (i & self.Flags) == i: if type == None: type = VERBOSE_STANDARD_INFO_FLAGS[i] else: type += " & " + VERBOSE_STANDARD_INFO_FLAGS[i] if type == None: type = "Unknown Type " return type def get_header(self): return [("Creation", "20"), ("Modified", "20"), ("MFT Altered", "20"), ("Access Date", "20"), ("Type", ""), ] def __str__(self): return "{0:20} {1:20} {2:20} {3:20} {4}".format(str(self.CreationTime), str(self.ModifiedTime), str(self.MFTAlteredTime), str(self.FileAccessedTime), self.get_type()) def body(self, path, record_num, size, offset): if path == "": # if the path is null we just try to get the filename # from our dictionary and print the body file output record = MFT_PATHS_FULL.get(int(record_num), {}) if record != {}: # we include with the found filename a note that this may be a # non-base entry. the analyst can investigate these types of records # on his/her own by comparing record numbers in output or examining the # given physical offset in memory for example path = record["filename"] + " (Possible non-base entry, extra $SI or invalid $FN)" return "[MFT STD_INFO] EntryOffset: 0x{0:x} {1}|{2}|{3}|0|0|{4}|{5}|{6}|{7}|{8}".format( offset, path, record_num, self.get_type_short(), size, self.FileAccessedTime.v(), self.ModifiedTime.v(), self.MFTAlteredTime.v(), self.CreationTime.v()) class FILE_NAME(STANDARD_INFORMATION): def remove_unprintable(self, str): return ''.join([c for c in str if (ord(c) > 31 or ord(c) == 9) and ord(c) <= 126]) # XXX need a better check than this # we return valid if we any timestamp other than Null # filename must also be a non-empty string def is_valid(self): return ("1970-01-01 00:00:00" != str(self.ModifiedTime).strip() or \ "1970-01-01 00:00:00" != str(self.MFTAlteredTime).strip() or \ "1970-01-01 00:00:00" != str(self.FileAccessedTime).strip() or \ "1970-01-01 00:00:00" != str(self.CreationTime).strip()) and \ self.remove_unprintable(self.get_name()) != "" def get_name(self): if self.NameLength == None or self.NameLength == 0: return "" return "{0}".format(str(self.Name).replace("\x00", "")) def get_header(self): return [("Creation", "20"), ("Modified", "20"), ("MFT Altered", "20"), ("Access Date", "20"), ("Name/Path", ""), ] def __str__(self): return "{0:20} {1:20} {2:20} {3:20} {4}".format(str(self.CreationTime), str(self.ModifiedTime), str(self.MFTAlteredTime), str(self.FileAccessedTime), self.remove_unprintable(self.get_name())) def get_full(self, full): return "{0:20} {1:20} {2:20} {3:20} {4}".format(str(self.CreationTime), str(self.ModifiedTime), str(self.MFTAlteredTime), str(self.FileAccessedTime), self.remove_unprintable(full)) def body(self, path, record_num, size, offset): return "[MFT FILE_NAME] EntryOffset: 0x{0:x} {1}|{2}|{3}|0|0|{4}|{5}|{6}|{7}|{8}".format( offset, path, record_num, self.get_type_short(), size, self.FileAccessedTime.v(), self.ModifiedTime.v(), self.MFTAlteredTime.v(), self.CreationTime.v()) class OBJECT_ID(obj.CType): # Modified from analyzeMFT.py: def FmtObjectID(self, item): record = "" for i in item: record += str(i) return "{0}-{1}-{2}-{3}-{4}".format(binascii.hexlify(record[0:4]), binascii.hexlify(record[4:6]), binascii.hexlify(record[6:8]), binascii.hexlify(record[8:10]), binascii.hexlify(record[10:16])) def __str__(self): string = "Object ID: {0}\n".format(self.FmtObjectID(self.ObjectID)) string += "Birth Volume ID: {0}\n".format(self.FmtObjectID(self.BirthVolumeID)) string += "Birth Object ID: {0}\n".format(self.FmtObjectID(self.BirthObjectID)) string += "Birth Domain ID: {0}\n".format(self.FmtObjectID(self.BirthDomainID)) return string # Using structures defined in File System Forensic Analysis pg 353+ MFT_types = { 'MFT_FILE_RECORD': [ 0x400, { 'Signature': [ 0x0, ['unsigned int']], 'FixupArrayOffset': [ 0x4, ['unsigned short']], 'NumFixupEntries': [ 0x6, ['unsigned short']], 'LSN': [ 0x8, ['unsigned long long']], 'SequenceValue': [ 0x10, ['unsigned short']], 'LinkCount': [ 0x12, ['unsigned short']], 'FirstAttributeOffset': [0x14, ['unsigned short']], 'Flags': [0x16, ['unsigned short']], 'EntryUsedSize': [0x18, ['int']], 'EntryAllocatedSize': [0x1c, ['unsigned int']], 'FileRefBaseRecord': [0x20, ['unsigned long long']], 'NextAttributeID': [0x28, ['unsigned short']], 'RecordNumber': [0x2c, ['unsigned long']], 'FixupArray': lambda x: obj.Object("Array", offset = x.obj_offset + x.FixupArrayOffset, count = x.NumFixupEntries, vm = x.obj_vm, target = obj.Curry(obj.Object, "unsigned short")), 'ResidentAttributes': lambda x : obj.Object("RESIDENT_ATTRIBUTE", offset = x.obj_offset + x.FirstAttributeOffset, vm = x.obj_vm), 'NonResidentAttributes': lambda x : obj.Object("NON_RESIDENT_ATTRIBUTE", offset = x.obj_offset + x.FirstAttributeOffset, vm = x.obj_vm), }], 'ATTRIBUTE_HEADER': [ 0x10, { 'Type': [0x0, ['int']], 'Length': [0x4, ['int']], 'NonResidentFlag': [0x8, ['unsigned char']], 'NameLength': [0x9, ['unsigned char']], 'NameOffset': [0xa, ['unsigned short']], 'Flags': [0xc, ['unsigned short']], 'AttributeID': [0xe, ['unsigned short']], }], 'RESIDENT_ATTRIBUTE': [0x16, { 'Header': [0x0, ['ATTRIBUTE_HEADER']], 'ContentSize': [0x10, ['unsigned int']], #relative to the beginning of the attribute 'ContentOffset': [0x14, ['unsigned short']], 'STDInfo': lambda x : obj.Object("STANDARD_INFORMATION", offset = x.obj_offset + x.ContentOffset, vm = x.obj_vm), 'FileName': lambda x : obj.Object("FILE_NAME", offset = x.obj_offset + x.ContentOffset, vm = x.obj_vm), 'ObjectID': lambda x : obj.Object("OBJECT_ID", offset = x.obj_offset + x.ContentOffset, vm = x.obj_vm), 'AttributeList':lambda x : obj.Object("ATTRIBUTE_LIST", offset = x.obj_offset + x.ContentOffset, vm = x.obj_vm), }], 'NON_RESIDENT_ATTRIBUTE': [0x40, { 'Header': [0x0, ['ATTRIBUTE_HEADER']], 'StartingVCN': [0x10, ['unsigned long long']], 'EndingVCN': [0x18, ['unsigned long long']], 'RunListOffset': [0x20, ['unsigned short']], 'CompressionUnitSize': [0x22, ['unsigned short']], 'Unused': [0x24, ['int']], 'AllocatedAttributeSize': [0x28, ['unsigned long long']], 'ActualAttributeSize': [0x30, ['unsigned long long']], 'InitializedAttributeSize': [0x38, ['unsigned long long']], }], 'EA_INFORMATION': [None, { 'EaPackedLength': [0x0, ['int']], 'EaCount': [0x4, ['int']], 'EaUnpackedLength': [0x8, ['long']], }], 'EA': [None, { 'NextEntryOffset': [0x0, ['unsigned long long']], 'Flags': [0x8, ['unsigned char']], 'EaNameLength': [0x9, ['unsigned char']], 'EaValueLength': [0xa, ['unsigned short']], 'EaName': [0xc, ['String', dict(length = lambda x: x.EaNameLength)]], 'EaValue': lambda x: obj.Object("Array", offset = x.obj_offset + len(x.EaName), count = x.EaValueLength, vm = x.obj_vm, target = obj.Curry(obj.Object, "unsigned char")), }], 'STANDARD_INFORMATION': [0x48, { 'CreationTime': [0x0, ['WinTimeStamp', {}]], 'ModifiedTime': [0x8, ['WinTimeStamp', {}]], 'MFTAlteredTime': [0x10, ['WinTimeStamp', {}]], 'FileAccessedTime': [0x18, ['WinTimeStamp', {}]], 'Flags': [0x20, ['int']], 'MaxVersionNumber': [0x24, ['unsigned int']], 'VersionNumber': [0x28, ['unsigned int']], 'ClassID': [0x2c, ['unsigned int']], 'OwnerID': [0x30, ['unsigned int']], 'SecurityID': [0x34, ['unsigned int']], 'QuotaCharged': [0x38, ['unsigned long long']], 'USN': [0x40, ['unsigned long long']], 'NextAttribute': [0x48, ['RESIDENT_ATTRIBUTE']], }], 'FILE_NAME': [None, { 'ParentDirectory': [0x0, ['unsigned long long']], 'CreationTime': [0x8, ['WinTimeStamp', {}]], 'ModifiedTime': [0x10, ['WinTimeStamp', {}]], 'MFTAlteredTime': [0x18, ['WinTimeStamp', {}]], 'FileAccessedTime': [0x20, ['WinTimeStamp', {}]], 'AllocatedFileSize': [0x28, ['unsigned long long']], 'RealFileSize': [0x30, ['unsigned long long']], 'Flags': [0x38, ['unsigned int']], 'ReparseValue': [0x3c, ['unsigned int']], 'NameLength': [0x40, ['unsigned char']], 'Namespace': [0x41, ['unsigned char']], 'Name': [0x42, ['NullString', dict(length = lambda x: x.NameLength * 2)]], }], 'ATTRIBUTE_LIST': [0x19, { 'Type': [0x0, ['unsigned int']], 'Length': [0x4, ['unsigned short']], 'NameLength': [0x6, ['unsigned char']], 'NameOffset': [0x7, ['unsigned char']], 'StartingVCN': [0x8, ['unigned long long']], 'FileReferenceLocation': [0x10, ['unsigned long long']], 'AttributeID': [0x18, ['unsigned char']], }], 'OBJECT_ID': [0x40, { 'ObjectID': [0x0, ['array', 0x10, ['char']]], 'BirthVolumeID': [0x10, ['array', 0x10, ['char']]], 'BirthObjectID': [0x20, ['array', 0x10, ['char']]], 'BirthDomainID': [0x30, ['array', 0x10, ['char']]], }], 'REPARSE_POINT': [0x10, { 'TypeFlags': [0x0, ['unsigned int']], 'DataSize': [0x4, ['unsigned short']], 'Unused': [0x6, ['unsigned short']], 'NameOffset': [0x8, ['unsigned short']], 'NameLength': [0xa, ['unsigned short']], 'PrintNameOffset': [0xc, ['unsigned short']], 'PrintNameLength': [0xe, ['unsigned short']], }], 'INDEX_ROOT': [None, { 'Type': [0x0, ['unsigned int']], 'SortingRule': [0x4, ['unsigned int']], 'IndexSizeBytes': [0x8, ['unsigned int']], 'IndexSizeClusters': [0xc, ['unsigned char']], 'Unused': [0xd, ['array', 0x3, ['unsigned char']]], 'NodeHeader': [0x10, ['NODE_HEADER']], }], 'INDEX_ALLOCATION': [None, { 'Signature': [0x0, ['unsigned int']], #INDX though not essential 'FixupArrayOffset': [0x4, ['unsigned short']], 'NumFixupEntries': [ 0x6, ['unsigned short']], 'LSN': [ 0x8, ['unsigned long long']], 'VCN': [0x10, ['unsigned long long']], 'NodeHeader': [0x18, ['NODE_HEADER']], }], 'NODE_HEADER': [0x10, { 'IndexEntryListOffset': [0x0, ['unsigned int']], 'EndUsedIndexOffset': [0x4, ['unsigned int']], 'EndAllocatedIndexOffset': [0x8, ['unsigned int']], 'Flags': [0xc, ['unsigned int']], }], # Index entries 'GENERIC_INDEX_ENTRY': [None, { 'Undefined': [0x0, ['unsigned long long']], 'EntryLength': [0x8, ['unsigned short']], 'ContentLength': [0xa, ['unsigned short']], 'Flags': [0xc, ['unsigned int']], 'Content': [0x10, ['array', lambda x : x.ContentLength , ['unsigned char']]], # last 8 bytes are VCN of child node, which is only here if flag is set... not sure how to code that yet }], 'DIRECTORY_INDEX_ENTRY': [None, { 'MFTFileReference': [0x0, ['unsigned long long']], 'EntryLength': [0x8, ['unsigned short']], 'FileNameAttrLength': [0xa, ['unsigned short']], 'Flags': [0xc, ['unsigned int']], 'FileNameAttr': [0x16, ['FILE_NAME']], # last 8 bytes are VCN of child node, which is only here if flag is set... not sure how to code that yet }], } class MFTTYPES(obj.ProfileModification): before = ['WindowsObjectClasses'] conditions = {'os': lambda x: x == 'windows'} def modification(self, profile): profile.object_classes.update({ 'MFT_FILE_RECORD':MFT_FILE_RECORD, 'FILE_NAME':FILE_NAME, 'STANDARD_INFORMATION':STANDARD_INFORMATION, 'OBJECT_ID':OBJECT_ID, 'RESIDENT_ATTRIBUTE':RESIDENT_ATTRIBUTE, }) profile.vtypes.update(MFT_types) class MFTScanner(scan.BaseScanner): checks = [ ] def __init__(self, needles = None): self.needles = needles self.checks = [ ("MultiStringFinderCheck", {'needles':needles})] scan.BaseScanner.__init__(self) def scan(self, address_space, offset = 0, maxlen = None): for offset in scan.BaseScanner.scan(self, address_space, offset, maxlen): yield offset class MFTParser(common.AbstractWindowsCommand): """ Scans for and parses potential MFT entries """ def __init__(self, config, *args, **kwargs): common.AbstractWindowsCommand.__init__(self, config, *args, **kwargs) config.add_option('CHECK', short_option = 'C', default = False, help = 'Only print entries w/o null timestamps', action = "store_true") def calculate(self): address_space = utils.load_as(self._config, astype = 'physical') scanner = MFTScanner(needles = ['FILE', 'BAAD']) mft_entries = [] print "Scanning for MFT entries and building directory, this can take a while" for offset in scanner.scan(address_space): mft_buff = address_space.read(offset, 1024) bufferas = addrspace.BufferAddressSpace(self._config, data = mft_buff) mft_entry = obj.Object('MFT_FILE_RECORD', vm = bufferas, offset = 0) next_attr = mft_entry.ResidentAttributes end = mft_buff.find("\xff\xff\xff\xff") if end == -1: end = 1024 attributes = [] while next_attr != None and next_attr.obj_offset <= end: try: attr = ATTRIBUTE_TYPE_ID.get(int(next_attr.Header.Type), None) except struct.error: next_attr = None attr = None continue if attr == None: next_attr = None elif attr == "STANDARD_INFORMATION": if next_attr.STDInfo.is_valid() or not self._config.CHECK: attributes.append((attr, next_attr.STDInfo)) next_off = next_attr.STDInfo.obj_offset + next_attr.ContentSize if next_off == next_attr.STDInfo.obj_offset: next_attr = None continue next_attr = self.advance_one(next_off, mft_buff, end) elif attr == 'FILE_NAME': mft_entry.add_path(next_attr.FileName) if next_attr.FileName.is_valid() or not self._config.CHECK: attributes.append((attr, next_attr.FileName)) next_off = next_attr.FileName.obj_offset + next_attr.ContentSize if next_off == next_attr.FileName.obj_offset: next_attr = None continue next_attr = self.advance_one(next_off, mft_buff, end) elif attr == "OBJECT_ID": if next_attr.Header.NonResidentFlag == 1: attributes.append((attr, "Non-Resident")) next_attr = None continue else: attributes.append((attr, next_attr.ObjectID)) next_off = next_attr.ObjectID.obj_offset + next_attr.ContentSize if next_off == next_attr.ObjectID.obj_offset: next_attr = None continue next_attr = self.advance_one(next_off, mft_buff, end) elif attr == "DATA": if next_attr.Header.NonResidentFlag == 1: thedata = "Non-Resident" else: start = next_attr.obj_offset + next_attr.ContentOffset theend = min(start + next_attr.ContentSize, end) contents = mft_buff[start:theend] thedata = "\n".join(["{0:010x}: {1:<48} {2}".format(o, h, ''.join(c)) for o, h, c in utils.Hexdump(contents)]) if len(thedata) == 0: thedata = "(Empty)" attributes.append((attr, thedata)) next_attr = None elif attr == "ATTRIBUTE_LIST": if next_attr.Header.NonResidentFlag == 1: attributes.append((attr, "Non-Resident")) next_attr = None continue next_attr.process_attr_list(bufferas, mft_entry, attributes, self._config.CHECK) next_attr = None else: next_attr = None mft_entries.append((offset, mft_entry, attributes)) return mft_entries def advance_one(self, next_off, mft_buff, end): item = None attr = None cursor = 0 while attr == None and cursor <= end: bufferas = addrspace.BufferAddressSpace(self._config, data = mft_buff) item = obj.Object('RESIDENT_ATTRIBUTE', vm = bufferas, offset = next_off + cursor) try: attr = ATTRIBUTE_TYPE_ID.get(int(item.Header.Type), None) except struct.error: return item cursor += 1 return item def render_body(self, outfd, data): # Some notes: every base MFT entry should have one $SI and at lease one $FN # Usually $SI occurs before $FN # We'll make an effort to get the filename from $FN for $SI # If there is only one $SI with no $FN we dump whatever information it has for offset, mft_entry, attributes in data: si = None full = "" for a, i in attributes: if a.startswith("STANDARD_INFORMATION"): if full != "": # if we are here, we've hit one $FN attribute for this entry already and have the full name # so we can dump this $SI outfd.write("0|{0}\n".format(i.body(full, mft_entry.RecordNumber, int(mft_entry.EntryUsedSize), offset))) elif si != None: # if we are here then we have more than one $SI attribute for this entry # since we don't want to lose its info, we'll just dump it for now # we won't have full path, but we'll have a filename most likely outfd.write("0|{0}\n".format(i.body("", mft_entry.RecordNumber, int(mft_entry.EntryUsedSize), offset))) elif si == None: # this is the usual case and we'll save the $SI to process after we get the full path from the $FN si = i elif a.startswith("FILE_NAME"): if hasattr(i, "ParentDirectory"): full = mft_entry.get_full_path(i) outfd.write("0|{0}\n".format(i.body(full, mft_entry.RecordNumber, int(mft_entry.EntryUsedSize), offset))) if si != None: outfd.write("0|{0}\n".format(si.body(full, mft_entry.RecordNumber, int(mft_entry.EntryUsedSize), offset))) si = None if si != None: # here we have a lone $SI in an MFT entry with no valid $FN. This is most likely a non-base entry outfd.write("0|{0}\n".format(si.body("", mft_entry.RecordNumber, int(mft_entry.EntryUsedSize), offset))) def render_text(self, outfd, data): border = "*" * 75 for offset, mft_entry, attributes in data: if len(attributes) == 0: continue outfd.write(border + "\n") outfd.write("MFT entry found at offset 0x{0:x}\n".format(offset)) outfd.write("Type: {0}\n".format(mft_entry.get_mft_type())) outfd.write("Record Number: {0}\n".format(mft_entry.RecordNumber)) outfd.write("Link count: {0}\n".format(mft_entry.LinkCount)) outfd.write("\n") for a, i in attributes: if i == None: outfd.write("${0}: malformed entry\n".format(a)) continue if a.startswith("STANDARD_INFORMATION"): outfd.write("\n${0}\n".format(a)) self.table_header(outfd, i.get_header()) outfd.write("{0}\n".format(str(i))) elif a.startswith("FILE_NAME"): outfd.write("\n${0}\n".format(a)) if hasattr(i, "ParentDirectory"): full = mft_entry.get_full_path(i) self.table_header(outfd, i.get_header()) outfd.write("{0}\n".format(i.get_full(full))) else: outfd.write("{0}\n".format(str(i))) elif a == "DATA": outfd.write("\n$DATA\n") outfd.write("{0}\n".format(str(i))) elif a == "OBJECT_ID": outfd.write("\n$OBJECT_ID\n") outfd.write(str(i)) outfd.write("\n" + border + "\n")