From a8c222b610b34bec282315e454365c5baea5b2d6 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 30 Mar 2022 13:42:52 -0400 Subject: [PATCH] Island: Reenable POST_BREACH_PROCESS_LIST_COLLECTION --- .../cc/services/telemetry/processing/post_breach.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/monkey/monkey_island/cc/services/telemetry/processing/post_breach.py b/monkey/monkey_island/cc/services/telemetry/processing/post_breach.py index 8392d3613..e4f83947e 100644 --- a/monkey/monkey_island/cc/services/telemetry/processing/post_breach.py +++ b/monkey/monkey_island/cc/services/telemetry/processing/post_breach.py @@ -28,10 +28,7 @@ def process_process_list_collection_telemetry(telemetry_json, current_monkey): POST_BREACH_TELEMETRY_PROCESSING_FUNCS = { POST_BREACH_COMMUNICATE_AS_BACKDOOR_USER: process_communicate_as_backdoor_user_telemetry, - # TODO: Remove the line below and un-comment the next one after the TODO in `_run_pba()` in - # `automated_master.py` is resolved. - "ProcessListCollection": process_process_list_collection_telemetry, - # POST_BREACH_PROCESS_LIST_COLLECTION: process_process_list_collection_telemetry, + POST_BREACH_PROCESS_LIST_COLLECTION: process_process_list_collection_telemetry, }