From 546bca189377ef2f01026f84a6b229471efb9b24 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 22 Aug 2016 02:28:20 +0100 Subject: [PATCH] Rename the IntelHelper to make it a little more accurate. --- 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 e84e0b4e6..9912561e2 100644 --- a/volatility/framework/automagic/windows.py +++ b/volatility/framework/automagic/windows.py @@ -142,7 +142,7 @@ class PageMapScanner(interfaces.layers.ScannerInterface): yield (test, result) -class IntelHelper(interfaces.automagic.AutomagicInterface, interfaces.automagic.StackerLayerInterface): +class WintelHelper(interfaces.automagic.AutomagicInterface, interfaces.automagic.StackerLayerInterface): priority = 20 stack_order = 90 tests = [DtbTest32bit(), DtbTest64bit(), DtbTestPae()]