mirror of https://github.com/MISP/misp-modules
commit
494c7bbef1
|
@ -8,7 +8,7 @@ import json
|
||||||
|
|
||||||
misperrors = {"error": "Error"}
|
misperrors = {"error": "Error"}
|
||||||
|
|
||||||
types_to_use = ['sha1', 'md5', 'domain', 'ip', 'url']
|
types_to_use = ['sha256', 'sha1', 'md5', 'domain', 'ip', 'url']
|
||||||
|
|
||||||
userConfig = {
|
userConfig = {
|
||||||
|
|
||||||
|
@ -20,11 +20,17 @@ inputSource = ['event']
|
||||||
outputFileExtension = 'kql'
|
outputFileExtension = 'kql'
|
||||||
responseType = 'application/txt'
|
responseType = 'application/txt'
|
||||||
|
|
||||||
moduleinfo = {'version': '1.0', 'author': 'Julien Bachmann, Hacknowledge',
|
moduleinfo = {'version': '1.1', 'author': 'Julien Bachmann, Hacknowledge, Maik Wuerth',
|
||||||
'description': 'Defender for Endpoint KQL hunting query export module',
|
'description': 'Defender for Endpoint KQL hunting query export module',
|
||||||
'module-type': ['export']}
|
'module-type': ['export']}
|
||||||
|
|
||||||
|
|
||||||
|
def handle_sha256(value, period):
|
||||||
|
query = f"""find in (DeviceAlertEvents, DeviceFileEvents, DeviceImageLoadEvents, DeviceProcessEvents)
|
||||||
|
where SHA256 == '{value}' or InitiatingProcessSHA1 == '{value}'"""
|
||||||
|
return query.replace('\n', ' ')
|
||||||
|
|
||||||
|
|
||||||
def handle_sha1(value, period):
|
def handle_sha1(value, period):
|
||||||
query = f"""find in (DeviceAlertEvents, DeviceFileEvents, DeviceImageLoadEvents, DeviceProcessEvents)
|
query = f"""find in (DeviceAlertEvents, DeviceFileEvents, DeviceImageLoadEvents, DeviceProcessEvents)
|
||||||
where SHA1 == '{value}' or InitiatingProcessSHA1 == '{value}'"""
|
where SHA1 == '{value}' or InitiatingProcessSHA1 == '{value}'"""
|
||||||
|
@ -56,6 +62,7 @@ def handle_url(value, period):
|
||||||
|
|
||||||
|
|
||||||
handlers = {
|
handlers = {
|
||||||
|
'sha256': handle_sha256,
|
||||||
'sha1': handle_sha1,
|
'sha1': handle_sha1,
|
||||||
'md5': handle_md5,
|
'md5': handle_md5,
|
||||||
'domain': handle_domain,
|
'domain': handle_domain,
|
||||||
|
@ -75,6 +82,10 @@ def handler(q=False):
|
||||||
for attribute in event["Attribute"]:
|
for attribute in event["Attribute"]:
|
||||||
if attribute['type'] in types_to_use:
|
if attribute['type'] in types_to_use:
|
||||||
output = output + handlers[attribute['type']](attribute['value'], config['Period']) + '\n'
|
output = output + handlers[attribute['type']](attribute['value'], config['Period']) + '\n'
|
||||||
|
for obj in event["Object"]:
|
||||||
|
for attribute in obj["Attribute"]:
|
||||||
|
if attribute['type'] in types_to_use:
|
||||||
|
output = output + handlers[attribute['type']](attribute['value'], config['Period']) + '\n'
|
||||||
r = {"response": [], "data": str(base64.b64encode(bytes(output, 'utf-8')), 'utf-8')}
|
r = {"response": [], "data": str(base64.b64encode(bytes(output, 'utf-8')), 'utf-8')}
|
||||||
return r
|
return r
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue