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'}
|
misperrors = {'error': 'Error'}
|
||||||
moduleinfo = {'version': '1', 'author': 'Christian Studer',
|
moduleinfo = {'version': '1', 'author': 'Christian Studer',
|
||||||
'description': 'Export to GoAML',
|
'description': 'Export to GoAML',
|
||||||
'module-type': ['export']}
|
'module-type': ['export'],
|
||||||
|
'require_standard_format': True}
|
||||||
moduleconfig = ['rentity_id']
|
moduleconfig = ['rentity_id']
|
||||||
mispattributes = {'input': ['MISPEvent'], 'output': ['xml file']}
|
mispattributes = {'input': ['MISPEvent'], 'output': ['xml file']}
|
||||||
outputFileExtension = "xml"
|
outputFileExtension = "xml"
|
||||||
|
|
|
@ -15,7 +15,8 @@ misperrors = {'error': 'Error'}
|
||||||
moduleinfo = {'version': '1',
|
moduleinfo = {'version': '1',
|
||||||
'author': 'Raphaël Vinot',
|
'author': 'Raphaël Vinot',
|
||||||
'description': 'Simple export to PDF',
|
'description': 'Simple export to PDF',
|
||||||
'module-type': ['export']}
|
'module-type': ['export'],
|
||||||
|
'require_standard_format': True}
|
||||||
|
|
||||||
moduleconfig = []
|
moduleconfig = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue