![]() |
|
How to create an Email Spoofer - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Hacking (https://sinister.li/Forum-Hacking) +--- Forum: Tutorials (https://sinister.li/Forum-Tutorials) +--- Thread: How to create an Email Spoofer (/Thread-How-to-create-an-Email-Spoofer) Pages:
1
2
|
How to create an Email Spoofer - RaccoonCity_mybb_import13707 - 07-01-2014 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 RE: How to create an Email Spoofer - Hustler - 07-01-2014 This is a really good tut man, thanks alot for sharing!!! RE: How to create an Email Spoofer - RaccoonCity_mybb_import13707 - 07-01-2014 (07-01-2014, 05:32 PM)Hustler Wrote: This is a really good tut man, thanks alot for sharing!!! No problemo! :3 RE: How to create an Email Spoofer - Isaac - 07-01-2014 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! RE: How to create an Email Spoofer - BlueCat - 07-01-2014 This is a great way, or you can just use https://www.guerrillamail.com/ That way, Your always anonymous :epic: RE: How to create an Email Spoofer - Alexius - 07-05-2014 very nice RE: How to create an Email Spoofer - Shallex - 07-05-2014 Nice Tuto But Spoofing Is not A Sollution For manny Probs But thanks anyway Great Share
RE: How to create an Email Spoofer - MoE Tain - 07-05-2014 That's nice man .... I really appreciate it
RE: How to create an Email Spoofer - Shallex - 07-05-2014 Thanks For the Tutorial !! really great share ! But it didnt Work For me RE: How to create an Email Spoofer - ralf93 - 07-06-2014 (07-05-2014, 09:19 PM)Shallex Wrote: Thanks For the Tutorial !! really great share ! But it didnt Work For medid u modify the php script? could u please elaborate how it didnt work for you? p.s great post
|