From 30de81795c541e75a4c2e82d75370ea7c2854a5d Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 16 Nov 2020 09:41:42 +0000 Subject: [PATCH] Windows: Update requirements to pslist 2.0.0 --- volatility/framework/plugins/windows/envars.py | 2 +- volatility/framework/plugins/windows/getsids.py | 2 +- volatility/framework/plugins/windows/privileges.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/volatility/framework/plugins/windows/envars.py b/volatility/framework/plugins/windows/envars.py index cb43351ab..50f99659f 100644 --- a/volatility/framework/plugins/windows/envars.py +++ b/volatility/framework/plugins/windows/envars.py @@ -33,7 +33,7 @@ class Envars(interfaces.plugins.PluginInterface): requirements.BooleanRequirement(name = 'silent', description = 'Suppress common and non-persistent variables', optional = True), - requirements.PluginRequirement(name = 'pslist', plugin = pslist.PsList, version = (1, 0, 0)), + requirements.PluginRequirement(name = 'pslist', plugin = pslist.PsList, version = (2, 0, 0)), requirements.PluginRequirement(name = 'hivelist', plugin = hivelist.HiveList, version = (1, 0, 0)) ] diff --git a/volatility/framework/plugins/windows/getsids.py b/volatility/framework/plugins/windows/getsids.py index 7266b5787..5f7e2dcf4 100644 --- a/volatility/framework/plugins/windows/getsids.py +++ b/volatility/framework/plugins/windows/getsids.py @@ -61,7 +61,7 @@ class GetSIDs(interfaces.plugins.PluginInterface): description = 'Filter on specific process IDs', element_type = int, optional = True), - requirements.PluginRequirement(name = 'pslist', plugin = pslist.PsList, version = (1, 0, 0)), + requirements.PluginRequirement(name = 'pslist', plugin = pslist.PsList, version = (2, 0, 0)), requirements.PluginRequirement(name = 'hivelist', plugin = hivelist.HiveList, version = (1, 0, 0)) ] diff --git a/volatility/framework/plugins/windows/privileges.py b/volatility/framework/plugins/windows/privileges.py index 35fd907d7..f24aa7be3 100644 --- a/volatility/framework/plugins/windows/privileges.py +++ b/volatility/framework/plugins/windows/privileges.py @@ -48,7 +48,7 @@ class Privs(interfaces.plugins.PluginInterface): description = 'Filter on specific process IDs', element_type = int, optional = True), - requirements.PluginRequirement(name = 'pslist', plugin = pslist.PsList, version = (1, 0, 0)), + requirements.PluginRequirement(name = 'pslist', plugin = pslist.PsList, version = (2, 0, 0)), ] def _generator(self, procs):