LSaddon :: mail: Improve mail forging method by using PEAR Mail_mime lib

This commit is contained in:
Benjamin Renard 2020-04-29 15:26:15 +02:00
parent de3adbbffb
commit c63040203d
4 changed files with 79 additions and 35 deletions

2
debian/control vendored
View file

@ -6,7 +6,7 @@ Maintainer: Benjamin Renard <brenard@easter-eggs.com>
Package: ldapsaisie Package: ldapsaisie
Architecture: all Architecture: all
Depends: apache2 | httpd, php-ldap | php5-ldap, php-fpm | libapache2-mod-php5 | libapache2-mod-php | php5-cli | php-cli, smarty | smarty3, php-net-ldap2, php-net-ftp, php-mail, php-file-csv-datasource Depends: apache2 | httpd, php-ldap | php5-ldap, php-fpm | libapache2-mod-php5 | libapache2-mod-php | php5-cli | php-cli, smarty | smarty3, php-net-ldap2, php-net-ftp, php-mail, php-mail-mime, php-file-csv-datasource
Recommends: php-mbstring, php-phpseclib Recommends: php-mbstring, php-phpseclib
Description: web based interface for managing LDAP servers content Description: web based interface for managing LDAP servers content
LdapSaisie is a Web application developed to manage LDAP directory. LdapSaisie is a Web application developed to manage LDAP directory.

View file

@ -14,6 +14,9 @@
// Pear :: Mail // Pear :: Mail
define('PEAR_MAIL','/usr/share/php/Mail.php'); define('PEAR_MAIL','/usr/share/php/Mail.php');
// Pear :: Mail_mime
define('PEAR_MAIL_MIME','/usr/share/php/Mail/mime.php');
/* /*
* Méthode d'envoie : * Méthode d'envoie :
* - mail : envoie avec la méthode PHP mail() * - mail : envoie avec la méthode PHP mail()
@ -61,9 +64,6 @@ $MAIL_SEND_PARAMS = NULL;
* Headers : * Headers :
*/ */
$MAIL_HEARDERS = array( $MAIL_HEARDERS = array(
"Content-Type" => "text/plain",
"charset" => "UTF-8",
"format" => "flowed"
); );
</programlisting> </programlisting>
@ -76,6 +76,9 @@ $MAIL_HEARDERS = array(
<paramdef>string <parameter>$subject</parameter></paramdef> <paramdef>string <parameter>$subject</parameter></paramdef>
<paramdef>string <parameter>$msg</parameter></paramdef> <paramdef>string <parameter>$msg</parameter></paramdef>
<paramdef>array <parameter>$headers</parameter></paramdef> <paramdef>array <parameter>$headers</parameter></paramdef>
<paramdef>array <parameter>$attachments</parameter></paramdef>
<paramdef>string <parameter>$eol</parameter></paramdef>
<paramdef>string <parameter>$encoding</parameter></paramdef>
</funcprototype> </funcprototype>
</funcsynopsis> </funcsynopsis>
</para> </para>

View file

@ -29,6 +29,9 @@
// Pear :: Mail // Pear :: Mail
define('PEAR_MAIL','/usr/share/php/Mail.php'); define('PEAR_MAIL','/usr/share/php/Mail.php');
// Pear :: Mail_mime
define('PEAR_MAIL_MIME','/usr/share/php/Mail/mime.php');
/* /*
* Méthode d'envoie : * Méthode d'envoie :
* - mail : envoie avec la méthode PHP mail() * - mail : envoie avec la méthode PHP mail()
@ -76,8 +79,5 @@ $MAIL_SEND_PARAMS = NULL;
* Headers : * Headers :
*/ */
$MAIL_HEARDERS = array( $MAIL_HEARDERS = array(
"Content-Type" => "text/plain",
"charset" => "UTF-8",
"format" => "flowed"
); );

View file

@ -26,6 +26,9 @@
LSerror :: defineError('MAIL_SUPPORT_01', LSerror :: defineError('MAIL_SUPPORT_01',
_("MAIL Support : Pear::MAIL is missing.") _("MAIL Support : Pear::MAIL is missing.")
); );
LSerror :: defineError('MAIL_SUPPORT_02',
_("MAIL Support : Pear::MAIL_MIME is missing.")
);
// Autres erreurs // Autres erreurs
LSerror :: defineError('MAIL_00', LSerror :: defineError('MAIL_00',
@ -54,6 +57,13 @@ LSerror :: defineError('MAIL_01',
} }
} }
if (!class_exists('Mail_mime')) {
if(!LSsession::includeFile(PEAR_MAIL_MIME, true)) {
LSerror :: addErrorCode('MAIL_SUPPORT_02');
$retval=false;
}
}
return $retval; return $retval;
} }
@ -64,19 +74,25 @@ LSerror :: defineError('MAIL_01',
* *
* @retval boolean true si MAIL est pleinement supporté, false sinon * @retval boolean true si MAIL est pleinement supporté, false sinon
*/ */
function sendMail($to,$subject,$msg,$headers=array()) { function sendMail($to, $subject, $msg, $headers=array(), $attachments=array(), $eol="\n", $encoding="utf8") {
global $MAIL_SEND_PARAMS, $MAIL_HEARDERS; global $MAIL_SEND_PARAMS, $MAIL_HEARDERS;
$mail_obj = Mail::factory(MAIL_SEND_METHOD, (isset($MAIL_SEND_PARAMS)?$MAIL_SEND_PARAMS:null)); $mail_obj = Mail::factory(MAIL_SEND_METHOD, (isset($MAIL_SEND_PARAMS)?$MAIL_SEND_PARAMS:null));
if (isset($MAIL_HEARDERS) && is_array($MAIL_HEARDERS)) { if (isset($MAIL_HEARDERS) && is_array($MAIL_HEARDERS)) {
$headers = array_merge($headers,$MAIL_HEARDERS); $headers = array_merge($headers,$MAIL_HEARDERS);
} }
if ($subject) {
$headers["Subject"] = $subject; if (isset($headers['From'])) {
$from = $headers['From'];
unset($headers['From']);
} }
if (!isset($headers['From']) && (LSsession :: getEmailSender() != "")) { elseif (LSsession :: getEmailSender() != "") {
$headers['From'] = LSsession :: getEmailSender(); $from = LSsession :: getEmailSender();
} }
else {
$from = null;
}
$headers["To"] = $to; $headers["To"] = $to;
$to = array ( $to = array (
@ -92,7 +108,33 @@ LSerror :: defineError('MAIL_01',
} }
} }
$ret = $mail_obj -> send($to,$headers,$msg); $mime = new Mail_mime(
array(
'eol' => $eol,
'text_charset' => $encoding,
'head_charset' => $encoding,
)
);
if ($from)
$mime->setFrom($from);
if ($subject)
$mime->setSubject($subject);
$mime->setTXTBody($msg);
if (is_array($attachments) && !empty($attachments)) {
$finfo = new finfo(FILEINFO_MIME_TYPE);
foreach ($attachments as $file => $filename) {
$mime->addAttachment($file, $finfo->file($file), $filename);
}
}
$body = $mime->get();
$headers = $mime->headers($headers);
$ret = $mail_obj -> send($to, $headers, $body);
if ($ret instanceof PEAR_Error) { if ($ret instanceof PEAR_Error) {
LSerror :: addErrorCode('MAIL_01'); LSerror :: addErrorCode('MAIL_01');
@ -101,4 +143,3 @@ LSerror :: defineError('MAIL_01',
} }
return true; return true;
} }