From 526321c8b491bb665bdb3a1539cb29efb9272080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 26 May 2020 10:56:43 +0200 Subject: [PATCH] new: Add deleted in field export Fix #586 --- pymisp/mispevent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymisp/mispevent.py b/pymisp/mispevent.py index cdbedfb..49829a4 100644 --- a/pymisp/mispevent.py +++ b/pymisp/mispevent.py @@ -170,7 +170,7 @@ class MISPSighting(AbstractMISP): class MISPAttribute(AbstractMISP): - _fields_for_feed: set = {'uuid', 'value', 'category', 'type', 'comment', 'data', + _fields_for_feed: set = {'uuid', 'value', 'category', 'type', 'comment', 'data', 'deleted', 'timestamp', 'to_ids', 'disable_correlation', 'first_seen', 'last_seen'} def __init__(self, describe_types: Optional[Dict]=None, strict: bool=False):