From 4c68da8b0611625420ef179c0d72d74f495c6d5c Mon Sep 17 00:00:00 2001 From: Michael Ligh Date: Wed, 3 Oct 2018 21:51:11 -0500 Subject: [PATCH] move the functionality for getting an object's type into the _OBJECT_HEADER extension --- volatility/plugins/windows/handles.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/volatility/plugins/windows/handles.py b/volatility/plugins/windows/handles.py index fddf223e9..f3cf1b80f 100644 --- a/volatility/plugins/windows/handles.py +++ b/volatility/plugins/windows/handles.py @@ -24,6 +24,8 @@ class Handles(interfaces_plugins.PluginInterface): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self._sar_value = None + self._type_map = None + self._cookie = None self._level_mask = 7 @classmethod