Raikia / FiercePhish

FiercePhish is a full-fledged phishing framework to manage all phishing engagements. It allows you to track separate phishing campaigns, schedule sending of emails, and much more.
https://github.com/Raikia/FiercePhish/wiki
GNU General Public License v3.0
1.32k stars 250 forks source link

DB field too small for large attachments, resulting in corruption #79

Closed er11ks0 closed 4 years ago

er11ks0 commented 5 years ago

FiercePhish stores attachments in a MySQL field with the type of TEXT which can hold a max of 65,535 characters.

When sending emails with large attachments, the base64 attachment data gets truncated and the file is corrupted.

Recommend changing database field type to MEDIUMTEXT or LONGTEXT to handle larger attachments.