Fix edge case in ElasticGroovy

This commit is contained in:
Daniel Goldberg 2018-04-02 17:19:45 +03:00
parent 99b22cfa56
commit f1bbb255cd
1 changed files with 5 additions and 5 deletions

View File

@ -232,5 +232,5 @@ class ElasticGroovyExploiter(HostExploiter):
try: try:
json_resp = json.loads(response.text) json_resp = json.loads(response.text)
return json_resp['hits']['hits'][0]['fields'][self.MONKEY_RESULT_FIELD] return json_resp['hits']['hits'][0]['fields'][self.MONKEY_RESULT_FIELD]
except KeyError: except (KeyError, IndexError):
return None return None