pentestgeek / phishing-frenzy

Ruby on Rails Phishing Framework
www.phishingfrenzy.com
GNU General Public License v3.0
797 stars 297 forks source link

TEXT vs HTML emails #322

Open ShadyWushu opened 8 years ago

ShadyWushu commented 8 years ago

Is there a method to enforce the sending of only TEXT emails? I've run into a situation where the target turning all HTML emails into attachments. All "legitimate" emails are TEXT only.

zeknox commented 8 years ago

I've never tested this, but it should already work with the existing code. Since PF leverages Action Mailer to send Emails it should handle HTML or TXT. All you probably need to do is upload a TEXT email with the following extension name: email.text.erb.

Make sure your content is all TEXT based, Rails should see that it's a TEXT based email and deliver properly. Try it out and keep us posted.

zeknox commented 8 years ago

I looked at the source code just now for this, we currently are only sending the HTML version, but I look to implement the ability to send either, or both versions to up the SPAM filter score rating.