From 2f51deb88a634acf94ee19dfd6274eb87660f263 Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Wed, 2 Oct 2013 14:53:04 +0100 Subject: [PATCH] Fixed issue with Social Engineering extension when using an SMTP server without any needed authentication. --- extensions/social_engineering/mass_mailer/mass_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/social_engineering/mass_mailer/mass_mailer.rb b/extensions/social_engineering/mass_mailer/mass_mailer.rb index 3ab99ad17..40f6083b9 100644 --- a/extensions/social_engineering/mass_mailer/mass_mailer.rb +++ b/extensions/social_engineering/mass_mailer/mass_mailer.rb @@ -56,7 +56,7 @@ module BeEF end end else - smtp.start(@helo, @auth) do |smtp| + smtp.start(@helo) do |smtp| tos_hash.each do |to, name| message = compose_email(fromname, fromaddr, to, name, subject, link, linktext, template) smtp.send_message(message, fromaddr, to)