From 6a123619778deea077027428ae3b3c8dc75b79cb Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 29 May 2019 22:13:56 +0100 Subject: [PATCH] Fix up minor typo in info plugin. --- volatility/framework/plugins/windows/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volatility/framework/plugins/windows/info.py b/volatility/framework/plugins/windows/info.py index 778bf9122..7159d1fee 100644 --- a/volatility/framework/plugins/windows/info.py +++ b/volatility/framework/plugins/windows/info.py @@ -21,7 +21,7 @@ import time from typing import List -import volatility.framework.interfaces.plugins as plugins +from volatility.framework.interfaces import plugins from volatility.framework import constants, interfaces, layers from volatility.framework.configuration import requirements from volatility.framework.renderers import TreeGrid @@ -82,7 +82,7 @@ class Info(plugins.PluginInterface): offset = kvo + kdbg_offset, layer_name = virtual_layer_name) - yield (0, ("Memory Location", self.config["primary.memory_layer.location"])) + yield (0, ("Memory Location", self.config["primary.memory_layer.base_layer.location"])) yield (0, ("Kernel Base", hex(self.config["primary.kernel_virtual_offset"]))) yield (0, ("DTB", hex(self.config["primary.page_map_offset"]))) yield (0, ("Symbols", self.config["nt_symbols.isf_url"]))