Make used/scanned/unscanned messages descriptive

This commit is contained in:
Shreya 2020-06-15 18:26:05 +05:30
parent 58a0a67244
commit 6d98f95d4c
2 changed files with 6 additions and 6 deletions

View File

@ -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():

View File

@ -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():