Advertisement
Guest User

slackk

a guest
Aug 29th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.48 KB | None | 0 0
  1.  
  2. <?
  3. // Slackercode Priv8 Mailer v.1.0
  4. // randomized sender email with input (random) ex. (random)@yourdomain.com
  5. // http://slackerc0de.us
  6.  
  7. set_time_limit(intval($_POST['timelimit']));
  8. if (!function_exists('quoted_printable_encode')) {
  9. function quoted_printable_encode($input, $line_max = 75)
  10. {
  11. $hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
  12. $lines = preg_split("/(?:\r\n|\r|\n)/", $input);
  13. $linebreak = "=0D=0A=\r\n";
  14. $line_max = $line_max - strlen($linebreak);
  15. $escape = "=";
  16. $output = "";
  17. $cur_conv_line = "";
  18. $length = 0;
  19. $whitespace_pos = 0;
  20. $addtl_chars = 0;
  21. for ($j = 0; $j < count($lines); $j++) {
  22. $line = $lines[$j];
  23. $linlen = strlen($line);
  24. for ($i = 0; $i < $linlen; $i++) {
  25. $c = substr($line, $i, 1);
  26. $dec = ord($c);
  27.  
  28. $length++;
  29.  
  30. if ($dec == 32) {
  31. if (($i == ($linlen - 1))) {
  32. $c = "=20";
  33. $length += 2;
  34. }
  35.  
  36. $addtl_chars = 0;
  37. $whitespace_pos = $i;
  38. } elseif (($dec == 61) || ($dec < 32) || ($dec > 126)) {
  39. $h2 = floor($dec / 16);
  40. $h1 = floor($dec % 16);
  41. $c = $escape . $hex["$h2"] . $hex["$h1"];
  42. $length += 2;
  43. $addtl_chars += 2;
  44. }
  45. if ($length >= $line_max) {
  46. $cur_conv_line .= $c;
  47. $whitesp_diff = $i - $whitespace_pos + $addtl_chars;
  48. if (($i + $addtl_chars) > $whitesp_diff) {
  49. $output .= substr($cur_conv_line, 0, (strlen($cur_conv_line) - $whitesp_diff)) . $linebreak;
  50. $i = $i - $whitesp_diff + $addtl_chars;
  51. } else {
  52. $output .= $cur_conv_line . $linebreak;
  53. }
  54. $cur_conv_line = "";
  55. $length = 0;
  56. $whitespace_pos = 0;
  57. } else {
  58. $cur_conv_line .= $c;
  59. }
  60. }
  61. $length = 0;
  62. $whitespace_pos = 0;
  63. $output .= $cur_conv_line;
  64. $cur_conv_line = "";
  65. if ($j <= count($lines) - 1) {
  66. $output .= $linebreak;
  67. }
  68. }
  69. return trim($output);
  70. }
  71. }
  72.  
  73. $action=$_POST['action'];
  74. $from=$_POST['from'];
  75. $subject=$_POST['subject'];
  76. $realname=$_POST['realname'];
  77. $replyto=$_POST['replyto'];
  78. $message=$_POST['message'];
  79. $emaillist=$_POST['emaillist'];
  80. $file_name=$_FILES['file']['name'];
  81. $contenttype=$_POST['contenttype'];
  82. $file=$_FILES['file']['tmp_name'];
  83. $amount=$_POST['amount'];
  84. $encode_text=$_POST['encode'];
  85.  
  86. $message = urlencode($message);
  87. $message = ereg_replace("%5C%22", "%22", $message);
  88. $message = urldecode($message);
  89. $message = stripslashes($message);
  90. $subject = stripslashes($subject);
  91. if ($encode_text == "yes") {
  92. $subject = preg_replace('/([^a-z ])/ie', 'sprintf("=%02x",ord(StripSlashes("\\1")))', $subject);
  93. $subject = str_replace(' ', '_', $subject);
  94. $subject = "=?UTF-8?Q?$subject?=";
  95. $realname = preg_replace('/([^a-z ])/ie', 'sprintf("=%02x",ord(StripSlashes("\\1")))', $realname);
  96. $realname = str_replace(' ', '_', $realname);
  97. $realname = "=?UTF-8?Q?$realname?=";
  98. }
  99. ?>
  100.  
  101. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  102. <html xmlns="http://www.w3.org/1999/xhtml">
  103.  
  104. <head>
  105. <title>Slackercode PHP-Mailer V.1.0</title>
  106. <link rel="SHORTCUT ICON" href="http://s25.postimg.org/4bzq9e2jv/slackercodeico.png"/>
  107. <meta name="robots" content="noindex,nofollow" />
  108. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  109. <link rel="stylesheet" href="http://slackerc0de.us/css/ppchk.css">
  110. <script type="text/javascript"> var SPklikkanan = 'TILANG';</script> <script type="text/javascript" src="http://slackerc0de.us/js/block.js"></script>
  111. </head>
  112.  
  113.  
  114. <header>
  115. <img src="http://s25.postimg.org/gdpjtjzzj/logo_sc_tool.png"/>
  116. <h3><font color="#01DF01">Priv8 PHP Email Sender V.1.0</font></h3>
  117. <p><font color="#74DF00">Sending randomized sender for bypass <font color="#0174DF"><blink><b>Spamming</b></blink></font> emails accounts</font></p>
  118. <p>contact mail : <font color="red">alecs<font color="#04B404">[at]</font>indonesian<font color="#F8E6E0">coder</font><font color="#04B404">[dot]</font>com</font></p><hr /><hr /><br>
  119. </header>
  120.  
  121. <body>
  122. <div id="fb-root"></div>
  123. <script type="text/javascript" src="http://slackerc0de.us/js/fbconnect.js"></script>
  124. <br >
  125. <p>If ( <span style="color:#FF0000;">random </span>)&nbsp; its not working for ( <span style="color:#FF0000;">Random Email Sender</span> ), Replace with a real Email ex : random@yourdomain.com</p>
  126. <p>Visit <a href="http://cardingschool.or.id" rel="dofollow" ><span style="color:#FF0000;">cardingschool.or.id</span></a> for latest Tutorial, Spamz, Credit-Card, Cashout, etc.<br />
  127. <br >
  128. Visit <a href="http://slackerc0de.us" rel="dofollow"><span style="color:#FF0000;">Slackercode Family </span></a>for more priv8 tools.</p>
  129. <br >
  130. <form name="form1" method="post" action="" enctype="multipart/form-data">
  131. <table width="842" border="0">
  132. <tr>
  133.  
  134. <td width="95">
  135. <div align="right">
  136. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your Email:</font>
  137. </div>
  138. </td>
  139.  
  140. <td width="220">
  141. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  142. <input type="text" name="from" placeholder="input your email sender" value="<?php print $from; ?>" size="30" />
  143. </font>
  144. </td>
  145.  
  146. <td width="238">
  147. <div align="right">
  148. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your Name:</font>
  149. </div>
  150. </td>
  151.  
  152. <td width="271">
  153. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  154. <input type="text" name="realname" placeholder="input your name sender" value="<?php $realname; ?>" size="30" />
  155. </font>
  156. </td>
  157. </tr>
  158. <tr>
  159. <td width="95">
  160. <div align="right">
  161. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Reply-To:</font>
  162. </div>
  163. </td>
  164. <td width="220">
  165. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  166. <input type="text" name="replyto" value="<?php print $replyto; ?>" size="30" />
  167. </font>
  168. </td>
  169. <td width="238">
  170. <div align="right">
  171. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Attach File:</font>
  172. </div>
  173. </td>
  174. <td width="271">
  175. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  176. <input type="file" name="file" size="24" />
  177. </font>
  178. </td>
  179. </tr>
  180. <tr>
  181. <td width="95">
  182. <div align="right">
  183. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Subject:</font>
  184. </div>
  185. </td>
  186. <td colspan="3">
  187. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  188. <input type="text" name="subject" value="<?php $subject; ?>" size="90" />
  189. </font>
  190. </td>
  191. </tr>
  192. <td colspan="3" height="22" style="padding:10px;"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  193.  
  194. &nbsp; <font color="#FF0000">Encode sending information ?</font> <select style="background:#EFFBF8;;border: 1px solid #01A9DB;color:#333" size="1" name="encode">
  195. <option <?php if($encode_text == "yes"){print "selected";} ?>>yes</option>
  196. <option <?php if($encode_text == "no"){print "selected";} ?>>no</option>
  197. </select></font></td>
  198. <tr valign="top">
  199. <td colspan="3">
  200. <font face="Verdana, Arial, Helvetica, sans-serif" size="-3">Message Box :</font>
  201. </td>
  202. <td width="271">
  203. <font face="Verdana, Arial, Helvetica, sans-serif" size="-3">Email List :</font>
  204. </td>
  205. </tr>
  206. <tr valign="top">
  207. <td colspan="3">
  208. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  209. <textarea name="message" cols="56" rows="10"><?php print $message; ?></textarea><br /> <br />
  210. <input type="radio" name="contenttype" value="plain" /> Plain
  211. <input type="radio" name="contenttype" value="html"checked="checked" /> HTML
  212. <input type="hidden" name="action" value="send" /><br />
  213. Number to send: <input type="text" name="amount" value="1" size="10" /><br />
  214. Maximum script execution time (in seconds, 0 for no timelimit) <input type="text" name="timelimit" value="0" size="10" /><br /> <br />
  215. <input type="submit" value="Send Email" />
  216. </font>
  217. <p><div class="fb-like" data-href="https://www.facebook.com/slackerc0de.us" data-layout="button_count" data-action="like" data-show-faces="true" data-share="true"></div></p>
  218. </td>
  219. <td width="271">
  220. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  221. <textarea name="emaillist" cols="32" rows="10"><?php print $emaillist; ?></textarea>
  222. </font>
  223. </td>
  224. </tr>
  225. </table>
  226. </form><hr/>
  227. <center>
  228. <table style="width: 1024px;">
  229. <tr>
  230. <td style="width: 1024px;">
  231. <div style="overflow:auto; width:1024px; height: 470px; font-size: 11px; color:lime" >
  232. <?php
  233. if ($action == "send") {
  234. if (!$from && !$subject && !$message && !$emaillist) {
  235. echo "<script>alert('Please complete all the fields.'); </script>";
  236. exit;
  237. }
  238.  
  239. $allemails = split("\n", $emaillist);
  240. $numemails = count($allemails);
  241.  
  242. if ($file_name) {
  243. if (!file_exists($file)) {
  244. die("The file you are trying to upload could not be uploaded to the server");
  245. }
  246. $content = fread(fopen($file, "r"), filesize($file));
  247. $content = chunk_split(base64_encode($content));
  248. $uid = strtoupper(md5(uniqid(time())));
  249. $name = basename($file);
  250. }
  251.  
  252. for ($xx = 0; $xx < $amount; $xx++) {
  253. for ($x = 0; $x < $numemails; $x++) {
  254. $to = $allemails[$x];
  255. if ($to) {
  256. $to = ereg_replace(" ", "", $to);
  257. $nrmail = $x + 1;
  258. $domain = substr($from, strpos($from, "@"), strlen($from));
  259. print "Sending $nrmail Email of $numemails to <font color=\"magenta\">$to</font> ==>";
  260. flush();
  261. $randfrom = rand();
  262. $fromrand = str_replace("random", $randfrom, $from);
  263. $header = "From: $realname <$fromrand>\r\nReply-To: $replyto\r\n";
  264. $header .= "Message-ID: <31337$numemails.$nrmail$domain>\r\n";
  265. $header .= "MIME-Version: 1.0\r\n";
  266. if ($file_name)
  267. $header .= "Content-Type: multipart/mixed; boundary=$uid\r\n";
  268. if ($file_name)
  269. $header .= "--$uid\r\n";
  270. $header .= "Content-Type: text/$contenttype; charset=UTF-8\r\n";
  271. $header .= "Content-Transfer-Encoding: quoted-printable\r\n\r\n";
  272. $header .= quoted_printable_encode($message)."\r\n";
  273. if ($file_name)
  274. $header .= "--$uid\r\n";
  275. if ($file_name)
  276. $header .= "Content-Type: $file_type; name=\"$file_name\"\r\n";
  277. if ($file_name)
  278. $header .= "Content-Transfer-Encoding: base64\r\n";
  279. if ($file_name)
  280. $header .= "$content\r\n";
  281. if ($file_name)
  282. $header .= "--$uid--";
  283. mail($to, $subject, "", $header);
  284. print "<font color=\"yellow\"> <i>Success!</i></font><br>";
  285. flush();
  286. }
  287. }
  288. }
  289.  
  290. }
  291. ?>
  292. </div>
  293. </td>
  294. </tr>
  295. </center>
  296. <p class="style2">&nbsp;</p>
  297. <p class="style1">&nbsp;</p>
  298. <?php
  299. if(isset($_POST['action']) && $numemails !==0 ){
  300. echo "<script>alert('Mail sending complete\\r\\n$numemails mail(s) was sent successfully'); </script>";
  301. }
  302. ?>
  303. </body>
  304. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement