fix: missing attachment file name

pull/38/head
Raphaël Vinot 2018-05-06 22:29:42 +02:00
parent e364b69bfa
commit e713ab2939
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,8 @@ class Mail2MISP():
if email_object.attachments:
# Create file objects for the attachments
for attachment_name, attachment in email_object.attachments:
if not attachment_name:
attachment_name = 'NameMissing'
f_object, main_object, sections = make_binary_objects(pseudofile=attachment, filename=attachment_name, standalone=False)
self.misp_event.add_object(f_object)
if main_object: