From dbcb59e0e951e0c9157a01afd2be1b7ec7363054 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 27 Feb 2016 01:38:29 +0000 Subject: [PATCH] Fix the self-referential checker. --- volatility/framework/automagic/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/automagic/windows.py b/volatility/framework/automagic/windows.py index cccc55914..20f59b29b 100644 --- a/volatility/framework/automagic/windows.py +++ b/volatility/framework/automagic/windows.py @@ -120,7 +120,7 @@ class SelfReferentialTest(object): if value == page_offset and value != 0: response = i // self.ptr_size, page_offset print(hex(response[1]), hex(response[0])) - return response + return 1, response class PageMapOffsetHelper(interfaces.configuration.HierachicalVisitor):