Saturday, October 5, 2013

Fake mailer php script

Fake Mailer Script
1.Copy Following Code to Notepad.
2.Then Save it as .php extension.
3.Got to some free webhosting site which support php.
4.Register Your Self.
5.Upload Your File.

Download

<html lang="en-us">
<head>
<meta charset="windows-1252">
<body bgcolor=black><center><font color=white>
<h2> HaCkHiPp0 Anonymous Mail Sender (For Educational Purpose Only) </h2>
</html>

<Title>Fake Mailer</Title>

<form action="<?php $_SERVER['SELF'] ?>" method="post"><br>


To: <input type="text" name="to"><br>
From: <input type="text" name="from"><br>
Subject: <input type="text" name="subject"><br>
Message:
<textarea name="message"></textarea><br>
<input type="submit" name="submit" value="Send"></form>



<?php
if (isset($_POST['submit'])) {
$to=$_POST['to'];
$from=$_POST['from'];
$subject=$_POST['subject'];
$message=$_POST['message'];
$head="From: $from" .  "\r\n".
'Reply-To: '. $from .  "\r\n";
$her=$head.' < '.$from .' >';


$ret=mail($to, $subject, $message, $her);
if($ret==true){
echo "<br /> Mail sent Successfully";
}else{
echo "<br /> Unable to Send mail.";
}
}
?>
<a href="http://hackhipoo.blogspot.com">&copy; HaCkHiPp0-TeaM</a>.<br>
<a href="https://twitter.com/sahilrai85">R0oTx:Sahil_Rai</a><br>
</center>


...................................................................................................................................

Thanks to visit hack hippo
Fake mailer php script
  • Blogger Comments
  • Facebook Comments
Top