Merge pull request #13 from Rafiot/master

Fix eupi module
pull/14/head
Raphaël Vinot 2016-04-28 16:32:58 +02:00
commit e826eb3d69
1 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@ def handler(q=False):
for r in results['results']:
if r['tag_label'] != 'phishing':
continue
to_return += ' {} {} {} '.format(r['url'], r['domain'], r['ip'])
to_return += ' {} {} {} '.format(r['url'], r['domain'], r['ip_address'])
r = {'results': [{'types': mispattributes['output'], 'values': to_return}]}
return r
r = {'results': [{'types': mispattributes['output'], 'values': to_return}]}
return r
def introspection():