From 6d98f95d4c63b74c28b493c0861958262e3bca60 Mon Sep 17 00:00:00 2001 From: Shreya Date: Mon, 15 Jun 2020 18:26:05 +0530 Subject: [PATCH] Make used/scanned/unscanned messages descriptive --- .../cc/services/attack/technique_reports/T1156.py | 6 +++--- .../cc/services/attack/technique_reports/T1504.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/monkey/monkey_island/cc/services/attack/technique_reports/T1156.py b/monkey/monkey_island/cc/services/attack/technique_reports/T1156.py index b618e743a..9ceb2c027 100644 --- a/monkey/monkey_island/cc/services/attack/technique_reports/T1156.py +++ b/monkey/monkey_island/cc/services/attack/technique_reports/T1156.py @@ -9,9 +9,9 @@ __author__ = "shreyamalviya" class T1156(AttackTechnique): tech_id = "T1156" - unscanned_msg = "Monkey did not try modifying shell startup files on the system." - scanned_msg = "Monkey tried modifying shell startup files on the system but failed." - used_msg = "Monkey modified shell startup files on the system." + unscanned_msg = "Monkey did not try modifying Linux's shell startup files on the system." + scanned_msg = "Monkey tried modifying Linux's shell startup files on the system but failed." + used_msg = "Monkey modified Linux's shell startup files on the system." @staticmethod def get_report_data(): diff --git a/monkey/monkey_island/cc/services/attack/technique_reports/T1504.py b/monkey/monkey_island/cc/services/attack/technique_reports/T1504.py index 585599c86..34e25323e 100644 --- a/monkey/monkey_island/cc/services/attack/technique_reports/T1504.py +++ b/monkey/monkey_island/cc/services/attack/technique_reports/T1504.py @@ -9,9 +9,9 @@ __author__ = "shreyamalviya" class T1504(AttackTechnique): tech_id = "T1504" - unscanned_msg = "Monkey did not try modifying shell startup files on the system." - scanned_msg = "Monkey tried modifying shell startup files on the system but failed." - used_msg = "Monkey modified shell startup files on the system." + unscanned_msg = "Monkey did not try modifying Window's shell startup files on the system." + scanned_msg = "Monkey tried modifying Window's shell startup files on the system but failed." + used_msg = "Monkey modified Window's shell startup files on the system." @staticmethod def get_report_data():