Ads 468x60px

Sunday 11 November 2012

Create a Fake Mail Sender

Want to create you own fake email sender to fool your friends. Suppose your friend is a student of B.tech, Computer Science Engineering then if you send him a mail about his selection to microsoft from the address billgates@microsoft.com. You can use this sender in many other manners as well just put your mind in a creative thought. Follow these steps to create your own.

First of all you need a webhosting service. There are a lots of paid and free services available in internet google it and search the best for you. The only demerit in searching for free hosting service is they don't give you full functions and for this script you need a web server that supports PHP scripting. According to my own opinion I would like to recommend you 5gbfree webhosting service. This is free and fully functioning hosting service, and best in my knowledge so far.

Step 1: Open notepad and copy the following code. Paste the code in blank notepad document and save it with the name mailing.php. You can choose any name but the extension must b .php

<html>
<h1>Absolute Stuff's Anonymous Email Mail Sender (For Educational Purpose Only)</h1>
</html>

<table border=2>
<form action="" method=post>
<tr><td>Recipent: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>


<?php
$email = $_POST['email'];
$content = nl2br($_POST['content']);
$name = $_POST['name'];

$sender = $_POST['sender'];

$subject = $_POST['subject'];

$headers = "From: $name "."<".$sender.">\r\n";
//add boundary string and mime type specification
//$headers .= 'MIME-Version: 1.0' . "\r\n";
//$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

//send the email
mail($email, $subject, $content, $headers );

?>


Step 2: Go to 5gbfree and create a free account and sign in.

Step 3: You'll see the control panel. On file menu click on file manager and click on go.

Step 4: On the right hand side, from the menus select public_html and then from the top menu select upload. 

Step 5: Now the final step,  upload the file which you have created in step 1 and you're done. 

After uploading reload your filemanager's page and check that the file is uploaded or not. Now if the file is in the directory you're fake male sender is ready to use. 

Now remember your user name which you have given in this webhosting site. My username was belu so I have to write in my browser's address bar
www.belu.5gbfree.com/mailing.php

www.<your username>.5gbfree.com/<file name>.php

After typing this address on your URL bar press enter, your fake mail sender will open. 
In Recipent you have to type the victim's email address that should be correct. Sender and email address can be anything. If you want to make pranks write the subject and content according to the prank and click Send Mail. 
Share if you liked this Post using your favorite sharing service:

Subscribe Updates, Its FREE!

0 comments:

Post a Comment

 
Related Posts Plugin for WordPress, Blogger...