mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
Merge pull request #1807 from volatilityfoundation/bugfix/windows_thrdscan_tuple_unpacking
Windows Thrdscan: Fix broken tuple unpacking
This commit is contained in:
@@ -58,6 +58,14 @@ class TestWindowsPslist:
|
||||
}
|
||||
assert test_volatility.match_output_row(expected_row, json.loads(out))
|
||||
|
||||
class TestWindowsTimeliner:
|
||||
def test_windows_specific_timeliner(self, volatility, python):
|
||||
image = WindowsSamples.WINDOWSXP_GENERIC.value.path
|
||||
rc, out, _err = test_volatility.runvol_plugin(
|
||||
"timeliner.Timeliner", image, volatility, python
|
||||
)
|
||||
assert rc == 0
|
||||
assert out.count(b"\n") > 10
|
||||
|
||||
class TestWindowsPsscan:
|
||||
def test_windows_specific_psscan(self, volatility, python):
|
||||
|
||||
@@ -190,6 +190,9 @@ class ThrdScan(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface)
|
||||
row_dict["PID"],
|
||||
row_dict["TID"],
|
||||
row_dict["StartAddress"],
|
||||
row_dict["StartPath"],
|
||||
row_dict["Win32StartAddress"],
|
||||
row_dict["Win32StartPath"],
|
||||
row_dict["CreateTime"],
|
||||
row_dict["ExitTime"],
|
||||
) = row_data
|
||||
|
||||
Reference in New Issue
Block a user