mirror of https://github.com/CIRCL/lookyloo
fix: avoid exception if submission is missing
parent
50dbbd6eba
commit
9ff2bf8157
|
@ -396,7 +396,7 @@ def modules(tree_uuid: str):
|
||||||
if 'urlscan' in modules_responses:
|
if 'urlscan' in modules_responses:
|
||||||
urlscan = modules_responses.pop('urlscan')
|
urlscan = modules_responses.pop('urlscan')
|
||||||
urlscan_to_display = {'permaurl': '', 'malicious': False, 'tags': []}
|
urlscan_to_display = {'permaurl': '', 'malicious': False, 'tags': []}
|
||||||
if urlscan['submission'].get('result'):
|
if urlscan['submission'] and urlscan['submission'].get('result'):
|
||||||
urlscan_to_display['permaurl'] = urlscan['submission']['result']
|
urlscan_to_display['permaurl'] = urlscan['submission']['result']
|
||||||
if urlscan['result']:
|
if urlscan['result']:
|
||||||
# We have a result available, get the verdicts
|
# We have a result available, get the verdicts
|
||||||
|
|
Loading…
Reference in New Issue