From ecddc40781fa8d73a06600d928714256ea57747a Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 3 Jun 2020 12:30:40 +0100 Subject: [PATCH] Printkey: Bump the required framework version due to the API changes. --- volatility/framework/plugins/windows/registry/printkey.py | 1 + 1 file changed, 1 insertion(+) diff --git a/volatility/framework/plugins/windows/registry/printkey.py b/volatility/framework/plugins/windows/registry/printkey.py index 052b8160c..b416667b1 100644 --- a/volatility/framework/plugins/windows/registry/printkey.py +++ b/volatility/framework/plugins/windows/registry/printkey.py @@ -20,6 +20,7 @@ class PrintKey(interfaces.plugins.PluginInterface): """Lists the registry keys under a hive or specific key value.""" _version = (1, 0, 0) + _required_framework_version = (1, 1, 0) @classmethod def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]: