From 60e1aebaf82e712b705ff8856f9564ff34760df3 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 25 Nov 2017 16:19:47 +0000 Subject: [PATCH] Improve the plugin help descriptions. --- volatility/plugins/linux/pslist.py | 2 ++ volatility/plugins/volshell.py | 2 +- volatility/plugins/windows/dlllist.py | 2 +- volatility/plugins/windows/printkey.py | 2 +- volatility/plugins/windows/pslist.py | 2 +- volatility/plugins/windows/volshell.py | 2 +- 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/volatility/plugins/linux/pslist.py b/volatility/plugins/linux/pslist.py index cbddc5436..e4d0a1d85 100644 --- a/volatility/plugins/linux/pslist.py +++ b/volatility/plugins/linux/pslist.py @@ -6,6 +6,8 @@ from volatility.framework.objects import utility class PsList(interfaces_plugins.PluginInterface): + """Lists the processes present in a particular linux memory image""" + @classmethod def get_requirements(cls): return [requirements.TranslationLayerRequirement(name = 'primary', diff --git a/volatility/plugins/volshell.py b/volatility/plugins/volshell.py index cb10125d9..b161397ba 100644 --- a/volatility/plugins/volshell.py +++ b/volatility/plugins/volshell.py @@ -7,7 +7,7 @@ from volatility.framework.interfaces import plugins class Volshell(plugins.PluginInterface): - """Lists the processes present in a particular memory image""" + """Shell environment to directly interact with a memory image""" @classmethod def get_requirements(cls): diff --git a/volatility/plugins/windows/dlllist.py b/volatility/plugins/windows/dlllist.py index 357b27cf4..7266514cf 100644 --- a/volatility/plugins/windows/dlllist.py +++ b/volatility/plugins/windows/dlllist.py @@ -5,7 +5,7 @@ from volatility.plugins.windows import pslist class DllList(interfaces_plugins.PluginInterface): - """Lists the loaded modules in a particular memory image""" + """Lists the loaded modules in a particular windows memory image""" @classmethod def get_requirements(cls): diff --git a/volatility/plugins/windows/printkey.py b/volatility/plugins/windows/printkey.py index dc4c2bed8..d816296b9 100644 --- a/volatility/plugins/windows/printkey.py +++ b/volatility/plugins/windows/printkey.py @@ -11,7 +11,7 @@ vollog = logging.getLogger(__name__) class PrintKey(plugins.PluginInterface): - """Lists the processes present in a particular memory image""" + """Lists the registry keys under a hive or specific key value""" @classmethod def get_requirements(cls): diff --git a/volatility/plugins/windows/pslist.py b/volatility/plugins/windows/pslist.py index 00a269fb8..d0affdecf 100644 --- a/volatility/plugins/windows/pslist.py +++ b/volatility/plugins/windows/pslist.py @@ -4,7 +4,7 @@ from volatility.framework.configuration import requirements class PsList(plugins.PluginInterface): - """Lists the processes present in a particular memory image""" + """Lists the processes present in a particular windows memory image""" @classmethod def get_requirements(cls): diff --git a/volatility/plugins/windows/volshell.py b/volatility/plugins/windows/volshell.py index 902c76cea..edf220335 100644 --- a/volatility/plugins/windows/volshell.py +++ b/volatility/plugins/windows/volshell.py @@ -6,7 +6,7 @@ from volatility.plugins import volshell class Volshell(plugins.PluginInterface): - """Lists the processes present in a particular memory image""" + """Shell environment to directly interact with a windows memory image""" @classmethod def get_requirements(cls):