From 8071ebbebb748e3bca858ba16400b987a5b04b76 Mon Sep 17 00:00:00 2001 From: mtressler <59582863+mtressler@users.noreply.github.com> Date: Tue, 14 Jul 2020 15:47:09 -0400 Subject: [PATCH] End of file cut off --- volatility/framework/plugins/linux/check_creds.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility/framework/plugins/linux/check_creds.py b/volatility/framework/plugins/linux/check_creds.py index 40ade43df..59ba90029 100644 --- a/volatility/framework/plugins/linux/check_creds.py +++ b/volatility/framework/plugins/linux/check_creds.py @@ -66,3 +66,7 @@ class check_creds(interfaces.plugins.PluginInterface): for pid in pids: pid_str = pid_str + "{0:d}, ".format(pid) pid_str = pid_str[:-2] + yield(0, [str(pid_str)]) + + def run(self): + return renderers.TreeGrid([("PIDs", str)], self._generator())