Make PEP8 happy.

pull/1/head
Raphaël Vinot 2016-02-23 19:50:35 -06:00
parent d990de3995
commit 6c378af7ee
2 changed files with 13 additions and 8 deletions

View File

@ -53,6 +53,7 @@ for module in os.listdir(modulesdir):
mhandlers[modulename] = importlib.import_module('modules.expansion.' + modulename)
mhandlers['type:' + modulename] = moduletype
class ListModules(tornado.web.RequestHandler):
def get(self):
ret = []
@ -66,6 +67,7 @@ class ListModules(tornado.web.RequestHandler):
log.debug('MISP ListModules request')
self.write(json.dumps(ret))
class QueryModule(tornado.web.RequestHandler):
def post(self):
jsonpayload = self.request.body.decode('utf-8')

View File

@ -4,6 +4,7 @@ import dns.resolver
mispattributes = {'input': ['hostname', 'domain'], 'output': ['ip-src', 'ip-dst']}
moduleinfo = "0.1"
def handler(q=False):
if q is False:
return False
@ -25,8 +26,10 @@ def handler(q=False):
r = {'results': [{'types': mispattributes['output'], 'values':[str(answer[0])]}]}
return r
def introspection():
def introspection():
return mispattributes
def version():
return moduleinfo