mirror of https://github.com/MISP/misp-modules
fix: Added the moduleinfo field need to have MISP event in standard format
parent
c3ac53a069
commit
5995458aab
|
@ -5,7 +5,8 @@ from collections import defaultdict, Counter
|
|||
misperrors = {'error': 'Error'}
|
||||
moduleinfo = {'version': '1', 'author': 'Christian Studer',
|
||||
'description': 'Export to GoAML',
|
||||
'module-type': ['export']}
|
||||
'module-type': ['export'],
|
||||
'require_standard_format': True}
|
||||
moduleconfig = ['rentity_id']
|
||||
mispattributes = {'input': ['MISPEvent'], 'output': ['xml file']}
|
||||
outputFileExtension = "xml"
|
||||
|
|
|
@ -15,7 +15,8 @@ misperrors = {'error': 'Error'}
|
|||
moduleinfo = {'version': '1',
|
||||
'author': 'Raphaël Vinot',
|
||||
'description': 'Simple export to PDF',
|
||||
'module-type': ['export']}
|
||||
'module-type': ['export'],
|
||||
'require_standard_format': True}
|
||||
|
||||
moduleconfig = []
|
||||
|
||||
|
|
Loading…
Reference in New Issue