From 2943ae1dc61e67228bd78f59a0b981e4b94dcecb Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 4 Oct 2018 02:13:40 +0100 Subject: [PATCH] Fix up another exception gone rogue. --- volatility/plugins/windows/handles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/plugins/windows/handles.py b/volatility/plugins/windows/handles.py index c4b610a91..0b652b85e 100644 --- a/volatility/plugins/windows/handles.py +++ b/volatility/plugins/windows/handles.py @@ -98,7 +98,7 @@ class Handles(interfaces_plugins.PluginInterface): try: func_addr = ntkrnlmp.get_symbol("ObpCaptureHandleInformationEx").address - except AttributeError: + except exceptions.SymbolError: return None data = self.context.memory.read(virtual_layer_name, kvo + func_addr, 0x200)