Open f00bar10 opened 5 years ago
Cuckoo throws the error "MISP - Failed to run the reporting module" when reporting to MISP using the module misp.py (https://github.com/cuckoosandbox/cuckoo/blob/master/cuckoo/reporting/misp.py).
This error is when it executes the line 121: marks.append(mark[mark["type"]])
marks.append(mark[mark["type"]])
For fixing it, just change the above line with the following one: marks.append(mark["type"])
marks.append(mark["type"])
lol if that is fix should be PR not issue :P
My issue is:
Cuckoo throws the error "MISP - Failed to run the reporting module" when reporting to MISP using the module misp.py (https://github.com/cuckoosandbox/cuckoo/blob/master/cuckoo/reporting/misp.py).
My Cuckoo version and operating system are: 2.0.7 and Ubuntu 18.04
The error can be found at:
This error is when it executes the line 121:
marks.append(mark[mark["type"]])
Fix
For fixing it, just change the above line with the following one:
marks.append(mark["type"])