mirror of https://github.com/MISP/misp-modules
Modules for expansion services, import and export in MISP
http://misp.github.io/misp-modules
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
# -*- coding: utf-8 -*- |
|
|
|
import json |
|
try: |
|
from uwhois import Uwhois |
|
except ImportError: |
|
print("uwhois module not installed.") |
|
|
|
misperrors = {'error': 'Error'} |
|
mispattributes = {'input': ['domain', 'ip-src', 'ip-dst'], 'output': ['freetext']} |
|
moduleinfo = {'version': '0.1', 'author': 'Raphaël Vinot', |
|
'description': 'Query a local instance of uwhois (https://github.com/rafiot/uwhoisd)', |
|
'module-type': ['expansion']} |
|
|
|
moduleconfig = ['server', 'port'] |
|
|
|
|
|
def handler(q=False): |
|
if q is False: |
|
return False |
|
request = json.loads(q) |
|
if request.get('domain'): |
|
toquery = request['domain'] |
|
elif request.get('ip-src'): |
|
toquery = request['ip-src'] |
|
elif request.get('ip-dst'): |
|
toquery = request['ip-dst'] |
|
else: |
|
misperrors['error'] = "Unsupported attributes type" |
|
return misperrors |
|
|
|
if not request.get('config') and not (request['config'].get('apikey') and request['config'].et('url')): |
|
misperrors['error'] = 'EUPI authentication is missing' |
|
return misperrors |
|
|
|
uwhois = Uwhois(request['config']['server'], int(request['config']['port'])) |
|
|
|
if 'event_id' in request: |
|
return handle_expansion(uwhois, toquery) |
|
|
|
|
|
def handle_expansion(w, domain): |
|
return {'results': [{'types': mispattributes['output'], 'values': w.query(domain)}]} |
|
|
|
|
|
def introspection(): |
|
return mispattributes |
|
|
|
|
|
def version(): |
|
moduleinfo['config'] = moduleconfig |
|
return moduleinfo
|
|
|