MISP2CbR
MISP2CbR copied to clipboard
Error in script
Thanks for putting this script together was a great fit for my use case.
I think there is an error in the script, not sure if something changed in the misp API, but on line 90 I had to change for e in data['response']['Attribute']: to for e in data['Attribute']:
This is the error I was getting before the change:
ERROR in app: Exception on / [GET] Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 2447, in wsgi_app response = self.full_dispatch_request() File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1952, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1821, in handle_user_exception reraise(exc_type, exc_value, tb) File "/usr/local/lib/python3.6/dist-packages/flask/_compat.py", line 39, in reraise raise value File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1950, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1936, in dispatch_request return self.view_functionsrule.endpoint File "MISP2CBR.py", line 146, in fetch_and_deliver feed = GetMISPData() File "MISP2CBR.py", line 90, in GetMISPData for e in data['response']['Attribute']: KeyError: 'response'
Though I would message to let you know and also check its not my misunderstanding as my python is rusty as best.
Thanks