From 79c7c6df95d6d6bd61142fbbbe7f69ffb4bd4af7 Mon Sep 17 00:00:00 2001 From: Analyst Date: Mon, 15 Jul 2019 12:45:10 -0500 Subject: [PATCH] change context.memory to context.layers per 272224a --- volatility/framework/plugins/windows/svcscan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/plugins/windows/svcscan.py b/volatility/framework/plugins/windows/svcscan.py index d266073da..a619c5cec 100644 --- a/volatility/framework/plugins/windows/svcscan.py +++ b/volatility/framework/plugins/windows/svcscan.py @@ -140,7 +140,7 @@ class SvcScan(interfaces.plugins.PluginInterface): filter_func = filter_func): proc_layer_name = task.add_process_layer() - layer = self.context.memory[proc_layer_name] + layer = self.context.layers[proc_layer_name] for offset in layer.scan(context = self.context, scanner = scanners.BytesScanner(needle = service_tag),