Lavalair Scripting Tools!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #31
    who can help me to put an trivia on my site script ? that will be nice pls help

    Comment


      #32
      i saw ppl talking about anonymouse here..... can it be banned????

      i thnk not, cuz if u ip ban sum1 who using anonymouse, he/she can register another account at ur site!!!!

      its sux!!!
      sigpiceeeeerrr....

      Comment


        #33
        go to anonymouse urself and browse ur site then make nick then ban with ur admin cp i think anoymouse hv same ip for all
        left wap stuff

        Comment


          #34
          Code:
          $browser = explode ('/', $HTTP_USER_AGENT);
          if($browser[0]=="http:")
          { header ('Location: [url]http://Anonymouse.org/'[/url]); }

          Place this where you like ok on top header if ya searched the forums you mite found this before asking.....
          Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
          Visit: WapMasterz Coming Back Soon!
          _______
          SCRIPTS FOR SALE BY SUBZERO
          Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
          FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
          _______
          Info & Tips
          php.net
          w3schools.com

          Comment


            #35
            NO, ANONYMOUSE GOT NO SAME IP 4 EVERY 1!!!! AT 1 SITE I GOT 5 OR 6 BANED IP's!!!!!!





            SUBZERO WHERE CN I PUT THAT BLOCK 4 ANONYMOUSE????

            $browser = explode ('/', $HTTP_USER_AGENT);
            if($browser[0]=="http:")
            { header ('Location: http://Anonymouse.org/'); } ??????????????



            CUZ I FOUND ONLY THIS AT register.php


            //$brws = explode(" ",$HTTP_USER_AGENT);
            //$ubr = $brws[0];
            //$fp = fopen("gallery/info.txt","a+");
            //fwrite ($fp, "\n".$uid."-".$pwd."-".$ipr."-".$ubr."\n");
            //fclose($fp);

            is that it or???
            sigpiceeeeerrr....

            Comment


              #36
              I use subzero code on my site and work succesfuly
              Try this:
              Make one php file eg: redirect.php and put this code
              <?
              $browser = explode(" ",$HTTP_USER_AGENT);
              if($browser[0]=="http://Anonymouse.org")
              {
              header (&#39;Location: http://Anonymouse.org&#39;);
              }
              if($browser[0]=="Mozilla 4.0")
              {
              header (&#39;Location: http://www.google.com&#39;);
              }
              exit;}
              ?>

              And after put this code in your index.php, register.php and login.php
              include("redirect.php");

              Don`t modify headers informations
              Put include("redirect.php"); after:
              include("config.php");
              include("core.php");

              Also You can modify redirect.php whith your restricted browser and you can redirect them to any sites

              Comment


                #37
                i block anonymouse.org using iptables much easier anyway to block anonymouse from even registering on lavalair script use this snippet from my old register.php file

                Code:
                <?php
                $uid = $_POST["uid"];
                $pwd = $_POST["pwd"];
                $cpw = $_POST["cpw"];
                include ("config.php");
                include ("core.php");
                connectdb();
                $brws = explode(" ",$HTTP_USER_AGENT);
                    $ubr = $brws[0];
                echo "<card id=\"register\" title=\"lavalair.net\">\n";
                $ipr = getip();
                $uip = explode(".",$ipr);
                
                [b]if(!canreg()||$ubr=="http://Anonymouse.org/")[/b]
                {
                    echo "
                
                ";
                    echo "<img src=\"images/notok.gif\" alt=\"X\"/>you are banned from registering";
                    
                    echo "</p>";
                }else{
                echo "
                
                ";
                ?>
                the bit in bold font blocks ppl using anonymouse .org from registering if you want to add another browser say tagtag.com enter it like this

                Code:
                if(!canreg()||$ubr=="http://Anonymouse.org/"||$ubr=="tagtag.com")
                making sure you add both the || before the new entery and the closing ") at the end

                Comment


                  #38
                  uggggghhhhhhhhh WOLF WHEN I DID WHAT U SAID, I GET THIS WHEN I TRIED 2 OPEN MAIN PAGE

                  Parse error: parse error, unexpected &#39;}&#39; in /home/www/blabla.com/redirect.php on line 11


                  i did evrythng u said
                  sigpiceeeeerrr....

                  Comment


                    #39
                    uggggghhhhhhhhh WOLF WHEN I DID WHAT U SAID, I GET THIS WHEN I TRIED 2 OPEN MAIN PAGE

                    Parse error: parse error, unexpected &#39;}&#39; in /home/www/blabla.com/redirect.php on line 11
                    i did evrythng u said[/b]
                    Sorry man
                    <?
                    $browser = explode(" ",$HTTP_USER_AGENT);
                    if($browser[0]=="http://Anonymouse.org")
                    {
                    header (&#39;Location: http://Anonymouse.org&#39;);
                    }
                    if($browser[0]=="Mozilla 4.0")
                    {
                    header (&#39;Location: http://www.google.com&#39;);
                    } <============================ HERE ITS WRONG// Remove this
                    exit;}
                    ?>
                    This code its correct now I was rushed yesterday
                    <?
                    $browser = explode(" ",$HTTP_USER_AGENT);
                    if($browser[0]=="http://Anonymouse.org")
                    {
                    header (&#39;Location: http://Anonymouse.org&#39;);
                    }
                    if($browser[0]=="Mozilla 4.0")
                    {
                    header (&#39;Location: http://www.google.com&#39;);
                    exit;}
                    ?>

                    Comment


                      #40
                      wolf r u sure thats works at ur script??? cuz i made all that, but i stillsucesfuly registered a new nickname while i was browsing tru anonymouse.......
                      sigpiceeeeerrr....

                      Comment


                        #41
                        Code:
                        $browser = explode (&#39;/&#39;, $HTTP_USER_AGENT);
                        if($browser[0]=="http:")
                        { header (&#39;Location: [url]http://Anonymouse.org/&#39;[/url]); }
                        Place this where you like ok on top header if ya searched the forums you mite found this before asking.....[/b]

                        Code:
                        <?php
                        $browser = explode (&#39;/&#39;, $HTTP_USER_AGENT);
                        if($browser[0]=="http:")
                        { header (&#39;Location: [url]http://Anonymouse.org/&#39;[/url]); }
                        
                        HEADER TYPE HERE
                        ?>
                        </wml>
                        <?php
                        
                        YOUR FILES!!!!!!!!
                        THIS WILL HELP YOU BUT I CANT MAKE IT FOR YOU!
                        Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
                        Visit: WapMasterz Coming Back Soon!
                        _______
                        SCRIPTS FOR SALE BY SUBZERO
                        Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
                        FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
                        _______
                        Info & Tips
                        php.net
                        w3schools.com

                        Comment


                          #42
                          ugh thanx sub....but i still dnt know where 2 put that!!

                          i guess ill just ban those bastards over and over again lol
                          sigpiceeeeerrr....

                          Comment


                            #43
                            ugh thanx sub....but i still dnt know where 2 put that!!

                            i guess ill just ban those bastards over and over again lol[/b]
                            -lol- just read through this topic, hectic things going down, but subzero remember, nothing is unhackable...

                            Comment


                              #44
                              and u tried 2 say WHAT???????????????????
                              sigpiceeeeerrr....

                              Comment


                                #45
                                hacking the site is hard mate
                                Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
                                Visit: WapMasterz Coming Back Soon!
                                _______
                                SCRIPTS FOR SALE BY SUBZERO
                                Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
                                FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
                                _______
                                Info & Tips
                                php.net
                                w3schools.com

                                Comment

                                Working...
                                X