mirror of https://github.com/MISP/misp-modules
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
|
import json
|
||
|
import binascii
|
||
|
import np
|
||
|
from ODTReader.odtreader import odtToText
|
||
|
import io
|
||
|
|
||
|
misperrors = {'error': 'Error'}
|
||
|
mispattributes = {'input': ['attachment'],
|
||
|
'output': ['freetext', 'text']}
|
||
|
moduleinfo = {'version': '0.1', 'author': 'Sascha Rommelfangen',
|
||
|
'description': '.odt to freetext-import IOC extractor',
|
||
|
'module-type': ['expansion']}
|
||
|
|
||
|
moduleconfig = []
|
||
|
|
||
|
|
||
|
def handler(q=False):
|
||
|
if q is False:
|
||
|
return False
|
||
|
q = json.loads(q)
|
||
|
filename = q['attachment']
|
||
|
try:
|
||
|
odt_array = np.frombuffer(binascii.a2b_base64(q['data']), np.uint8)
|
||
|
except Exception as e:
|
||
|
print(e)
|
||
|
err = "Couldn't fetch attachment (JSON 'data' is empty). Are you using the 'Query enrichment' action?"
|
||
|
misperrors['error'] = err
|
||
|
print(err)
|
||
|
return misperrors
|
||
|
|
||
|
odt_content = ""
|
||
|
odt_file = io.BytesIO(odt_array)
|
||
|
try:
|
||
|
odt_content = odtToText(odt_file)
|
||
|
print(odt_content)
|
||
|
return {'results': [{'types': ['freetext'], 'values': odt_content, 'comment': ".odt-to-text from file " + filename},
|
||
|
{'types': ['text'], 'values': odt_content, 'comment': ".odt-to-text from file " + filename}]}
|
||
|
except Exception as e:
|
||
|
print(e)
|
||
|
err = "Couldn't analyze file as .odt. Error was: " + str(e)
|
||
|
misperrors['error'] = err
|
||
|
return misperrors
|
||
|
|
||
|
|
||
|
def introspection():
|
||
|
return mispattributes
|
||
|
|
||
|
|
||
|
def version():
|
||
|
moduleinfo['config'] = moduleconfig
|
||
|
return moduleinfo
|