2021-08-25 18:38:09 +02:00
|
|
|
import json
|
|
|
|
import requests
|
|
|
|
from . import check_input_attribute, standard_error_message
|
|
|
|
from collections import defaultdict
|
|
|
|
from pymisp import MISPEvent, MISPObject
|
|
|
|
|
|
|
|
misperrors = {'error': 'Error'}
|
2021-12-18 09:22:32 +01:00
|
|
|
mispattributes = {'input': ['md5', 'sha1', 'sha256'], 'format': 'misp_standard'}
|
|
|
|
moduleinfo = {'version': '2', 'author': 'Alexandre Dulaunoy',
|
2021-08-25 18:38:09 +02:00
|
|
|
'description': 'An expansion module to enrich a file hash with hashlookup.circl.lu services (NSRL and other sources)',
|
|
|
|
'module-type': ['expansion', 'hover']}
|
|
|
|
moduleconfig = ["custom_API"]
|
|
|
|
hashlookup_url = 'https://hashlookup.circl.lu/'
|
|
|
|
|
|
|
|
|
|
|
|
class HashlookupParser():
|
|
|
|
def __init__(self, attribute, hashlookupresult, api_url):
|
|
|
|
self.attribute = attribute
|
2021-09-24 15:35:14 +02:00
|
|
|
self.hashlookupresult = hashlookupresult
|
2021-08-25 18:38:09 +02:00
|
|
|
self.api_url = api_url
|
|
|
|
self.misp_event = MISPEvent()
|
|
|
|
self.misp_event.add_attribute(**attribute)
|
|
|
|
self.references = defaultdict(list)
|
|
|
|
|
|
|
|
def get_result(self):
|
|
|
|
if self.references:
|
|
|
|
self.__build_references()
|
|
|
|
event = json.loads(self.misp_event.to_json())
|
|
|
|
results = {key: event[key] for key in ('Attribute', 'Object') if (key in event and event[key])}
|
|
|
|
return {'results': results}
|
|
|
|
|
|
|
|
def parse_hashlookup_information(self):
|
|
|
|
hashlookup_object = MISPObject('hashlookup')
|
2021-09-24 15:29:23 +02:00
|
|
|
if 'source' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('source', **{'type': 'text', 'value': self.hashlookupresult['source']})
|
2021-09-24 15:35:14 +02:00
|
|
|
if 'KnownMalicious' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('KnownMalicious', **{'type': 'text', 'value': self.hashlookupresult['KnownMalicious']})
|
2021-12-18 09:22:32 +01:00
|
|
|
if 'MD5' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('MD5', **{'type': 'md5', 'value': self.hashlookupresult['MD5']})
|
|
|
|
# SHA-1 is the default value in hashlookup it must always be present
|
2021-08-25 18:38:09 +02:00
|
|
|
hashlookup_object.add_attribute('SHA-1', **{'type': 'sha1', 'value': self.hashlookupresult['SHA-1']})
|
2021-12-18 09:22:32 +01:00
|
|
|
if 'SHA-256' in self.hashlookupresult:
|
2021-12-18 17:11:06 +01:00
|
|
|
hashlookup_object.add_attribute('SHA-256', **{'type': 'sha256', 'value': self.hashlookupresult['SHA-256']})
|
2021-09-24 15:29:23 +02:00
|
|
|
if 'SSDEEP' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('SSDEEP', **{'type': 'ssdeep', 'value': self.hashlookupresult['SSDEEP']})
|
|
|
|
if 'TLSH' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('TLSH', **{'type': 'tlsh', 'value': self.hashlookupresult['TLSH']})
|
2021-09-24 15:09:07 +02:00
|
|
|
if 'FileName' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('FileName', **{'type': 'filename', 'value': self.hashlookupresult['FileName']})
|
|
|
|
if 'FileSize' in self.hashlookupresult:
|
|
|
|
hashlookup_object.add_attribute('FileSize', **{'type': 'size-in-bytes', 'value': self.hashlookupresult['FileSize']})
|
2021-08-25 18:38:09 +02:00
|
|
|
hashlookup_object.add_reference(self.attribute['uuid'], 'related-to')
|
|
|
|
self.misp_event.add_object(hashlookup_object)
|
|
|
|
|
|
|
|
def __build_references(self):
|
|
|
|
for object_uuid, references in self.references.items():
|
|
|
|
for misp_object in self.misp_event.objects:
|
|
|
|
if misp_object.uuid == object_uuid:
|
|
|
|
for reference in references:
|
|
|
|
misp_object.add_reference(**reference)
|
|
|
|
break
|
|
|
|
|
|
|
|
def check_url(url):
|
|
|
|
return "{}/".format(url) if not url.endswith('/') else url
|
|
|
|
|
|
|
|
|
|
|
|
def handler(q=False):
|
|
|
|
if q is False:
|
|
|
|
return False
|
|
|
|
request = json.loads(q)
|
|
|
|
if not request.get('attribute') or not check_input_attribute(request['attribute']):
|
|
|
|
return {'error': f'{standard_error_message}, which should contain at least a type, a value and an uuid.'}
|
|
|
|
attribute = request['attribute']
|
|
|
|
if attribute.get('type') == 'md5':
|
|
|
|
pass
|
|
|
|
elif attribute.get('type') == 'sha1':
|
|
|
|
pass
|
2021-12-18 09:22:32 +01:00
|
|
|
elif attribute.get('type') == 'sha256':
|
|
|
|
pass
|
2021-08-25 18:38:09 +02:00
|
|
|
else:
|
2021-12-18 09:22:32 +01:00
|
|
|
misperrors['error'] = 'md5 or sha1 or sha256 is missing.'
|
2021-08-25 18:38:09 +02:00
|
|
|
return misperrors
|
|
|
|
api_url = check_url(request['config']['custom_API']) if request['config'].get('custom_API') else hashlookup_url
|
|
|
|
r = requests.get("{}/lookup/{}/{}".format(api_url, attribute.get('type'), attribute['value']))
|
|
|
|
if r.status_code == 200:
|
|
|
|
hashlookupresult = r.json()
|
|
|
|
if not hashlookupresult:
|
|
|
|
misperrors['error'] = 'Empty result'
|
2021-08-26 15:02:32 +02:00
|
|
|
return misperrors
|
2021-08-25 18:38:09 +02:00
|
|
|
elif r.status_code == 404:
|
|
|
|
misperrors['error'] = 'Non existing hash'
|
2021-08-26 15:02:32 +02:00
|
|
|
return misperrors
|
2021-08-25 18:38:09 +02:00
|
|
|
else:
|
|
|
|
misperrors['error'] = 'API not accessible'
|
2021-08-26 15:02:32 +02:00
|
|
|
return misperrors
|
2021-08-25 18:38:09 +02:00
|
|
|
parser = HashlookupParser(attribute, hashlookupresult, api_url)
|
|
|
|
parser.parse_hashlookup_information()
|
|
|
|
result = parser.get_result()
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def introspection():
|
|
|
|
return mispattributes
|
|
|
|
|
|
|
|
|
|
|
|
def version():
|
|
|
|
moduleinfo['config'] = moduleconfig
|
|
|
|
return moduleinfo
|