fix: [virustotal] Subdomains is optional in VT response

pull/411/head
Jakub Onderka 2020-07-01 16:13:40 +02:00
parent 9c55495e19
commit cda5feedaa
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class VirusTotalParser(object):
'downloaded': 'downloaded-from',
'referrer': 'referring'}
siblings = (self.parse_siblings(domain) for domain in req['domain_siblings'])
uuid = self.parse_resolutions(req['resolutions'], req['subdomains'], siblings)
uuid = self.parse_resolutions(req['resolutions'], req['subdomains'] if 'subdomains' in req else None, siblings)
for feature_type, relationship in feature_types.items():
for feature in ('undetected_{}_samples', 'detected_{}_samples'):
for sample in req.get(feature.format(feature_type), [])[:self.limit]: