From c8dd50dacb5db79eae93703fc4c42539b3b4c58f Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 3 Oct 2018 21:32:03 +0100 Subject: [PATCH] Improve help message to list unloadable plugins. --- volatility/cli/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/volatility/cli/__init__.py b/volatility/cli/__init__.py index 4d36667e0..4fb68d40b 100644 --- a/volatility/cli/__init__.py +++ b/volatility/cli/__init__.py @@ -124,7 +124,8 @@ class CommandLine(interfaces.plugins.FileConsumerInterface): ctx = contexts.Context() # Construct a blank context failures = framework.import_files(volatility.plugins, True) # Will not log as console's default level is WARNING - vollog.info("Plugins could not be loaded: " + ", ".join(failures)) + parser.epilog = "The following plugins could not be loaded (use -vv to see why): " + ", ".join(failures) + vollog.info(parser.epilog) automagics = automagic.available(ctx) plugin_list = framework.list_plugins()