We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b15e910 commit a0ca33bCopy full SHA for a0ca33b
volatility3/framework/plugins/windows/mftscan.py
@@ -238,9 +238,9 @@ def generate_timeline(self):
238
_depth, row_data = row
239
240
# Only Output FN Records
241
- if row_data[6] == "FILE_NAME":
+ if row_data[6] in ("FILE_NAME", "STANDARD_INFORMATION"):
242
filename = row_data[-1]
243
- description = f"MFT FILE_NAME entry for {filename}"
+ description = f"MFT {row_data[6]} entry for {filename}"
244
yield (description, timeliner.TimeLinerType.CREATED, row_data[7])
245
yield (description, timeliner.TimeLinerType.MODIFIED, row_data[8])
246
yield (description, timeliner.TimeLinerType.CHANGED, row_data[9])
0 commit comments