Island: Use exploitation_result in telemetry_feed

This commit is contained in:
Ilija Lazoroski 2022-02-24 13:33:32 +01:00
parent 871b02d514
commit e8ba34b055
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class TelemetryFeed(flask_restful.Resource):
def get_exploit_telem_brief(telem):
target = telem["data"]["machine"]["ip_addr"]
exploiter = telem["data"]["exploiter"]
result = telem["data"]["result"]
result = telem["data"]["exploitation_result"]
if result:
return "Monkey successfully exploited %s using the %s exploiter." % (target, exploiter)
else: