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.
39 lines
1.0 KiB
39 lines
1.0 KiB
# -*- coding: utf-8 -*- |
|
|
|
import json |
|
from pyipasnhistory import IPASNHistory |
|
|
|
misperrors = {'error': 'Error'} |
|
mispattributes = {'input': ['ip-src', 'ip-dst'], 'output': ['freetext']} |
|
moduleinfo = {'version': '0.1', 'author': 'Raphaël Vinot', |
|
'description': 'Query an IP ASN history service (https://github.com/CIRCL/IP-ASN-history.git)', |
|
'module-type': ['expansion', 'hover']} |
|
|
|
|
|
def handler(q=False): |
|
if q is False: |
|
return False |
|
request = json.loads(q) |
|
if 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 |
|
|
|
ipasn = IPASNHistory() |
|
values = ipasn.query(toquery) |
|
|
|
if not values: |
|
misperrors['error'] = 'Unable to find the history of this IP' |
|
return misperrors |
|
return {'results': [{'types': mispattributes['output'], 'values': values}]} |
|
|
|
|
|
def introspection(): |
|
return mispattributes |
|
|
|
|
|
def version(): |
|
return moduleinfo
|
|
|