Make PEP8 happy

pull/9/head
Raphaël Vinot 2016-04-11 11:07:11 +02:00
parent be27730fd3
commit 601380df68
5 changed files with 8 additions and 8 deletions

View File

@ -1,9 +1,9 @@
import json
import pypdns
misperrors = {'error' : 'Error'}
mispattributes = {'input': ['hostname', 'domain','ip-src','ip-dst'], 'output': ['freetext']}
moduleinfo = {'version': '0.1', 'author': 'Alexandre Dulaunoy', 'description': 'Module to access CIRCL Passive DNS', 'module-type': ['expansion','hover']}
misperrors = {'error': 'Error'}
mispattributes = {'input': ['hostname', 'domain', 'ip-src', 'ip-dst'], 'output': ['freetext']}
moduleinfo = {'version': '0.1', 'author': 'Alexandre Dulaunoy', 'description': 'Module to access CIRCL Passive DNS', 'module-type': ['expansion', 'hover']}
moduleconfig = ['username', 'password']
@ -34,7 +34,7 @@ def handler(q=False):
for v in res:
out = out + "{} ".format(v['rdata'])
r = {'results': [{'types': mispattributes['output'], 'values': out }]}
r = {'results': [{'types': mispattributes['output'], 'values': out}]}
return r

View File

@ -17,7 +17,7 @@ def handler(q=False):
misperrors['error'] = 'Vulnerability id missing'
return misperrors
r = requests.get(cveapi_url+request.get('vulnerability'))
r = requests.get(cveapi_url + request.get('vulnerability'))
if r.status_code == 200:
vulnerability = json.loads(r.text)
if vulnerability.get('summary'):

View File

@ -1,9 +1,9 @@
import json
import dns.resolver
misperrors = {'error' : 'Error'}
misperrors = {'error': 'Error'}
mispattributes = {'input': ['hostname', 'domain'], 'output': ['ip-src', 'ip-dst']}
moduleinfo = {'version': '0.1', 'author': 'Alexandre Dulaunoy', 'description': 'Simple DNS expansion service to resolve IP address from MISP attributes', 'module-type': ['expansion','hover']}
moduleinfo = {'version': '0.1', 'author': 'Alexandre Dulaunoy', 'description': 'Simple DNS expansion service to resolve IP address from MISP attributes', 'module-type': ['expansion', 'hover']}
def handler(q=False):

View File

@ -344,4 +344,3 @@ def introspection():
def version():
moduleinfo['config'] = moduleconfig
return moduleinfo

View File

@ -35,6 +35,7 @@ def __archiveLink(archive_path, tocache):
archiver = url_archiver.Archive(archive_path=archive_path)
return archiver.fetch(url=tocache, armor=True)
def introspection():
return mispattributes