From 4ec006e6065baee25eea1fed096390cde6ff1dcb Mon Sep 17 00:00:00 2001 From: AsafEitani Date: Wed, 18 Nov 2020 18:41:52 +0200 Subject: [PATCH] Fix 'maxsize variable doing nothing' bug In one of the earlier commits the varible was erased from being passed to vaddump - that corrects it. --- volatility/framework/plugins/windows/vadinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/plugins/windows/vadinfo.py b/volatility/framework/plugins/windows/vadinfo.py index a68bd7171..b9827bfa7 100644 --- a/volatility/framework/plugins/windows/vadinfo.py +++ b/volatility/framework/plugins/windows/vadinfo.py @@ -188,7 +188,7 @@ class VadInfo(interfaces.plugins.PluginInterface): file_output = "Disabled" if self.config['dump']: - file_handle = self.vad_dump(self.context, proc, vad, self.open) + file_handle = self.vad_dump(self.context, proc, vad, self.open, self.config['maxsize']) file_output = "Error outputting file" if file_handle: file_handle.close()