mirror of https://github.com/MISP/misp-modules
updated
parent
c32d772275
commit
d3d772a225
|
@ -29,7 +29,7 @@ _IPGEO_MAPPING ={
|
||||||
'state_prov':'state',
|
'state_prov':'state',
|
||||||
'zipcode':'zipcode',
|
'zipcode':'zipcode',
|
||||||
'ip':'ip-src'
|
'ip':'ip-src'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def handler(q=False):
|
def handler(q=False):
|
||||||
|
@ -37,7 +37,7 @@ def handler(q=False):
|
||||||
if q is False:
|
if q is False:
|
||||||
return False
|
return False
|
||||||
request = json.loads(q)
|
request = json.loads(q)
|
||||||
if not request.get('config'):
|
if request.get('config'):
|
||||||
return {'error' : 'IpGeolocation Configuration is missing'}
|
return {'error' : 'IpGeolocation Configuration is missing'}
|
||||||
if not request['config'].get('apiKey'):
|
if not request['config'].get('apiKey'):
|
||||||
return {'error' : 'IpGeolocation apiKey is missing'}
|
return {'error' : 'IpGeolocation apiKey is missing'}
|
||||||
|
|
Loading…
Reference in New Issue