From db4520af508d05dfc04063f36efc59b83a455a45 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 13 Jul 2022 13:02:03 -0400 Subject: [PATCH] Common: Remove disused network scan paths from config_value_paths.py --- monkey/common/config_value_paths.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/monkey/common/config_value_paths.py b/monkey/common/config_value_paths.py index c6bcf0dc0..5234fb34c 100644 --- a/monkey/common/config_value_paths.py +++ b/monkey/common/config_value_paths.py @@ -3,8 +3,6 @@ INACCESSIBLE_SUBNETS_PATH = ["basic_network", "network_analysis", "inaccessible_ USER_LIST_PATH = ["basic", "credentials", "exploit_user_list"] PASSWORD_LIST_PATH = ["basic", "credentials", "exploit_password_list"] EXPLOITER_CLASSES_PATH = ["basic", "exploiters", "exploiter_classes"] -SUBNET_SCAN_LIST_PATH = ["basic_network", "scope", "subnet_scan_list"] -LOCAL_NETWORK_SCAN_PATH = ["basic_network", "scope", "local_network_scan"] LM_HASH_LIST_PATH = ["internal", "exploits", "exploit_lm_hash_list"] NTLM_HASH_LIST_PATH = ["internal", "exploits", "exploit_ntlm_hash_list"]