How to create an Email Spoofer 07-01-2014, 05:26 PM
#1
Email spoofing huh? Yes.
Email spoofing is great for sending anonymous emails and is pretty awesome use.
You can e.g send an email to all your friends from your teachers mail and say that class is closed.
Today I'm going to tell you how to create your own email spoofer!
For this you'll have to need.
1. A webhost.
2. Simple PHP and HTML knowledge.
Alright, first we're going to create the PHP script.
This is the PHP script:
Now, let's create the HTML form.
Here's the code. (You can obviously change it to fit your website or make it look better, this is just for the sake of the tutorial.)
NOTE: For this tutorial I named the PHP file "spoof.php", but you can change that to whatever you like.
But remember to change it in the HTML code later!
When you have the two files, upload them to your favorite webhost.
I suggest using 3owl, it's amazing.
Upload the two files and go to your website.
Enter the info and click "Send Mail".
Now, if you've done everything correct the email you entered should recieve an email with the info you entered! :3
Email spoofing is great for sending anonymous emails and is pretty awesome use.
You can e.g send an email to all your friends from your teachers mail and say that class is closed.
Today I'm going to tell you how to create your own email spoofer!
For this you'll have to need.
1. A webhost.
2. Simple PHP and HTML knowledge.
Alright, first we're going to create the PHP script.
This is the PHP script:
Code:
<?php
$to_email = $_REQUEST['email'];
$name = $_REQUEST['name'];
$sender_email = $_REQUEST['sender']
$subject = $_REQUEST['subject'];
$contect = $_REQUEST['content'];
$header = "From: $name","<$sender_email>\r\n";
mail($to_email,$subject,$content,$header);
echo 'Sent Successfully!';
?>Now, let's create the HTML form.
Here's the code. (You can obviously change it to fit your website or make it look better, this is just for the sake of the tutorial.)
Code:
<html>
<head><title>Email Spoofer</title></head>
<body>
<form action="spoof.php" method=post>
To Email: </td><td><input type=text name=email size=30> <br/>
Sender Name: </td><td><input type=text name=name size=30> <br/>
Sender Email: </td><td><input type=text name=sender size=30> <br/>
Subject: </td><td><input type=text name=subject size=30> <br/>
Content: </td><td><input type=text name=content size=30> <br/>
<input type=submit value="Send Mail">
</form>
</body>
</html>NOTE: For this tutorial I named the PHP file "spoof.php", but you can change that to whatever you like.
But remember to change it in the HTML code later!
When you have the two files, upload them to your favorite webhost.
I suggest using 3owl, it's amazing.
Upload the two files and go to your website.
Enter the info and click "Send Mail".
Now, if you've done everything correct the email you entered should recieve an email with the info you entered! :3


![[+]](https://sinister.li/images/modern/collapse_collapsed.png)


![[Image: 5R6Js8r.gif]](http://i.imgur.com/5R6Js8r.gif)
