Welcome Guest, please Login or Create an account
Login to Ethical Hacking Tutorials | Learn Ethical Hacking | Free Hacking Tutorials | Free Hacking Tools | Free Hacking Books | Learn Hacking
Please enter your username and password to log in.
 
Thread Rating:
  • 9 Votes - 2.89 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Send Fake Mail
Offline indian Posted 03-13-2012, 11:22 PM
Post: #1
Junior Member
Posts: 3
Joined: Mar 2012
Reputation: 0
PHP Code:
//Dear User,

//This is the HackersTown's PHP Fake Mail Script.

//Please do not use the Tools and Scripts provided in this disk to harm anyone's resources or steal any confidential //information.

//If you do that Kyrion Digital Securities will not be held responsible for that. 

//This Ethical Hacking and Information Security Toolkit is solely made for the Educational and Awareness Purpose //only.

//Regards,
//HackersTown Team
<html>
<
h1>HackersTown's Anonymous Email Mail Sender (For Educational Purpose Only)</h1>
</html>

<table border=2>
<form action="" method=post>
<tr><td>Recipent: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>


<?php
$email = $_POST['
email'];
$content = nl2br($_POST['
content']);
$name = $_POST['
name'];

$sender = $_POST['
sender'];

$subject = $_POST['
subject'];

$headers = "From: $name "."<".$sender.">\r\n";
//add boundary string and mime type specification
//$headers .= '
MIME-Version1.0' . "\r\n";
//$headers .= '
Content-typetext/htmlcharset=iso-8859-1' . "\r\n";

//send the email
mail($email, $subject, $content, $headers );

?>
Back to top Find Quote


Messages In This Thread
Send Fake Mail - indian - 03-13-2012 11:22 PM

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Bug Php Mail Bommer indian 0 129 03-13-2012 11:10 PM
Last Post: indian
  Send FREE SMS Dabang 0 162 12-22-2011 05:21 AM
Last Post: Dabang

Forum Jump:


User(s) browsing this thread
1 Guest(s)

Forum software by MyBB

Theme by ThemeFreak