Skip to content

Commit a0ca33b

Browse files
committed
Also yield STANDARD_INFORMATION timestamps in timeliner
1 parent b15e910 commit a0ca33b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/windows/mftscan.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ def generate_timeline(self):
238238
_depth, row_data = row
239239

240240
# Only Output FN Records
241-
if row_data[6] == "FILE_NAME":
241+
if row_data[6] in ("FILE_NAME", "STANDARD_INFORMATION"):
242242
filename = row_data[-1]
243-
description = f"MFT FILE_NAME entry for {filename}"
243+
description = f"MFT {row_data[6]} entry for {filename}"
244244
yield (description, timeliner.TimeLinerType.CREATED, row_data[7])
245245
yield (description, timeliner.TimeLinerType.MODIFIED, row_data[8])
246246
yield (description, timeliner.TimeLinerType.CHANGED, row_data[9])

0 commit comments

Comments
 (0)