IMPORTANT- FIRST READ THE DISCLAIMER
Most of the people think that whenever they recieve an email it must be a email from the sender…they don’t usually prefer to crosscheck the mail sender or whether its a genuine mail or not. And this becomes a plus point for the spammers
and hackers to hack any one’s password.
These days, I have seen many people complaining on different forums about spams they receive through different reputed sites asking them to either update their password by logging with their link or even sometimes ask them to reveal their password for some security reasons. If you too are a victim of such spams then you must be aware of the prevailing ways these spams are sent.
Most of these spammers use one the best (infact easiest) way for sending anonymous emails to any person which requires basically no much technical knowledge but a simple PHP code which functions as a fake mail sender through which we can send any email to any person either anonymously or by using any email ID (like your friend’s).
Here I have given a full step by step tutorial of how you can also make your own website capable of sending anonymous mail.
Step1: Using HTML for making webpage.
Open note pad and paste the following HTML code and save the file with name index.html.
This HTML code will generate the visible part of your webpage.
<html>
<h1>Cyber World Hacks Anonymous Email Mail Sender (For Educational Purpose Only)</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>
</html>
Step2: Making the PHP file.
The PHP code which does all the work is as follows. Copy and paste this script in a notepad and save it as fakemail.php
<?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 );
?>
Step3:Uploading these file on a webhosting site
If you already have an account on any webhosting site then directly upload these two files inthe file-manager and begin the fun!!!
For those who don’t an account yet I would recommend to chose any free webhosting site for the purpose. One of my favourites is www.phpzilla.net. Just signup there and upload all the two file in the file-manager.
Most of the people think that whenever they recieve an email it must be a email from the sender…they don’t usually prefer to crosscheck the mail sender or whether its a genuine mail or not. And this becomes a plus point for the spammers
and hackers to hack any one’s password.
These days, I have seen many people complaining on different forums about spams they receive through different reputed sites asking them to either update their password by logging with their link or even sometimes ask them to reveal their password for some security reasons. If you too are a victim of such spams then you must be aware of the prevailing ways these spams are sent.
Most of these spammers use one the best (infact easiest) way for sending anonymous emails to any person which requires basically no much technical knowledge but a simple PHP code which functions as a fake mail sender through which we can send any email to any person either anonymously or by using any email ID (like your friend’s).
Here I have given a full step by step tutorial of how you can also make your own website capable of sending anonymous mail.
Step1: Using HTML for making webpage.
Open note pad and paste the following HTML code and save the file with name index.html.
This HTML code will generate the visible part of your webpage.
<html>
<h1>Cyber World Hacks Anonymous Email Mail Sender (For Educational Purpose Only)</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>
</html>
Step2: Making the PHP file.
The PHP code which does all the work is as follows. Copy and paste this script in a notepad and save it as fakemail.php
<?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 );
?>
Step3:Uploading these file on a webhosting site
If you already have an account on any webhosting site then directly upload these two files inthe file-manager and begin the fun!!!
For those who don’t an account yet I would recommend to chose any free webhosting site for the purpose. One of my favourites is www.phpzilla.net. Just signup there and upload all the two file in the file-manager.
0 comments:
Post a Comment