forked from p15670423/monkey
Island: Fix typo "trough" -> "through"
This commit is contained in:
parent
9f194f3417
commit
1d9ae4c01a
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue