Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Proxy Servers

  1. #1
    bungo is offline Junior Member
    Join Date
    Jul 2005
    Posts
    23

    Default Proxy Servers

    Is there any way to block people using Proxy Servers from accessing your site? Some silly child was constantly refreshing my hit counter (in excess of 3000 hits per day) so I banned his IP. Now it is continuing to go up, and logs show that it is online proxy servers that are generating all these hits.

    Do I have to go through *every* proxy server on the web to block it's IP or is there a simpler way?

    Thanks
    Bungo

  2. #2
    Paul_KY is offline Senior Member
    Join Date
    Aug 2004
    Posts
    1,285

    Default

    Bungo,

    Sadly, the poor chap most likely has access to thousands of proxy servers. I'm not sure if anything can be done, but I wouldn't doubt if someone here knew a trick or two.
    "There's no such thing as impossible. It's a myth. Don't believe it."

  3. #3
    bungo is offline Junior Member
    Join Date
    Jul 2005
    Posts
    23

    Default

    Yes, there's at least 75 different proxies he's using, and banning their IP's one by one will take ages, and then he's always going to be one step ahead of me, I can't ban it until he uses it.

    He's also targetting any downloads on my site to eat up my bandwidth, so I've had to disable downloads and the hit counter until I can resolve this.

    Any help much appreciated!
    Bungo

  4. #4
    Duke Guest

    Default

    Too bad you can't report the little tard to his ISP and have them deal with it.

  5. #5
    bungo is offline Junior Member
    Join Date
    Jul 2005
    Posts
    23

    Default

    I was thinking about that, but has he actually done anything wrong?
    As far as I can see, all he's doing is opening a webpage through different proxy servers. Is that illegal? It's certainly bloody annoying, but I'm not too sure of the legal side of things.

    I put his IP through an IP Lookup, and got "user-2480.l5.c5.dsl.pol.co.uk" returned. How do I find what his ISP is? I may as well fire off an e-mail anyway, see if they reply with anything useful.

    Thanks a lot.
    Bungo

  6. #6
    stealthhosts is offline Senior Member
    Join Date
    Jul 2005
    Posts
    208

    Default

    I can help you with this, you can prevent proxies being used at all to access your site.

    Thing is that you may restrict valid visitors. Let me know if you want the script

  7. #7
    bungo is offline Junior Member
    Join Date
    Jul 2005
    Posts
    23

    Default

    Thanks Stealthhosts, would like to see that script.

  8. #8
    stealthhosts is offline Senior Member
    Join Date
    Jul 2005
    Posts
    208

    Default

    I just had a look to try and find it, the one I had was a module we did for PHP-Nuke.

    I had a root and found a detection script we can probably modify to do the job.

    Do you want to test it, let me kno if it works as desired and then I can look at coding it to redirect them to lamer.com or something

    Code:
    <?php
    
    echo "Starting Proxy Detection System<br><br>";
    
    #Here you can call a function to check if the IP is blocked
    #and if not then continue to the IF statement
    
    if ($HTTP_X_FORWARDED_FOR)
    {
    echo "Warring: You might be using a proxy server to connect us<br><br>";
    echo "Connected Via: " . $HTTP_VIA . " - " . $REMOTE_ADDR;
    echo "<br>Your real IP: " . $HTTP_X_FORWARDED_FOR; 
    }
    else
    {
    echo "You are probably not using a proxy server<br>";
    echo "Your IP: " . $REMOTE_ADDR;
    }
    
    ?>

  9. #9
    bungo is offline Junior Member
    Join Date
    Jul 2005
    Posts
    23

    Default

    I'm assuming I'll need to modify that script in order for it to work first? I don't know PHP, so I'm a bit stuck there. I included exactly what you posted and then connected through several different proxy servers myself, all with the result "You are probably not using a proxy server".

    Excuse my ignorance, and thanks for the help!
    Bungo

  10. #10
    stealthhosts is offline Senior Member
    Join Date
    Jul 2005
    Posts
    208

    Default

    hmmm, ok - its not infallable then.

    You shouldnt need to edit it. It's a very basic example that simply checks one header. Let me see what else I have

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Proxy site ?
    By RiverWire in forum General Webmaster Talk
    Replies: 0
    Last Post: 03-17-2007, 03:24 PM
  2. IBM Servers To Use AMD Processors
    By ovi in forum In The News
    Replies: 0
    Last Post: 08-01-2006, 06:22 PM
  3. Gaming Servers
    By Duke in forum Web Hosting
    Replies: 0
    Last Post: 06-20-2005, 07:46 AM
  4. .eu now in root DNS servers
    By temi in forum Domain Names Discussions
    Replies: 0
    Last Post: 05-04-2005, 01:46 PM
  5. Linux servers
    By John in forum Computer and Software Forum
    Replies: 1
    Last Post: 03-22-2005, 01:39 PM

Bookmarks

Bookmarks

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124