mirror of https://github.com/CIRCL/AIL-framework
chg: [MISP Export] filter None MISP objects
parent
24046734c1
commit
0a67441416
|
@ -212,7 +212,8 @@ class MISPExporter(AbstractExporter, ABC):
|
||||||
|
|
||||||
misp_objects = ail_objects.get_misp_objects(objs)
|
misp_objects = ail_objects.get_misp_objects(objs)
|
||||||
for obj in misp_objects:
|
for obj in misp_objects:
|
||||||
event.add_object(obj)
|
if obj:
|
||||||
|
event.add_object(obj)
|
||||||
# print(event.to_json())
|
# print(event.to_json())
|
||||||
|
|
||||||
if export:
|
if export:
|
||||||
|
|
Loading…
Reference in New Issue