From 063a1360483ddd2878757a4e090e7d5944231a90 Mon Sep 17 00:00:00 2001 From: Shay Nehmad Date: Wed, 2 Oct 2019 16:48:02 +0300 Subject: [PATCH] Removed TODO - seems like an edge case that won't reproduce for clients. --- .../attack/technique_reports/technique_report_tools.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/monkey/monkey_island/cc/services/attack/technique_reports/technique_report_tools.py b/monkey/monkey_island/cc/services/attack/technique_reports/technique_report_tools.py index 390852d27..05cef3684 100644 --- a/monkey/monkey_island/cc/services/attack/technique_reports/technique_report_tools.py +++ b/monkey/monkey_island/cc/services/attack/technique_reports/technique_report_tools.py @@ -16,8 +16,7 @@ def parse_creds(attempt): if attempt[key]: return '%s ; %s : %s' % (username, cred['type'], - # TODO Figure out why this is causing an exception with Vakaris - "cred['output']") + cred['output']) def censor_password(password, plain_chars=3, secret_chars=5):