fix: Avoiding issues with non existing sample types

pull/322/head
chrisr3d 2019-07-22 11:43:35 +02:00
parent 675e0815ff
commit 1fa37ea712
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class DomainQuery(VirusTotalParser):
whois = 'whois'
for feature_type in ('referrer', 'downloaded', 'communicating'):
for feature in ('undetected_{}_samples', 'detected_{}_samples'):
for sample in query_result[feature.format(feature_type)]:
for sample in query_result.get(feature.format(feature_type), []):
self.misp_event.add_attribute(hash_type, sample[hash_type])
if query_result.get(whois):
whois_object = MISPObject(whois)