From 3890961155026c0e4a58373486ef1859ba45947a Mon Sep 17 00:00:00 2001 From: Jon Hart Date: Tue, 8 Dec 2015 10:16:25 -0800 Subject: [PATCH] Correct SEP client exclusion enumeration --- modules/post/windows/gather/enum_av_excluded.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/post/windows/gather/enum_av_excluded.rb b/modules/post/windows/gather/enum_av_excluded.rb index 563478435c..9c8af550c6 100644 --- a/modules/post/windows/gather/enum_av_excluded.rb +++ b/modules/post/windows/gather/enum_av_excluded.rb @@ -58,7 +58,7 @@ class Metasploit3 < Msf::Post def excluded_sep base_exclusion_key = "#{SEP_BASE_KEY}\\Exclusions\\ScanningEngines\\Directory" admin_exclusion_key = "#{base_exclusion_key}\\Admin" - admin_exclusion_key = "#{base_exclusion_key}\\Client" + client_exclusion_key = "#{base_exclusion_key}\\Client" admin_paths = [] if (admin_exclusion_keys = registry_enumkeys(admin_exclusion_key, @registry_view))