Ultimate Fake Mailer With Attachment Support!!

Sorry for the noob question, but what is this software about and what it does?
 
Sorry for the noob question, but what is this software about and what it does?

Thats pretty easy to understand.....it's just a Fake E-mailer!...to send Prank/Fake mails.
 
I can easily think of a million illegal ways to use this but also a billion of ways to use this puppy legally but blackhat and make some money.
 
i have a desktop tool like this. very easy to code such things too.
 
2009-03-13_1531.png


heres the windows program I have always used for this. its totally old school but it works and supports attachments: http://ftp.lucky.net/pub/windows/netutils/cdrom.com/gm51.zip

Almost every virus scanner will flag that as infected. however, this is one of those things that gets flagged as "spam tool" and shit like that. Theres no trojan or anything. I have analyzed it's network traffic and all it does is send your mails.
 
Last edited:
cool thanks arthas

here is a simple script without the attachment support though

index.php

Code:
<html>
<head><title> Enter your information</title></head>
<body>
<h2>Please use this form to send an email to your friends</h2>
<b><a href="http://">Home</a>
<form method="post" action="sendmail.php">
<fieldset><legend>Sender Options</legend>
<p><label>From:</label>
<input type="text" name ="from" size="50"/></p>
<p>To:
<input type="text" name = "to" size="50" /></p>
<p>Cc:
<input type="text" name="cc" size="50"/></p>
<p>Subject:
<input type="text" name="subject" size ="70"/></p>

<textarea name="message" cols="60" rows = "15"/>Enter Your Message Here:</textarea></p>
<input type="submit" name="submit" value ="send"/><input type="reset" value="cancel"/></p>
</form>
</body>
</html>


sendmail.php

Code:
<?php

	$to = $_POST['to'];
	$from = $_POST['from'];
	$subject = $_POST['subject'];
	$message = $_POST['message'];

	$headers= "From: ".$from ."\r\n";

	$mailsent = mail($to, $subject, $message, $headers);
	if($mailsent){
		echo "the following message has been sent<p>";
		echo "<b>To: ".$to."</b><br>";
		echo "<b>From: ".$from."</b><br>";
		echo "<b>Subject: ".$subject."</b><br>";

	}
	else {
		echo "There was a problem sending this email";
	}
?>
 
lol if his intention was to post that link here to get more sales to that page this was the wrong place to attempt it haha
 
lol if his intention was to post that link here to get more sales to that page this was the wrong place to attempt it haha

Intention to sell! NOO...My intention was to SHARE. I was selling it at DP and had made that page so I just gave the same url here.

FYI: I am already selling 3 things in the BST section here. Currently my "Ultimate Wordpress Comment Spammer" thread is the MOST popular BST thread!
 
Back
Top