diff --git a/misp_modules/modules/expansion/dnstrails.py b/misp_modules/modules/expansion/dnstrails.py index abef1e5..1fd7500 100644 --- a/misp_modules/modules/expansion/dnstrails.py +++ b/misp_modules/modules/expansion/dnstrails.py @@ -190,6 +190,8 @@ def expand_subdomains(api, domain): r.append({ 'type': ['domain'], 'values': ['%s.%s' % (sub,domain) for sub in results['subdomains']], + 'categories': ['Network activity'], + 'comment': 'subdomains of %s' % domain } )