From ce3b0fcc0bcce05efb879d91cd42ddee17f69286 Mon Sep 17 00:00:00 2001 From: Andrew Case Date: Wed, 7 Apr 2021 12:04:50 -0500 Subject: [PATCH] Change debug to info for invalid process warning message --- volatility3/framework/plugins/windows/pslist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/windows/pslist.py b/volatility3/framework/plugins/windows/pslist.py index 7d9657188..1b5a726de 100644 --- a/volatility3/framework/plugins/windows/pslist.py +++ b/volatility3/framework/plugins/windows/pslist.py @@ -202,7 +202,7 @@ class PsList(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface): proc.get_is_wow64(), proc.get_create_time(), proc.get_exit_time(), file_output)) except exceptions.InvalidAddressException: - vollog.debug("Invalid process found at address: {:x}. Skipping".format(proc.vol.offset)) + vollog.info("Invalid process found at address: {:x}. Skipping".format(proc.vol.offset)) def generate_timeline(self): for row in self._generator():