From 5209d6982addc4e477c31d2192ddb3c4ee38ac10 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Thu, 14 Jul 2022 07:53:34 -0400 Subject: [PATCH] Common: Remove disused config_value_paths.py --- monkey/common/config_value_paths.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 monkey/common/config_value_paths.py diff --git a/monkey/common/config_value_paths.py b/monkey/common/config_value_paths.py deleted file mode 100644 index 5e29ebf11..000000000 --- a/monkey/common/config_value_paths.py +++ /dev/null @@ -1,9 +0,0 @@ -SSH_KEYS_PATH = ["internal", "exploits", "exploit_ssh_keys"] -USER_LIST_PATH = ["basic", "credentials", "exploit_user_list"] -PASSWORD_LIST_PATH = ["basic", "credentials", "exploit_password_list"] -LM_HASH_LIST_PATH = ["internal", "exploits", "exploit_lm_hash_list"] -NTLM_HASH_LIST_PATH = ["internal", "exploits", "exploit_ntlm_hash_list"] - -# TODO: These are tuples so that they are immutable. Make the rest of these paths tuples as well. -PBA_LINUX_FILENAME_PATH = ("monkey", "post_breach", "PBA_linux_filename") -PBA_WINDOWS_FILENAME_PATH = ("monkey", "post_breach", "PBA_windows_filename")