Skip to content

Commit

Permalink
Merge 3c121e1 into 4e2b1b2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Nov 21, 2016
2 parents 4e2b1b2 + 3c121e1 commit 2aaadd0
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
39 changes: 39 additions & 0 deletions misp_modules/modules/event/sign.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-

import json

from pymisp import MISPEvent, EncodeUpdate

misperrors = {'error': 'Error'}

moduleinfo = {'version': '0.1', 'author': 'Raphaël Vinot',
'description': 'Sign a MISP Event',
'module-type': ['event']}

moduleconfig = ['uid', 'passphrase']

'''
NOTE:
* requires pyme3 + dependencies
* working gpg-agent
* private key for signing
'''


def handler(q=False):
if q is False:
return False
request = json.loads(q) # Assuming request has two keys: config & mispevent (mispevent being the json dump of the event)
mispevent = MISPEvent()
mispevent.load(request['mispevent'])
mispevent.sign(request['config']['uid'], request['config']['passphrase'])
return json.dumps(mispevent, cls=EncodeUpdate)


def introspection():
return moduleconfig


def version():
moduleinfo['config'] = moduleconfig
return moduleinfo
39 changes: 39 additions & 0 deletions misp_modules/modules/event/verify.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-

import json

from pymisp import MISPEvent

misperrors = {'error': 'Error'}

moduleinfo = {'version': '0.1', 'author': 'Raphaël Vinot',
'description': 'Verify the signature of a MISP Event',
'module-type': ['event']}

moduleconfig = ['uid']

'''
NOTE:
* requires pyme3 + dependencies
* working gpg-agent
* the public key which signed the event in the keyring
'''


def handler(q=False):
if q is False:
return False
request = json.loads(q) # Assuming request has two keys: config & mispevent (mispevent being the json dump of the event)
mispevent = MISPEvent()
mispevent.load(request['mispevent'])
verified = mispevent.verify(mispevent.Org['uuid'])
return json.dumps(verified)


def introspection():
return moduleconfig


def version():
moduleinfo['config'] = moduleconfig
return moduleinfo

0 comments on commit 2aaadd0

Please sign in to comment.