From 8efe429719f50603e35a170b3eb37e39fc43f5fc Mon Sep 17 00:00:00 2001 From: Gustavo Moreira Date: Tue, 12 Nov 2024 18:32:26 +1100 Subject: [PATCH] Linux: kthreads plugin: Adjust required framework version --- volatility3/framework/plugins/linux/kthreads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/linux/kthreads.py b/volatility3/framework/plugins/linux/kthreads.py index 639759e49..263793495 100644 --- a/volatility3/framework/plugins/linux/kthreads.py +++ b/volatility3/framework/plugins/linux/kthreads.py @@ -19,7 +19,7 @@ vollog = logging.getLogger(__name__) class Kthreads(plugins.PluginInterface): """Enumerates kthread functions""" - _required_framework_version = (2, 0, 0) + _required_framework_version = (2, 11, 0) _version = (1, 0, 0)