You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- added new class CryptographicKeys
- added functions to to_feed calls to include crypto keys
- added protected boolean field to misp event
- updated feed generator to support signing
- if the new setting is set to True signing will be attempted for protected events
- protected events are now passed to the /cryptographic_keys/serverSign endpoint of misp for signing
- signatures are included as a .asc file in the output directory
- TODO:
- currently the JSON dumping is moved from a streamed dumping to an in memory dump before saving to disk
- add a check for protected events and revert to streamed dumping for non protected events
- alternatively use the already saved files to request signing from MISP
Copy file name to clipboardExpand all lines: examples/feed-generator/settings.default.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,3 +54,6 @@
54
54
55
55
# Include the exportable local tags along with the global tags. The default is True.
56
56
with_local_tags=True
57
+
58
+
# Include signatures for protected events. This will allow MISP to ingest and update protected events from the feed. It requires perm_server_sign to be set to true in the user's role on MISP's side.
0 commit comments