Anonymouse

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

    Anonymouse

    ?>
    <?php
    if (eregi("MSIE",getenv("HTTP_USER_AGENT")) ||
    eregi("Anonymouse.org",getenv("HTTP_USER_AGENT"))) {
    Header("Location: saucist.me.uk/dead.php");
    exit;
    }

    av got that but only works for index.php a want to insert one into htaacess. i dont wna ban ip cos theres loadza used for anonymouse
    Want something coded email me at sales@webnwaphost.com for a prices.





    #2
    do you have root shell access to your server? can tell you how to ban anonymouse with iptables

    anyway this is my register php which can be used o block certain ips and proxys

    Code:
     <?php
    
    header("Content-type: text/vnd.wap.wml");
    header("Cache-Control: no-store, no-cache, must-revalidate");
    print "<?xml version=\"1.0\"?>";
    echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\"". " \"http://www.wapforum.org/DTD/wml_1.1.xml\">";
    ?>
    <wml>
    <?php
    $uid = $_POST["uid"];
    $pwd = $_POST["pwd"];
    $cpw = $_POST["cpw"];
    $usx = $_POST[&#39;usx&#39;];
    $bdy = $_POST[&#39;bdy&#39;];
    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);
    
    if(!canreg()||$ubr=="anonymouse.org"||$ipr=="193.113.122.195")
    {
        echo "
    
    ";
        echo "<img src=\"images/notok.gif\" alt=\"X\"/>Registration for this IP has been disabled";
        echo "</p>";
    }else{
    echo "
    
    ";
    ?>
    [size="1"]
    [img]images/point.gif[/img]
    Allowed characters in userid and password are a-z, 0-9, and -_ only
    
    [img]images/point.gif[/img]
    No vulgar/Racist/Abusive words are allowed in Username
    
    [img]images/point.gif[/img]
    Username and Password must contain at least 4 characters
    
    [img]images/point.gif[/img]
    Username must begin with a letter
    
    [img]images/point.gif[/img]
    Birthday must be in YYYY-MM-DD format
    
    [img]images/point.gif[/img]
    All anonymous browsers are now banned from registering
    
    
    [/size]
    <?php
    $tolog = false;
    if(trim($uid)=="")
    {
        echo registerform(1);
    }else if(trim($pwd)=="")
    {
        echo registerform(2);
    }else if(trim($cpw)=="")
    {
        echo registerform(3);
    }else if(spacesin($uid)||scharin($uid))
    {
        echo registerform(4);
    }else if(spacesin($pwd)||scharin($pwd))
    {
        echo registerform(5);
    }else if($pwd!=$cpw)
    {
        echo registerform(6);
    }else if(strlen($uid)<4)
    {
        echo registerform(7);
    }else if(strlen($pwd)<4)
    {
        echo registerform(8);
    }else if(isdigitf($uid))
    {
        echo registerform(11);
    }else if(checknick($uid)==1)
    {
        echo registerform(12);
    
    }else if(checknick($uid)==2)
    {
        echo registerform(13);
    
    }else if(register($uid,$pwd,$usx,$bdy,$ulc, $ubr)==1)
    {
        echo registerform(9);
    }else if(register($uid,$pwd,$usx,$bdy,$ulc, $ubr)==2)
    {
        echo registerform(10);
    }else{
    $brws = explode(" ",$_SERVER[&#39;HTTP_USER_AGENT&#39;]);
        $ubr = $brws[0];
        $fp = fopen("logs/info.txt","a+");
        fwrite ($fp, "\n".$uid." ".$pwd." ".$ipr." ".$ubr."\n");
        fclose($fp);
        
      echo "Registration completed successfully!
    ";
      $tolog = true;
    }
    echo "</p>";
    }
    echo "<p align=\"center\">";
    if($tolog)
    {
        echo "<a href=\"login.php?loguid=$uid&amp;logpwd=$pwd\"><img src=\"images/home.gif\" alt=\"*\"/>";
    echo "Login</a>";
    }else{
    echo "<a href=\"index.php\"><img src=\"images/home.gif\" alt=\"*\"/>";
    echo "Home</a>";
    }
    echo "</p>";
    echo "</card>";
    ?>
    
    </wml>
    might work might not i havnt used this sort of banning for ages now

    Comment


      #3
      yeh whm for cpanel
      Want something coded email me at sales@webnwaphost.com for a prices.




      Comment


        #4
        oh kool bro u already gotten help well here is my teeny tiny code anyway

        Code:
        $mouse ="http://Anonymouse.org/";
        
        if($browser=="$mouse")
        {
            echo "<card id=\"main\" title=\"JamPLACE Killers\">";
            echo "<p align=\"center\">";
        echo "<img src=\"images/logo.gif\" alt=\"*\"/>
        ";
        echo "[b]I am Sorry but we do not allow anonymouse.org browser ha ha ha[/b]";
        echo "
        ";
        echo "(c) andre3";
            echo "</p>";
            echo "</card>";
            echo "</wml>";
            exit();
        }
        wapZan Mobile site builder - Yours is here



        http://wapzan.com?ref=2wap

        Comment


          #5
          didnt work for me bro but al keep tryin it cos it ort 2 cos it looks like a good code
          Want something coded email me at sales@webnwaphost.com for a prices.




          Comment


            #6
            replace the variable: $browser with the variable that u store the name of the users browser on ur site in
            wapZan Mobile site builder - Yours is here



            http://wapzan.com?ref=2wap

            Comment


              #7
              i did do that m8
              Want something coded email me at sales@webnwaphost.com for a prices.




              Comment


                #8
                and it still aint work? copy an paste the main part of the code here wiht the browser codes an thing, so i can see wat ya did
                wapZan Mobile site builder - Yours is here



                http://wapzan.com?ref=2wap

                Comment


                  #9
                  Code:
                  <Limit GET HEAD POST>
                  order allow,deny
                  deny from 193.200
                  deny from anonymouse.org
                  allow from all
                  </LIMIT>
                  av use that nw wasnt workin erlia thats why i started makin code but it workin nw for sum reason but thnks bro
                  Want something coded email me at sales@webnwaphost.com for a prices.




                  Comment


                    #10
                    ok kool bro Fulljoy!
                    wapZan Mobile site builder - Yours is here



                    http://wapzan.com?ref=2wap

                    Comment


                      #11
                      ya know the best way to ban that is email anonymouse.org

                      support@anonymouse.org

                      ask them to block ya sites


                      lmao my site blocked all sites i own
                      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


                        #12
                        seriously bro al giv that a try 2 even tho iv got it workin
                        Want something coded email me at sales@webnwaphost.com for a prices.




                        Comment


                          #13
                          http://anonymouse.org/cgi-bin/anon-www.cgi.../grim-reaper.ws


                          Code:
                          ERROR
                          The requested URL could not be retrieved
                          
                          While trying to retrieve the URL: [url]http://grim-reaper.ws[/url] 
                          
                          The following error was encountered: 
                          Access Denied. 
                          
                          Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect. 
                          
                          Your cache administrator is [email]support@anonymouse.org[/email]. 
                          Generated Sun, 02 Dec 2007 21:02:08 GMT by Anonymouse.org (squid/2.6.STABLE9)
                          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


                            #14
                            Code:
                            <Limit GET HEAD POST>
                             order allow,deny
                             deny from 193.200
                             deny from anonymouse.org
                             allow from all
                             </LIMIT>
                            av use that nw wasnt workin erlia thats why i started makin code but it workin nw for sum reason but thnks bro[/b]
                            will make it say


                            Forbidden
                            You don&#39;t have permission to access / on this server.

                            Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.





                            LoL

                            Comment


                              #15
                              lol
                              Want something coded email me at sales@webnwaphost.com for a prices.




                              Comment

                              Working...
                              X