mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 17:57:38 +02:00
Merge pull request #1144 from volatilityfoundation/timerliner_missing_macb_times_fix
Add a default 0 value to macb columns to avoid mactime not reporting …
This commit is contained in:
@@ -183,16 +183,16 @@ class Timeliner(interfaces.plugins.PluginInterface):
|
||||
plugin_name,
|
||||
self._sanitize_body_format(item),
|
||||
self._text_format(
|
||||
times.get(TimeLinerType.ACCESSED, "")
|
||||
times.get(TimeLinerType.ACCESSED, "0")
|
||||
),
|
||||
self._text_format(
|
||||
times.get(TimeLinerType.MODIFIED, "")
|
||||
times.get(TimeLinerType.MODIFIED, "0")
|
||||
),
|
||||
self._text_format(
|
||||
times.get(TimeLinerType.CHANGED, "")
|
||||
times.get(TimeLinerType.CHANGED, "0")
|
||||
),
|
||||
self._text_format(
|
||||
times.get(TimeLinerType.CREATED, "")
|
||||
times.get(TimeLinerType.CREATED, "0")
|
||||
),
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user