From e2e754edeb202c6a26fd1c996b4e37174e4840d2 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 13 Jan 2016 00:10:25 +0000 Subject: [PATCH] Add in this level of values only, as a property. --- volatility/framework/interfaces/configuration.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility/framework/interfaces/configuration.py b/volatility/framework/interfaces/configuration.py index b30a29cfa..ad0db1456 100644 --- a/volatility/framework/interfaces/configuration.py +++ b/volatility/framework/interfaces/configuration.py @@ -81,6 +81,10 @@ class HierarchicalDict(collections.Mapping): def separator(self): return self._separator + @property + def data(self): + return self._data.copy() + def _key_head(self, key): """Returns the first division of a key based on the dict separator, or the full key if the separator is not present