Skip to content

Commit

Permalink
Removed client suppression for job started tasking (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cx01N authored Aug 14, 2021
1 parent a3625f3 commit 5aa731c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions empire/client/src/EmpireCliState.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,10 @@ def add_to_cached_results(self, data) -> None:

if menu_state.current_menu_name == 'InteractMenu' and menu_state.current_menu.selected == session_id:
if data['results'] is not None:
if 'Job started:' not in data['results']:
print(print_util.color('[*] Task ' + str(data['taskID']) + " results received"))
print(print_util.color(data['results']))
print(print_util.color('[*] Task ' + str(data['taskID']) + " results received"))
print(print_util.color(data['results']))
else:
if 'Job started:' not in data['results']:
self.cached_agent_results[session_id][data['taskID']] = data['results']
self.cached_agent_results[session_id][data['taskID']] = data['results']

def add_plugin_cache(self, data) -> None:
"""
Expand Down

0 comments on commit 5aa731c

Please sign in to comment.