<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1049020" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1049020</link>
    <description></description>
    <language>en</language>
          <item>
    <title>this is no way to force a</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1266758</link>
    <description> &lt;p&gt;this is no way to force a proxy to honor your caching request, they are only&lt;br /&gt;
hints. if the proxyserver is ignoring the no-cache, url decoration is a&lt;br /&gt;
common way to invaldate the cache.&lt;/p&gt;
&lt;p&gt;myurl.aspx?r=&lt;/p&gt;
&lt;p&gt;just tack a new randowm number on every page request. (you will need to use&lt;br /&gt;
client code to rewrite the postback url if you are using asp.net&#039;s postback&lt;br /&gt;
model). a filter could also do the work.&lt;/p&gt;
 </description>
     <pubDate>Thu, 07 Jul 2011 09:44:14 +0000</pubDate>
 <dc:creator>yrsp007</dc:creator>
 <guid isPermaLink="false">comment 1266758 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>jacob2012 wrote:... You can</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1265948</link>
    <description> &lt;p&gt;&lt;div class=&quot;quote-msg&quot;&gt;&lt;div class=&quot;quote-author&quot;&gt;&lt;em&gt;jacob2012&lt;/em&gt; wrote:&lt;/div&gt;... You can block entire countries or an entire IP range the same way.&lt;/div&gt;&lt;br /&gt;
Yes. Blocking out the Phillipines and Nigeria is always a good start.&lt;/p&gt;
 </description>
     <pubDate>Mon, 13 Jun 2011 12:34:42 +0000</pubDate>
 <dc:creator>C0ldf1re</dc:creator>
 <guid isPermaLink="false">comment 1265948 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Lot of work but you can look</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1265643</link>
    <description> &lt;p&gt;Lot of work but you can look up the IP number of the proxy and block that IP in your .htaccess file. You can block entire countries or an entire IP range the same way.&lt;/p&gt;
 </description>
     <pubDate>Wed, 01 Jun 2011 12:30:17 +0000</pubDate>
 <dc:creator>jacob2012</dc:creator>
 <guid isPermaLink="false">comment 1265643 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>You can block proxy server</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1262773</link>
    <description> &lt;p&gt;You can block proxy server using some proxy software on your server and also using some IP address analyzing tools or &lt;a href=&quot;http://www.optifocus.co.uk/&quot;&gt;software&lt;/a&gt;.&lt;/p&gt;
 </description>
     <pubDate>Fri, 11 Mar 2011 10:04:31 +0000</pubDate>
 <dc:creator>johnpitter</dc:creator>
 <guid isPermaLink="false">comment 1262773 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>HTTP protocol through a proxy</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1262680</link>
    <description> &lt;p&gt;HTTP protocol through a proxy server stop. If you do not want to buy software, there is another way. You can insert a script in your site root htsaccess file. It is best to copy and paste the code, not type.&lt;/p&gt;
 </description>
     <pubDate>Tue, 08 Mar 2011 18:42:04 +0000</pubDate>
 <dc:creator>denniscrown</dc:creator>
 <guid isPermaLink="false">comment 1262680 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Hi,
As a guy who wrote a</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1261797</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;As a guy who wrote a proxy HTTP content filtering system last year. Don&#039;t ask me why it was a mad moment when I thought it could turn into a cool product.&lt;/p&gt;
&lt;p&gt;The headers a proxy passes like HTTP_X_FORWARDED_FOR are entirely up to the proxies discretion whether they included or not. However pr0g4mm3r is correct that will probably detect a lot of them.&lt;/p&gt;
&lt;p&gt;If the proxies are coming from a certain ip address you could probably block that ip address in cpanel but that would be almost impossible as there are many proxies.&lt;/p&gt;
&lt;p&gt;This might be more accurate but it will probably still not be fool proof and there is a danger of false positives.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;function isProxy()&lt;br /&gt;{&lt;br /&gt;	return ($_SERVER[&amp;#039;HTTP_X_FORWARDED_FOR&amp;#039;] || $_SERVER[&amp;#039;HTTP_X_FORWARDED&amp;#039;] || $_SERVER[&amp;#039;HTTP_FORWARDED_FOR&amp;#039;] || $_SERVER[&amp;#039;HTTP_CLIENT_IP&amp;#039;] || $_SERVER[&amp;#039;HTTP_VIA&amp;#039;] || in_array($_SERVER[&amp;#039;REMOTE_PORT&amp;#039;], array(8080,80,6588,8000,3128,553,554)) || @fsockopen($_SERVER[&amp;#039;REMOTE_ADDR&amp;#039;], 80, $errno, $errstr, 30));&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 12 Feb 2011 12:33:15 +0000</pubDate>
 <dc:creator>TrafficNova</dc:creator>
 <guid isPermaLink="false">comment 1261797 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Usually, the browser will</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/how-stop-proxy-servers#comment-1261647</link>
    <description> &lt;p&gt;Usually, the browser will send an &quot;HTTP_X_FORWARDED_FOR&quot; header when a proxy is used.  In PHP, that will show up in the $_SERVER[&quot;HTTP_X_FORWARDED_FOR&quot;] variable.  I believe this there is a way to use a proxy without sending this header, but it may be a place to start.&lt;/p&gt;
&lt;p&gt;The only other thing I can think of is blacklisting some known proxies.&lt;/p&gt;
 </description>
     <pubDate>Mon, 07 Feb 2011 12:26:42 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1261647 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
