Sunday 19 February 2012

send-fake-mail

03:15 Posted by Unknown No comments
Email Spoofing tutorial | Send Fake Mails 



Email spoofing or email spoof is a method where one sends an email from another email address or even non existing address.
for example it is possible to send email from address that does not exist, such as attacker@dtricker.com or it is possible to send an email from somebody elses email, such as hacker@hotmail.com (which most likely exists).



Email spoofing can be achieved in several ways, most common is to use microsoft telnet, which is built into most windows versions.

PHP / HTML script:
This method is most likely to work for every user and it has been tested by me (Sethioz).
It is a scrip that sends email via webpage which code is available here.
First it is needed to make a .html file and call it anything you like, here is used spoofer.html
Inside spoofer.html is this code:
                                                   Download
Now it is needed to make another file and call it spoofer.php or anything else (in this case spoofer.php in above code has to be changed to same, if not sure, use spoofer.php as in this example)
Inside of spoofer.php is the following code:

" . "\r\n";
 if (mail($to, $subject, $message, $headers))
 {
 echo"Success
Success
\n";
 echo"The e-mail was successfully sent to " . $to . "
\n";
 echo"From: " . $fake . "
\n";
 echo"Subject: " . $subject . "
\n";
 echo"Message:
\n";
 echo"" . $message . "
";
 }
 else
 {
 echo"Error!
Error!
\n";
 echo"The mail() function failed.
";
 }
 ?>
NOTE:This tutorial is for educational purpose only......I won't be responsible for any kind of problem you get......

Enjoy....
Don't forget to like ad comment......:)

0 comments:

Post a Comment

Thanks for giving your valueable response