We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de2013 commit a0cf9deCopy full SHA for a0cf9de
misp_modules/modules/expansion/securitytrails.py
@@ -509,5 +509,7 @@ def __select_registrant_item(entry):
509
if 'contact' in entry:
510
print(entry)
511
print('\r\n')
512
- return list(filter(lambda x: x['type'] == 'registrant',
513
- entry['contact']))
+ res = list(filter(lambda x: x['type'] == 'registrant',
+ entry['contact']))
514
+ print(res)
515
+ return res
0 commit comments