From e5dfc47cc419d4d1ac929782008bc24765f46428 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 10 May 2022 19:08:56 +0900 Subject: [PATCH] Fix: required framework version of psscan by bump --- volatility3/framework/plugins/windows/psscan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/windows/psscan.py b/volatility3/framework/plugins/windows/psscan.py index a0601aef1..cc030b4bf 100644 --- a/volatility3/framework/plugins/windows/psscan.py +++ b/volatility3/framework/plugins/windows/psscan.py @@ -22,7 +22,7 @@ vollog = logging.getLogger(__name__) class PsScan(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface): """Scans for processes present in a particular windows memory image.""" - _required_framework_version = (2, 0, 0) + _required_framework_version = (2, 2, 1) _version = (1, 1, 0) @classmethod