From 8bf7ab92182ee8f3744d41ab3bc0ae516eded20c Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 10 Sep 2020 01:38:50 +0100 Subject: [PATCH] Bugfix: Vadinfo invalid exception --- volatility/framework/plugins/windows/vadinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volatility/framework/plugins/windows/vadinfo.py b/volatility/framework/plugins/windows/vadinfo.py index 079628b53..8d270ecbc 100644 --- a/volatility/framework/plugins/windows/vadinfo.py +++ b/volatility/framework/plugins/windows/vadinfo.py @@ -108,7 +108,7 @@ class VadInfo(interfaces.plugins.PluginInterface): @classmethod def vad_dump(cls, context: interfaces.context.ContextInterface, proc: interfaces.objects.ObjectInterface, - vad: interfaces.objects.ObjectInterface, + vad: interfaces.objects.ObjectInterface, maxsize = MAXSIZE_DEFAULT) -> Optional[interfaces.plugins.FileInterface]: """Extracts the complete data for Vad as a FileInterface. @@ -125,7 +125,7 @@ class VadInfo(interfaces.plugins.PluginInterface): try: vad_start = vad.get_start() vad_end = vad.get_end() - except exceptions.AttributeError: + except AttributeError: vollog.debug("Unable to find the starting/ending VPN member") return