From 2efbd3dd68a89b67ae167ddda26b97716838f471 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 1 Jul 2017 22:22:43 +0100 Subject: [PATCH] Ensure framework plugins are loaded just like non-framework plugins. --- volatility/framework/constants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/volatility/framework/constants.py b/volatility/framework/constants.py index 8dd7eedb4..07552cf8c 100644 --- a/volatility/framework/constants.py +++ b/volatility/framework/constants.py @@ -6,7 +6,8 @@ import os.path import sys -PLUGINS_PATH = [os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "plugins"))] +PLUGINS_PATH = [os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "plugins")), + os.path.abspath(os.path.join(os.path.dirname(__file__), "plugins"))] BANG = "!" PACKAGE_VERSION = "3.0.0_alpha1" DISABLE_MULTITHREADED_SCANNING = False