From 1c3521cf647cd16ee1c44697ccd72bf00deefbd6 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 30 Jul 2016 01:54:42 +0100 Subject: [PATCH] Give construct_layers a forcably low priority, it's important. --- volatility/framework/automagic/construct_layers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/volatility/framework/automagic/construct_layers.py b/volatility/framework/automagic/construct_layers.py index 12e5a9706..0c7d47ec4 100644 --- a/volatility/framework/automagic/construct_layers.py +++ b/volatility/framework/automagic/construct_layers.py @@ -4,6 +4,7 @@ from volatility.framework.interfaces import automagic as automagic_interface, co class ConstructLayers(automagic_interface.AutomagicInterface): """Runs through the requirement tree and from the bottom up attempts to construct all TranslationLayerRequirements""" + priority = 10 def __call__(self, context, requirement, config_path): print("Processing", config_path, requirement.name)