Merge branch 'main' of github.com:MISP/misp-modules into main

pull/415/head
chrisr3d 2020-07-03 10:24:45 +02:00
commit a4e9fe456e
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]: