Hello friends.......we have heard many times that people have received fake emails.....n all!!! But now you all can send such fake mails as well.....here's the simple process..........
NOTE: Remember its for educational purpose only so do not misuse it!!!
Alright friends........before starting the tutorial, it will be helpful to you if you have the basic concept about HTML and PHP file.......coz these two files are the most essential parts of our FAKEMAILER.......you can easily learn them from HERE.
1. Firstly create a php file. For that just open notepad, insert the following code and save as "fakemail.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: texNot/html; charset=iso-8859-1' . "\r\n";
//send the email
mail($email, $subject, $content, $headers );
?>
2.Now create a HTML file. Past the code below on your notepad and save it as "index.html"
<body background="123.jpg">
<link rel="stylesheet" href="style.css" />
<h1>Anonymous Email Mail Sender</h1>
<table border=2>
<form action="fakemail.php" 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>
</body>
</html>
3. Well now you have successfully created a HTML and PHP files. You HTML file should be like this-->>>
Alright this is a simple HTML page created by me. But you can add CSS and customize the HTML page by youself and make it more attractive.
Now, you have to find a hosting site so that you can host your site. The hosting site should be PHP supportive. You can use 000webhost.com or any other . Register in the hosting site, upload your files and enjoyyy............!!!
If you want to send fake mails to facebook, then you need to know some important things.
For sending fake mails to you must know the email address of the sender and his/her name. The email must be the username of the sender and instead of email address of receiver i strongly advise you to use the facebook username not the email that we use to log in to facebook account. To get the fb username just open your facebook and check the profile of the receiver. You will see www.facebook.com/****.****.*** insted of stars you will see the firt name, last name and some number. Copy them and paste it on your site in the receiver's place and end with @facebook.com.......****.****.***@facebook.com
And finally send your email. Enjoy!!!!!
[you can use the email instead of the receiver's fb username but it is not that much effective]
Thank you.....................!!!
Innovative Thinking!!!
No comments:
Post a Comment