From 1d9ae4c01a4b83518593b82be1ccacfaed0896b7 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Fri, 20 Aug 2021 09:23:23 -0400 Subject: [PATCH] Island: Fix typo "trough" -> "through" --- CHANGELOG.md | 1 + monkey/monkey_island/cc/services/attack/attack_config.py | 2 +- .../cc/services/attack/technique_reports/T1041.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f0c269e8..81176527d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Changelog](https://keepachangelog.com/en/1.0.0/). - Misaligned buttons and input fields on exploiter and network configuration pages. #1353 - Credentials shown in plain text on configuration screens. #1183 +- Typo "trough" -> "through" in telemetry and docstring. ## [1.11.0] - 2021-08-13 ### Added diff --git a/monkey/monkey_island/cc/services/attack/attack_config.py b/monkey/monkey_island/cc/services/attack/attack_config.py index 711b51bf1..b2d59310d 100644 --- a/monkey/monkey_island/cc/services/attack/attack_config.py +++ b/monkey/monkey_island/cc/services/attack/attack_config.py @@ -94,7 +94,7 @@ class AttackConfig(object): @staticmethod def r_set_booleans(path, value, attack_techniques, monkey_config): """ - Recursively walks trough monkey configuration (DFS) to find which boolean fields needs to + Recursively walks through monkey configuration (DFS) to find which boolean fields needs to be set and sets them according to ATT&CK matrix. :param path: Property names that leads to current value. E.g. ['monkey', 'system_info', diff --git a/monkey/monkey_island/cc/services/attack/technique_reports/T1041.py b/monkey/monkey_island/cc/services/attack/technique_reports/T1041.py index 2cdcfa975..692a41e8b 100644 --- a/monkey/monkey_island/cc/services/attack/technique_reports/T1041.py +++ b/monkey/monkey_island/cc/services/attack/technique_reports/T1041.py @@ -5,9 +5,9 @@ from monkey_island.cc.services.attack.technique_reports import AttackTechnique class T1041(AttackTechnique): tech_id = "T1041" - unscanned_msg = "Monkey didn't exfiltrate any info trough command and control channel." + unscanned_msg = "Monkey didn't exfiltrate any info through command and control channel." scanned_msg = "" - used_msg = "Monkey exfiltrated info trough command and control channel." + used_msg = "Monkey exfiltrated info through command and control channel." @staticmethod def get_report_data():