From 70a94bf205c8fe2a3d4ea9198e4eb1c42cb79116 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 25 Feb 2021 18:02:16 +0000 Subject: [PATCH] Automagic: Make sure Linux gets in the metadata too --- volatility3/framework/automagic/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/automagic/linux.py b/volatility3/framework/automagic/linux.py index 34d6e7936..70b89dd2d 100644 --- a/volatility3/framework/automagic/linux.py +++ b/volatility3/framework/automagic/linux.py @@ -79,7 +79,7 @@ class LinuxIntelStacker(interfaces.automagic.StackerLayerInterface): layer = layer_class(context, config_path = config_path, name = new_layer_name, - metadata = {'kaslr_value': aslr_shift}) + metadata = {'kaslr_value': aslr_shift, 'os': 'Linux'}) if layer and dtb: vollog.debug("DTB was found at: 0x{:0x}".format(dtb))