From 07d1062b80f983b2dd48a9bb886cf9e7ff6b5ca5 Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Tue, 20 Sep 2022 17:51:16 +0200 Subject: [PATCH] BB: Add CredentialsReuse machines to test_machine_list --- envs/monkey_zoo/blackbox/gcp_test_machine_list.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/envs/monkey_zoo/blackbox/gcp_test_machine_list.py b/envs/monkey_zoo/blackbox/gcp_test_machine_list.py index ac25a4f4b..c7b2886c2 100644 --- a/envs/monkey_zoo/blackbox/gcp_test_machine_list.py +++ b/envs/monkey_zoo/blackbox/gcp_test_machine_list.py @@ -19,6 +19,9 @@ GCP_TEST_MACHINE_LIST = { "powershell-3-46", "powershell-3-47", "powershell-3-48", + "credentials-reuse-14", + "credentials-reuse-15", + "credentials-reuse-16", "log4j-logstash-55", "log4j-logstash-56", "log4j-solr-49", @@ -85,6 +88,14 @@ ZEROLOGON = { ], } +CREDENTIALS_REUSE_SSH_KEY = { + "europe-west1-b": [ + "credentials-reuse-14", + "credentials-reuse-15", + "credentials-reuse-16", + ], +} + WMI_AND_MIMIKATZ = { "europe-west3-a": [ "mimikatz-14", @@ -101,6 +112,7 @@ GCP_SINGLE_TEST_LIST = { "test_depth_4_a": DEPTH_4_A, "test_powershell_exploiter_credentials_reuse": POWERSHELL_EXPLOITER_REUSE, "test_zerologon_exploiter": ZEROLOGON, + "test_credentials_reuse_ssh_key": CREDENTIALS_REUSE_SSH_KEY, "test_wmi_and_mimikatz_exploiters": WMI_AND_MIMIKATZ, "test_smb_pth": SMB_PTH, }