From b3d37d9223edb3a1ffc57a362c1e4e222e87c304 Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Tue, 16 Aug 2022 17:27:43 +0200 Subject: [PATCH] Agent: Change SSHCredentialCollector tag to lowercase --- .../credential_collectors/ssh_collector/ssh_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/infection_monkey/credential_collectors/ssh_collector/ssh_handler.py b/monkey/infection_monkey/credential_collectors/ssh_collector/ssh_handler.py index cc4245842..73bf5e0c0 100644 --- a/monkey/infection_monkey/credential_collectors/ssh_collector/ssh_handler.py +++ b/monkey/infection_monkey/credential_collectors/ssh_collector/ssh_handler.py @@ -15,7 +15,7 @@ from infection_monkey.utils.environment import is_windows_os logger = logging.getLogger(__name__) DEFAULT_DIRS = ["/.ssh/", "/"] -SSH_CREDENTIAL_COLLECTOR_TAG = "SSHCredentialsStolen" +SSH_CREDENTIAL_COLLECTOR_TAG = "ssh-credentials-collector" T1003_ATTACK_TECHNIQUE_TAG = "attack-t1003" T1005_ATTACK_TECHNIQUE_TAG = "attack-t1005" T1145_ATTACK_TECHNIQUE_TAG = "attack-t1145"