Strider Posted July 20, 2012 Report Share Posted July 20, 2012 I would like to know is there a way to block proxy sites from web servers? As I have a guy that keeps trying to register, and is using a proxy, as I have IP blocked him from the server, yet he keeps registering, and with a different IP each time. 2 Quote Link to comment Share on other sites More sharing options...
Moderators servetas Posted July 20, 2012 Moderators Report Share Posted July 20, 2012 Maybe he has got dynamic ip? Quote Link to comment Share on other sites More sharing options...
Strider Posted July 20, 2012 Author Report Share Posted July 20, 2012 No it is not a dynamic IP, as it has gone from starting with 203 to 104, to 116, a Dynamic IP doesn't go through IP ranges like that. Quote Link to comment Share on other sites More sharing options...
Moderators joeri Posted July 20, 2012 Moderators Report Share Posted July 20, 2012 quick thing i found # block proxy servers from site access # http://perishablepress.com/press/2008/04/20/how-to-block-proxy-servers-via-htaccess/ RewriteEngine on RewriteCond %{HTTP:VIA} !^$ [OR] RewriteCond %{HTTP:FORWARDED} !^$ [OR] RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR] RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR] RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR] RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR] RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR] RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$ RewriteRule ^(.*)$ - [F] add this to your htacces regards joeri Quote Link to comment Share on other sites More sharing options...
Strider Posted July 20, 2012 Author Report Share Posted July 20, 2012 Have to see if that works, I tried one proxy server and it failed to be blocked. Quote Link to comment Share on other sites More sharing options...
Moderators joeri Posted July 20, 2012 Moderators Report Share Posted July 20, 2012 this schould block all proxy's i think Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.