Total Tayangan Halaman

Selasa, 20 November 2012

Script Fake Email Sender


Disini saya akan membagi kan source code Fake Mail Sender ( Fake Email Sender | Pengirim Email Palsu ) untuk anda yang suka menjahili temannya lewat email, berupa posting di grup facebook tanpa login, atau yang lainnya.
Fake Email Sender - Pengirim Email Palsu
Langsung aja untuk file PHP yang pertama
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
session_start();
if ($_POST['Submit'] == 'Send')
{
if (strcmp(md5($_POST['user_code']),$_SESSION['ckey']))
{
header("Location: sendmail.php?msg=ERROR: Invalid Verification Code");
exit();
}
$to = $_POST['toemail'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$fromemail = $_POST['fromemail'];
$fromname = $_POST['fromname'];
$lt= '<';
$gt= '>';
$sp= ' ';
$from= 'From:';
$headers = $from.$fromname.$sp.$lt.$fromemail.$gt;
mail($to,$subject,$message,$headers);
header("Location: sendmail.php?msg= Mail Sent!");
exit();
}
?>
<html>
<head>
<title>Email Pranks</title>
<style type="text/css">
<!--
.style1 {color: #00FF00}
-->
</style>
</head>
<body bgcolor="#000000">
<h2 align="center"><blink>
<span >Fake Email by <a href="http://art-of-hacks.cyber4rt.com">Art Of Hacks</a> </span></blink><br/>
<iframe title="" style="width: 300px; height: 20px;" class="twitter-follow-button" src="http://platform.twitter.com/widgets/follow_button.html#_=1319978796351&amp;
align=&amp;button=blue&amp;id=twitter_tweet_button_0&amp;
lang=en&amp;link_color=&amp;screen_name=novalbintangs&amp;show_count=&amp;
show_screen_name=&amp;text_color=" frameborder="0" scrolling="no"></iframe>
</h2>
<h3 align="center">
Please do not misuse this script. Use it only for having FUN.</h3>
<br>
<center>
<p style="margin-left:15px">
<form action="sendmail.php" method="POST">
<p><b>From Name:</b><br>
<input type="text" name="fromname" size="74">
<br>
<br>
<b>From Email:</b><br>
<input type="text" name="fromemail" size="74">
<br>
<br>
<b>To Email:</b><br>
<input type="text" name="toemail" size="74">
<br>
<span><br>
<b>Subject:</b></span><br>
<input type="text" name="subject" size="74">
<br>
<span><br>
<b>Your Message:</b></span><br>
<textarea name="message" rows="5" cols="74">
</textarea>
<br>
<span><br>
<b>Verification Code:</b></span><br>
<input name="user_code" type="text" size="25">
<img src="pngimg.php" align="middle"><br>
<br>
<input type="submit" name="Submit" value="Send">
<input type="reset" value="Reset">
</p>
<marquee>
<p>We Are Anonymous | We Are Legion | We Are Art Of Hacks! </p></marquee>
</form>
</p>
</center>
<?php if (isset($_GET['msg'])) { echo "<font color=\"red\"><h3 align=\"center\"> $_GET[msg] </h3></font>"; } ?>
<h3 align="center">
Hey Jangan Gunakan Untuk Spam yaa :)
</h3>
</body>
</html>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Simpan Script di atas dengan nama sendmail.php

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
session_start();
header ("Content-type: image/png");
$rno = rand(1000,99999);
$_SESSION['ckey'] = md5($rno);
$img_handle = imageCreateFromPNG("bg1.PNG");
$color = ImageColorAllocate ($img_handle, 0, 0, 0);
ImageString ($img_handle, 5, 20, 13, $rno, $color);
ImagePng ($img_handle);
ImageDestroy ($img_handle);
?>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Simpan Script di atas dengan nama pngimg.php
Lalu, simpan gambar di bawah ini dengan nama bg1.PNG


Upload ketiga file tersebut ke situs anda (public_html)
Dan selamat mencoba di situs-anda.com/sendmail.php

Atau Bisa Download Disini

Kalau ada kesalahan, komentar yaaa :)

Tidak ada komentar:

Posting Komentar