From 95214216ea73c7e3e413a7aa1f75f5c6f4daace0 Mon Sep 17 00:00:00 2001 From: Michael Ligh Date: Wed, 13 Jun 2018 09:10:47 -0500 Subject: [PATCH] BaseDllName and FullDllName should be UnreadableValue() if they cannot be accessed --- volatility/plugins/windows/dlllist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/plugins/windows/dlllist.py b/volatility/plugins/windows/dlllist.py index 711a4831d..7caa740f1 100644 --- a/volatility/plugins/windows/dlllist.py +++ b/volatility/plugins/windows/dlllist.py @@ -18,7 +18,7 @@ class DllList(interfaces_plugins.PluginInterface): for entry in proc.load_order_modules(): - BaseDllName = FullDllName = "" + BaseDllName = FullDllName = renderers.UnreadableValue() try: BaseDllName = entry.BaseDllName.get_string() # We assume that if the BaseDllName points to an invalid buffer, so will FullDllName