From 94c0307373cda068f38fccc8a61c202f679b2452 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Fri, 21 Aug 2020 21:37:06 +0100 Subject: [PATCH] Plugin: Change the file parameter to isf --- volatility/framework/plugins/isfinfo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/volatility/framework/plugins/isfinfo.py b/volatility/framework/plugins/isfinfo.py index a861485b2..e5b79683c 100644 --- a/volatility/framework/plugins/isfinfo.py +++ b/volatility/framework/plugins/isfinfo.py @@ -31,7 +31,7 @@ class IsfInfo(plugins.PluginInterface): description = 'String that must be present to display the ISF', optional = True, default = []), - requirements.URIRequirement(name = 'file', + requirements.URIRequirement(name = 'isf', description = "Specific ISF file to process", default = None, optional = True), @@ -70,8 +70,8 @@ class IsfInfo(plugins.PluginInterface): return banner_symbol def _generator(self): - if self.config.get('file', None) is not None: - file_list = [self.config['file']] + if self.config.get('isf', None) is not None: + file_list = [self.config['isf']] else: file_list = list(self.list_all_isf_files())