From b84a7abd372c4887609b715c5a2df746f8938c19 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Tue, 28 Aug 2018 22:39:40 +0100 Subject: [PATCH] Ensure we only offer the configuration options we use. --- volatility/plugins/windows/vadyarascan.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/volatility/plugins/windows/vadyarascan.py b/volatility/plugins/windows/vadyarascan.py index 5cab27fa9..354383f19 100644 --- a/volatility/plugins/windows/vadyarascan.py +++ b/volatility/plugins/windows/vadyarascan.py @@ -24,18 +24,6 @@ class VadYaraScan(interfaces.plugins.PluginInterface): description = "Primary kernel address space", architectures = ["Intel32", "Intel64"]), requirements.SymbolRequirement(name = "nt_symbols", description = "Windows OS"), - requirements.BooleanRequirement(name = "all", - description = "Scan both process and kernel memory", - default = False, - optional = True), - requirements.BooleanRequirement(name = "insensitive", - description = "Makes the search case insensitive", - default = False, - optional = True), - requirements.BooleanRequirement(name = "kernel", - description = "Scan kernel modules", - default = False, - optional = True), requirements.BooleanRequirement(name = "wide", description = "Match wide (unicode) strings", default = False,