How to make your own Email Spoofer/ Anonymous mailer

How to make your own Email Spoofer/ Anonymous mailer
Step 1
Goto any free hosting website and register an account for yourself.
Some free hosting sites are:
Byethost
x10hostings
Justfree
There are many more free hosting websites just search on google. Step 2
Copy this code and paste it in the notepad and save it as anyname.php
Code:
<html>
<head>
<title>Email Spoofer/Anonymous Mailer By Dragon Hawk</title>
</head>
<body bgcolor="#eaeaea">
<font color="#ff00fa" face="Tahoma" size="7"><u>Email Spoofer/Anonymous Mailer By Dragon Hawk</u></font>
<br /><br />
<?php
// Make access to the inputs less annoying
extract($_POST);
// Check inputs
if (isset($to) && isset($from) && isset($subj) && isset($msg) && isset($send))
{
// If a reply-to address hasn't been specified
if (!isset($replyto))
{
// Send mail or display error
mail($to,$subj,$msg,'From: '.$from) or die('Mail could not be sent. <a href="?">Back</a>.');
echo('Mail sent. <a href="?">Back</a>.');
// If a reply-to has been specified
} else {
// Send mail or display error
mail($to,$subj,$msg,'From: '.$from."\r\n".'Reply-To: '.$replyto) or die('Mail could not be sent. <a href="?">Back</a>.');
echo('Mail sent. <a href="?">Back</a>.');
}
} else {
// Fukken write the form
echo('<form action="" method="post">To: <input type="text" name="to" /><br />From: <input type="text" name="from"><br />Reply-To (OPTIONAL): <input type="text" name="replyto" /><br />Subject: <input type="text" name="subj" /><br />Message:<br /><textarea name="msg" rows="5" cols="60"></textarea><br /><input type="submit" name="send" value="Send EMail" />');
}
?>
</body>
</html>
Step 3
Upload this php file to your hosting account.
Step 4
Access this file from your domain for example if you registered on justfree with username abc, then goto abc.justfree.com/anyname.php
Hurray your own email spoofer is ready to use.
Have fun.
Some feedback would be great.

0 comments: