[Release] Advanced PHP Fake Mailer [GUI]
well, I just whipped this up in my spare timee.
I'm learning still, so don't hate, appreciate.
simply, upload to any site that supports PHP & MySQL
Code:
<?php
//usage: simply copy and paste to a new file and name it mailer.php, upload it to a server with SMTP. Navigate to the location of the file to use the GUI. The code does not need to be edited to use.
//written by GoWRTeKz aka zzGoWR
if (isset($_POST["submit"])) {
$list=$_POST["list"];
$email=$_POST["email"];
$subject=$_POST["subject"];
$body=$_POST["body"];
$header="From: ".$email;
$msg="";
$t_email=explode(", ",$list);
for($i=0;$i<(count($t_email));$i=$i+1) {
if (mail($t_email[$i],$subject,$body,$header)) {
$msg.="Message successfully sent to ".$t_email[$i]."<br />";
} else {
$msg.="Message failed to be sent to ".$t_email[$i]."<br />";
}
}
echo $msg;
}
?>
<html>
<body>
<form method="post">
<textarea name="list" rows="10" cols="40">Enter list of emails, seperated by a comma and a space (e.g. 1@gmail.com, 2@gmail.com)</textarea><br />
<input name="subject" value="Enter subject" size="53"/><br />
<textarea name="body" rows="10" cols="40">Enter email content</textarea><br />
<input name="email" value="Enter email to be spoofed" size="53"/><br />
<button name="submit" type="submit" style="width: 345px;"><span>Send</span></button>
</form>
</body>
</html>
it's a mix of HTML and PHP.
Example.
http://rookery9.aviary.com.s3.amazon...fa_625x625.jpg
Proof