mirror of https://github.com/MISP/misp-modules
fix: required parameters for Recorded Future object
parent
09a57787b6
commit
2874c41f7f
|
@ -242,6 +242,10 @@ class RFEnricher:
|
||||||
def __init__(self, attribute_props: dict):
|
def __init__(self, attribute_props: dict):
|
||||||
self.event = MISPEvent()
|
self.event = MISPEvent()
|
||||||
self.enrichment_object = MISPObject("Recorded Future Enrichment")
|
self.enrichment_object = MISPObject("Recorded Future Enrichment")
|
||||||
|
self.enrichment_object.template_uuid = "cbe0ffda-75e5-4c49-833f-093f057652ba"
|
||||||
|
self.enrichment_object.template_id = "1"
|
||||||
|
self.enrichment_object.description = "Recorded Future Enrichment"
|
||||||
|
setattr(self.enrichment_object, 'meta-category', 'network')
|
||||||
description = (
|
description = (
|
||||||
"An object containing the enriched attribute and "
|
"An object containing the enriched attribute and "
|
||||||
"related entities from Recorded Future."
|
"related entities from Recorded Future."
|
||||||
|
|
Loading…
Reference in New Issue