<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Proxy Webmasters</title>
	<atom:link href="http://proxywebmasters.com/feed" rel="self" type="application/rss+xml" />
	<link>http://proxywebmasters.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Fri, 17 Oct 2008 17:59:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Block Non-converting, Spam Traffic by Country : GeoIP PECL PHP Geo-Targeting</title>
		<link>http://proxywebmasters.com/proxy-mods/block-non-converting-spam-traffic-by-country-geoip-pecl-php-geo-targeting</link>
		<comments>http://proxywebmasters.com/proxy-mods/block-non-converting-spam-traffic-by-country-geoip-pecl-php-geo-targeting#comments</comments>
		<pubDate>Fri, 17 Oct 2008 17:58:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Mods]]></category>

		<category><![CDATA[Block Country]]></category>

		<category><![CDATA[GEOIP]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=126</guid>
		<description><![CDATA[I’m sure webmasters have faced situations where they need a fast, affordable and working solution to block less converting or spam traffic to their websites or pages from certain countries, but either they had to implement slow, inefficient methods or costly professional solutions for their Geo targeting needs.
One of the most popular, free, open-source and [...]]]></description>
			<content:encoded><![CDATA[<p>I’m sure webmasters have faced situations where they need a fast, affordable and working solution to block less converting or spam traffic to their websites or pages from certain countries, but either they had to implement slow, inefficient methods or costly professional solutions for their Geo targeting needs.</p>
<p>One of the most popular, free, open-source and hot web programming languages today is PHP. Today, I’m going to share a little trick which efficiently solves the geo-targeting issue; or making your website appear only to a certain demographic you’re targeting and block non-converting or spammy traffic from other countries. Perhaps you know that the IP of the visitors can be translated into country and other info; we are making use of the same in this tutorial.</p>
<p>Geo-targeting, GeoIP or IP to country implementation is a great solution for the following situations, but not limited to them :</p>
<p>* You have a site or web page targeted to visitors from a certain country; say : USA.<br />
* You are getting spammed and fraud orders from a certain country; say : China.<br />
* You don’t want people from certain country or area to access your site.<br />
* You want to block countries which have less conversion for publisher programs like Google Adsense or YPN.<br />
* Your web proxy is being abused and less conversion from ads from countries like China and the Middle East; using up system resources and bandwidth.</p>
<p>Now, let’s come back to the tutorial and setup GeoIP based web traffic filtering.</p>
<p>Requirements and softwares used :</p>
<p>* Preferably Linux OS on server. (tutorial based on Linux)<br />
* Root access to the server or VPS.<br />
* PHP 4.3 or higher installed .<br />
* GeoIP PECL module for PHP.<br />
* GeoIP C API from Maxmind. (We are using the free GeoIP DB, not 100% accurate)<br />
* Moderate Linux Server Administration skills.</p>
<p>The Steps :<br />
1. Login as root to your server through SSH.</p>
<p>2. Download and install latest GeoIP C API.<br />
(remove the - in w-get, there’s some posting restrictions here.)</p>
<blockquote><p>#w-get http://www.maxmind.com/download/geoip/api/c/GeoIP.tar.gz</p></blockquote>
<p>Note the the GeoIP version downloaded.</p>
<blockquote><p>#tar -zxvf GeoIP-[version number].tar.gz<br />
#cd GeoIP-[version number]<br />
#./configure<br />
#make<br />
#make install</p></blockquote>
<p>The GeoIP free C API should be installed now.</p>
<p>3. Install GeoIP PECL module for PHP.</p>
<blockquote><p>#pecl install geoip-0.2.0</p></blockquote>
<p>v0.2.0 is the the current version at the time of writing this tutorial.<br />
Check PECL GeoIP for more info and use the latest version in the above statement.</p>
<p>Note down where the “geoip.so” file is saved when the installer terminates.</p>
<p>Now, let’s add it to php.ini and restart the web server to take effect.</p>
<blockquote><p>#whereis php.ini<br />
#nano /path/to/php.ini</p></blockquote>
<p>Add the following line, preferably in the dynamic extensions section :</p>
<blockquote><p>extension = &#8220;/path/to/geoip.so&#8221;</p></blockquote>
<p>Save and exit.</p>
<p>Restart the web server, assuming Apache on CentOS:</p>
<blockquote><p>#/sbin/service httpd restart</p></blockquote>
<p>To verify if GeoIP extension is running, make info.php containing phpinfo() function and upload to your domain<br />
, open it with a browser and search the page for “geoip”.</p>
<p>4. Implement geo-targeting in your website and web pages as necessary.</p>
<p>Here’s an example php snippet if added to the top of a php file<br />
blocks any traffic except USA, UK, Canada and Australia : ( replace [ with &lt; below )</p>
<blockquote><p>[?php<br />
$country = geoip_country_code_by_name($_SERVER["REMOTE_ADDR"]);<br />
if (!(($country == &#8220;US&#8221;) or ($country == &#8220;CA&#8221;) or ($country == &#8220;GB&#8221;) or ($country == &#8220;AU&#8221;))) { die(&#8221;Service Unavailable!&#8221;); }<br />
?]</p></blockquote>
<p>I hope the above tutorial would help you to address issues related to geo-targeting and banning unwanted traffic from non converting, fraud and spamming<br />
countries.</p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-mods/block-non-converting-spam-traffic-by-country-geoip-pecl-php-geo-targeting/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ask Me A Question proxy</title>
		<link>http://proxywebmasters.com/proxy-servers/ask-me-a-question-proxy</link>
		<comments>http://proxywebmasters.com/proxy-servers/ask-me-a-question-proxy#comments</comments>
		<pubDate>Thu, 02 Oct 2008 16:47:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Servers]]></category>

		<category><![CDATA[Ask Me A Question]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[proxy]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=122</guid>
		<description><![CDATA[a new proxy which is allows you to watch youtube,myspace videos and go on
all other blocked sites. 
]]></description>
			<content:encoded><![CDATA[<p>a new proxy which is allows you to watch youtube,myspace videos and go on<br />
all other blocked sites. </p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-servers/ask-me-a-question-proxy/feed</wfw:commentRss>
		</item>
		<item>
		<title>NepalProxy - Anonymous Web Proxy</title>
		<link>http://proxywebmasters.com/proxy-servers/nepalproxy-anonymous-web-proxy</link>
		<comments>http://proxywebmasters.com/proxy-servers/nepalproxy-anonymous-web-proxy#comments</comments>
		<pubDate>Thu, 02 Oct 2008 16:45:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Servers]]></category>

		<category><![CDATA[anonymous proxy]]></category>

		<category><![CDATA[Myspace-Unblock]]></category>

		<category><![CDATA[Proxyify]]></category>

		<category><![CDATA[web proxy]]></category>

		<category><![CDATA[Youtube-Unblock]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=120</guid>
		<description><![CDATA[NepalProxy.com is an anonymous web proxy service ensuring maximum safety and secure browsing
]]></description>
			<content:encoded><![CDATA[<p>NepalProxy.com is an anonymous web proxy service ensuring maximum safety and secure browsing</p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-servers/nepalproxy-anonymous-web-proxy/feed</wfw:commentRss>
		</item>
		<item>
		<title>100+ proxy topsite list</title>
		<link>http://proxywebmasters.com/proxy-mods/100-proxy-topsite-list</link>
		<comments>http://proxywebmasters.com/proxy-mods/100-proxy-topsite-list#comments</comments>
		<pubDate>Thu, 18 Sep 2008 15:50:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Mods]]></category>

		<category><![CDATA[proxy topsite list]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=112</guid>
		<description><![CDATA[Here is nice collection of over 100 proxy lists and topsites. Submit your proxy to them and gain an easy 25-50 uniques a day. Once the word is out your traffic will grow on its own.
www.8080proxylist.com
www.activeproxies.org
www.activeproxylist.info
www.agentproxylist.info
www.allproxysites.com
www.proxylocator.info
www.atproxy.net
www.azproxies.com
www.brandnewproxies.net
www.brandnewproxy.net
www.canyouhideme.com
www.carbon-limited.org
www.centerproxylist.info
www.cgiproxy.us
www.choiceproxylist.info
www.cspy.org
www.cyberproxylist.info
www.dataproxylist.info
www.digitalproxylist.info
www.directproxylist.info
www.domainrein.com
www.dreamproxylist.info
www.easyproxylist.info
www.eatproxy.com
www.everyproxysite.com
www.findproxylist.info
www.findproxy.org
www.forceproxylist.info
www.freeproxies.info
www.freeproxylist.info
www.freeproxysite.com
www.freshproxyservers.com
www.fridoz.com
www.getproxies.net
www.getproxylist.info
www.getproxys.com
www.globalproxylist.info
www.goproxylist.info
www.greatproxylist.com
www.homeproxylist.info
www.httpproxy.us
www.hyipforums.us
www.internetproxies.net
www.internetproxy.us
www.interproxylist.info
www.intoeasy.com
www.kenzey.com
www.keyproxylist.info
www.listprox.com
www.liveproxylist.info
www.magicproxylist.info
www.meoso.com
www.myfreshproxylist.com
www.mylinktrain.com
www.myspaceproxies.biz
www.newproxies.biz
www.pcproxylist.info
www.powerproxylist.info
www.prowzer.com
www.proxies.us
www.proxies.vc
www.proxifinder.com
www.proxxies.com
www.proxyblind.org
www.proxygarden.com
www.proxyinter.net
www.proxylicious.com
www.proxylist4u.com
www.proxyliste.com
www.proxylist.ws
www.proxymirror.com
www.proxypointer.com
www.proxyseek.org
www.proxyserverprivacy.com
www.proxyservice.de
www.proxysitelist.info
www.proxyslisted.com
www.proxystuff.info
www.proxytoolbox.com
www.pro-xytoplist.com
www.proxytop.net
www.proxytops.com
www.proxytopsite.com
www.proxytopsitelist.com
www.proxytree.com
www.proxytron.biz
www.proxywebsites.biz
www.prxy.us
www.rightproxies.com
www.schoolproxy.biz
www.serverproxylist.info
www.siteproxylist.info
www.smartproxylist.info
www.starproxylist.info
www.sunproxylist.info
www.surfitproxy.com
www.sweetproxies.com
www.theproxi.com
www.timeproxylist.info
www.topfreeproxies.com
www.topproxysites.net
www.topwebproxies.com
www.topwebproxy.com
www.ultimateproxies.com
www.unlock5.com
www.v6.pp.ru
www.viewproxylist.info
www.webproxies.org
www.webproxylists.com
www.websurfingproxies.net
www.xgxi.com
www.yourproxylist.info
www.proxy-sites.eu
www.proxy-list.co.uk
www.proxies.ch
www.eusko.org
www.proxy.biz
www.lumisade.net
www.proxygroup.info
www.xytheme.com
www.proxywhereabouts.com
]]></description>
			<content:encoded><![CDATA[<p>Here is nice collection of over 100 proxy lists and topsites. Submit your proxy to them and gain an easy 25-50 uniques a day. Once the word is out your traffic will grow on its own.</p>
<p><a rel="nofollow" href="http://www.8080proxylist.com/exchange.php">www.8080proxylist.com</a><br />
<a rel="nofollow" href="http://www.activeproxies.org/exchange.php">www.activeproxies.org</a><br />
<a rel="nofollow" href="http://www.activeproxylist.info/addsite.php">www.activeproxylist.info</a><br />
<a rel="nofollow" href="http://www.agentproxylist.info/index.php?a=join">www.agentproxylist.info</a><br />
<a rel="nofollow" href="http://www.allproxysites.com/submit-proxy-sites.php">www.allproxysites.com</a><br />
<a rel="nofollow" href="http://www.proxylocator.info">www.proxylocator.info</a><br />
<a rel="nofollow" href="http://www.atproxy.net/submit-proxy.php">www.atproxy.net</a><br />
<a rel="nofollow" href="http://www.azproxies.com/submit-proxy.html">www.azproxies.com</a><br />
<a rel="nofollow" href="http://www.brandnewproxies.net/submit.php">www.brandnewproxies.net</a><br />
<a rel="nofollow" href="http://www.brandnewproxy.net/submit.php">www.brandnewproxy.net</a><br />
<a rel="nofollow" href="http://www.canyouhideme.com/exchange.php">www.canyouhideme.com</a><br />
<a rel="nofollow" href="http://www.carbon-limited.org/exchange.php">www.carbon-limited.org</a><br />
<a rel="nofollow" href="http://www.centerproxylist.info/index.php?a=join">www.centerproxylist.info</a><br />
<a rel="nofollow" href="http://www.cgiproxy.us/index.php?a=join">www.cgiproxy.us</a><br />
<a rel="nofollow" href="http://www.choiceproxylist.info/index.php?a=join">www.choiceproxylist.info</a><br />
<a rel="nofollow" href="http://www.cspy.org/toplist/index.php?a=join">www.cspy.org</a><br />
<a rel="nofollow" href="http://www.cyberproxylist.info/index.php?a=join">www.cyberproxylist.info</a><br />
<a rel="nofollow" href="http://www.dataproxylist.info/index.php?a=join">www.dataproxylist.info</a><br />
<a rel="nofollow" href="http://www.digitalproxylist.info/index.php?a=join">www.digitalproxylist.info</a><br />
<a rel="nofollow" href="http://www.directproxylist.info/index.php?a=join">www.directproxylist.info</a><br />
<a rel="nofollow" href="http://www.domainrein.com/exchange.php">www.domainrein.com</a><br />
<a rel="nofollow" href="http://www.dreamproxylist.info/index.php?a=join">www.dreamproxylist.info</a><br />
<a rel="nofollow" href="http://www.easyproxylist.info/index.php?a=join">www.easyproxylist.info</a><br />
<a rel="nofollow" href="http://www.eatproxy.com/submit.php">www.eatproxy.com</a><br />
<a rel="nofollow" href="http://www.everyproxysite.com/submit-proxy.php">www.everyproxysite.com</a><br />
<a rel="nofollow" href="http://www.findproxylist.info/index.php?a=join">www.findproxylist.info</a><br />
<a rel="nofollow" href="http://www.findproxy.org/link-exchange.php">www.findproxy.org</a><br />
<a rel="nofollow" href="http://www.forceproxylist.info/index.php?a=join">www.forceproxylist.info</a><br />
<a rel="nofollow" href="http://www.freeproxies.info/index.php?a=join">www.freeproxies.info</a><br />
<a rel="nofollow" href="http://www.freeproxylist.info/exchange.php">www.freeproxylist.info</a><br />
<a rel="nofollow" href="http://www.freeproxysite.com/add-proxy.php">www.freeproxysite.com</a><br />
<a rel="nofollow" href="http://www.freshproxyservers.com/exchange.php">www.freshproxyservers.com</a><br />
<a rel="nofollow" href="http://www.fridoz.com/submit.php">www.fridoz.com</a><br />
<a rel="nofollow" href="http://www.getproxies.net/submit-proxy.php">www.getproxies.net</a><br />
<a rel="nofollow" href="http://www.getproxylist.info/index.php?a=join">www.getproxylist.info</a><br />
<a rel="nofollow" href="http://www.getproxys.com/submit-proxy-sites.php">www.getproxys.com</a><br />
<a rel="nofollow" href="http://www.globalproxylist.info/index.php?a=join">www.globalproxylist.info</a><br />
<a rel="nofollow" href="http://www.goproxylist.info/index.php?a=join">www.goproxylist.info</a><br />
<a rel="nofollow" href="http://www.greatproxylist.com/submit_site.php">www.greatproxylist.com</a><br />
<a rel="nofollow" href="http://www.homeproxylist.info/index.php?a=join">www.homeproxylist.info</a><br />
<a rel="nofollow" href="http://www.&lt;a href=">www.httpproxy.us</a><br />
<a rel="nofollow" href="http://www.hyipforums.us/exchange.php">www.hyipforums.us</a><br />
<a rel="nofollow" href="http://www.internetproxies.net/submit-proxy.php">www.internetproxies.net</a><br />
<a rel="nofollow" href="http://www.internetproxy.us/submit.php">www.internetproxy.us</a><br />
<a rel="nofollow" href="http://www.interproxylist.info/index.php?a=join">www.interproxylist.info</a><br />
<a rel="nofollow" href="http://www.intoeasy.com/exchange.php">www.intoeasy.com</a><br />
<a rel="nofollow" href="http://www.kenzey.com/exchange.php">www.kenzey.com</a><br />
<a rel="nofollow" href="http://www.keyproxylist.info/index.php?a=join">www.keyproxylist.info</a><br />
<a rel="nofollow" href="http://www.listprox.com/exchange.php">www.listprox.com</a><br />
<a rel="nofollow" href="http://www.liveproxylist.info/index.php?a=join">www.liveproxylist.info</a><br />
<a rel="nofollow" href="http://www.magicproxylist.info/index.php?a=join">www.magicproxylist.info</a><br />
<a rel="nofollow" href="http://www.meoso.com/exchange.php">www.meoso.com</a><br />
<a rel="nofollow" href="http://www.myfreshproxylist.com/exchange.php">www.myfreshproxylist.com</a><br />
<a rel="nofollow" href="http://www.mylinktrain.com/submit.php">www.mylinktrain.com</a><br />
<a rel="nofollow" href="http://www.myspaceproxies.biz/exchange.php">www.myspaceproxies.biz</a><br />
<a rel="nofollow" href="http://www.newproxies.biz/submit-proxy.php">www.newproxies.biz</a><br />
<a rel="nofollow" href="http://www.pcproxylist.info/index.php?a=join">www.pcproxylist.info</a><br />
<a rel="nofollow" href="http://www.powerproxylist.info/index.php?a=join">www.powerproxylist.info</a><br />
<a rel="nofollow" href="http://www.prowzer.com/exchange.php">www.prowzer.com</a><br />
<a rel="nofollow" href="http://www.proxies.us/exchange.php">www.proxies.us</a><br />
<a rel="nofollow" href="http://www.proxies.vc/index.php?a=join">www.proxies.vc</a><br />
<a rel="nofollow" href="http://www.proxifinder.com/exchange.php">www.proxifinder.com</a><br />
<a rel="nofollow" href="http://www.proxxies.com/index.php?a=join">www.proxxies.com</a><br />
<a rel="nofollow" href="http://www.proxyblind.org/free-web-proxy/index.php?a=join">www.proxyblind.org</a><br />
<a rel="nofollow" href="http://www.proxygarden.com/index.php?a=join">www.proxygarden.com</a><br />
<a rel="nofollow" href="http://www.proxyinter.net/submit_proxy.php">www.proxyinter.net</a><br />
<a rel="nofollow" href="http://www.proxylicious.com/index.php?a=join">www.proxylicious.com</a><br />
<a rel="nofollow" href="http://www.proxylist4u.com/exchange.php">www.proxylist4u.com</a><br />
<a rel="nofollow" href="http://www.proxyliste.com/submit.php">www.proxyliste.com</a><br />
<a rel="nofollow" href="http://www.proxylist.ws/join.html">www.proxylist.ws</a><br />
<a rel="nofollow" href="http://www.proxymirror.com/exchange.php">www.proxymirror.com</a><br />
<a rel="nofollow" href="http://www.proxypointer.com/exchange.php">www.proxypointer.com</a><br />
<a rel="nofollow" href="http://www.proxyseek.org/exchange.php">www.proxyseek.org</a><br />
<a rel="nofollow" href="http://www.proxyserverprivacy.com/proxy-web-sites/index.php?a=join">www.proxyserverprivacy.com</a><br />
<a rel="nofollow" href="http://www.proxyservice.de/proxy-submission.php">www.proxyservice.de</a><br />
<a rel="nofollow" href="http://www.proxysitelist.info/exchange.php">www.proxysitelist.info</a><br />
<a rel="nofollow" href="http://www.proxyslisted.com/index.php?id=submit">www.proxyslisted.com</a><br />
<a rel="nofollow" href="http://www.proxystuff.info/exchange.php">www.proxystuff.info</a><br />
<a rel="nofollow" href="http://www.proxytoolbox.com/add.php">www.proxytoolbox.com</a><br />
<a rel="nofollow" href="http://www.pro-xytoplist.com/webproxy-join.html">www.pro-xytoplist.com</a><br />
<a rel="nofollow" href="http://www.proxytop.net/exchange.php">www.proxytop.net</a><br />
<a rel="nofollow" href="http://www.proxytops.com/index.php?a=join">www.proxytops.com</a><br />
<a rel="nofollow" href="http://www.proxytopsite.com/join.php">www.proxytopsite.com</a><br />
<a rel="nofollow" href="http://www.proxytopsitelist.com/index.php?a=join">www.proxytopsitelist.com</a><br />
<a rel="nofollow" href="http://www.proxytree.com/index.php?a=join">www.proxytree.com</a><br />
<a rel="nofollow" href="http://www.proxytron.biz/exchange.php">www.proxytron.biz</a><br />
<a rel="nofollow" href="http://www.proxywebsites.biz/submit.php">www.proxywebsites.biz</a><br />
<a rel="nofollow" href="http://www.prxy.us/exchange.php">www.prxy.us</a><br />
<a rel="nofollow" href="http://www.rightproxies.com/exchange.php">www.rightproxies.com</a><br />
<a rel="nofollow" href="http://www.schoolproxy.biz/submit-proxy.php">www.schoolproxy.biz</a><br />
<a rel="nofollow" href="http://www.serverproxylist.info/index.php?a=join">www.serverproxylist.info</a><br />
<a rel="nofollow" href="http://www.siteproxylist.info/index.php?a=join">www.siteproxylist.info</a><br />
<a rel="nofollow" href="http://www.smartproxylist.info/index.php?a=join">www.smartproxylist.info</a><br />
<a rel="nofollow" href="http://www.starproxylist.info/index.php?a=join">www.starproxylist.info</a><br />
<a rel="nofollow" href="http://www.sunproxylist.info/index.php?a=join">www.sunproxylist.info</a><br />
<a rel="nofollow" href="http://www.surfitproxy.com/exchange.php">www.surfitproxy.com</a><br />
<a rel="nofollow" href="http://www.sweetproxies.com/submit/">www.sweetproxies.com</a><br />
<a rel="nofollow" href="http://www.theproxi.com/exchange.php">www.theproxi.com</a><br />
<a rel="nofollow" href="http://www.timeproxylist.info/index.php?a=join">www.timeproxylist.info</a><br />
<a rel="nofollow" href="http://www.topfreeproxies.com/index.php?a=join">www.topfreeproxies.com</a><br />
<a rel="nofollow" href="http://www.topproxysites.net/index.php?a=join">www.topproxysites.net</a><br />
<a rel="nofollow" href="http://www.topwebproxies.com/index.php?a=join">www.topwebproxies.com</a><br />
<a rel="nofollow" href="http://www.topwebproxy.com/index.php?a=join">www.topwebproxy.com</a><br />
<a rel="nofollow" href="http://www.ultimateproxies.com/exchange.php">www.ultimateproxies.com</a><br />
<a rel="nofollow" href="http://www.unlock5.com/exchange.php">www.unlock5.com</a><br />
<a rel="nofollow" href="http://www.v6.pp.ru/exchange.php">www.v6.pp.ru</a><br />
<a rel="nofollow" href="http://www.viewproxylist.info/index.php?a=join">www.viewproxylist.info</a><br />
<a rel="nofollow" href="http://www.webproxies.org/join.php">www.webproxies.org</a><br />
<a rel="nofollow" href="http://www.webproxylists.com/exchange.php">www.webproxylists.com</a><br />
<a rel="nofollow" href="http://www.websurfingproxies.net/submit.php">www.websurfingproxies.net</a><br />
<a rel="nofollow" href="http://www.xgxi.com/exchange.php">www.xgxi.com</a><br />
<a rel="nofollow" href="http://www.yourproxylist.info/index.php?a=join">www.yourproxylist.info</a><br />
<a rel="nofollow" href="http://proxy-sites.eu/">www.proxy-sites.eu</a><br />
<a rel="nofollow" href="http://proxy-list.co.uk/">www.proxy-list.co.uk</a><br />
<a rel="nofollow" href="http://proxies.ch/">www.proxies.ch</a><br />
<a rel="nofollow" href="http://eusko.org/">www.eusko.org</a><br />
<a rel="nofollow" href="http://www.proxy.biz/topsite/">www.proxy.biz</a><br />
<a rel="nofollow" href="http://www.lumisade.net/">www.lumisade.net</a><br />
<a rel="nofollow" href="http://www.proxygroup.info/">www.proxygroup.info</a><br />
<a rel="nofollow" href="http://www.xytheme.com/proxy-sites/">www.xytheme.com</a><br />
<a rel="nofollow" href="http://www.proxywhereabouts.com/">www.proxywhereabouts.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-mods/100-proxy-topsite-list/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to Block WebSense</title>
		<link>http://proxywebmasters.com/proxy-mods/how-to-block-websense</link>
		<comments>http://proxywebmasters.com/proxy-mods/how-to-block-websense#comments</comments>
		<pubDate>Mon, 08 Sep 2008 05:06:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Mods]]></category>

		<category><![CDATA[ban websense]]></category>

		<category><![CDATA[block webSense]]></category>

		<category><![CDATA[websense ip]]></category>

		<category><![CDATA[websense ip ranges]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=104</guid>
		<description><![CDATA[Websense, Inc. is one of the busiest net abusers. Their stealth scanning never stops.
208.80.193.26 … "GET / HTTP/1.0" 403 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; 3304; SV1; .NET CLR 1.1.4322)" "-"
208.80.193.37 … "GET /blog/music/ HTTP/1.0" 403 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Dealio Toolbar 3.1.1; Zango 10.0.370.0)" "-"
Primarily, [...]]]></description>
			<content:encoded><![CDATA[<p>Websense, Inc. is one of the busiest net abusers. Their stealth scanning never stops.</p>
<blockquote><p><code>208.80.193.26 … "GET / HTTP/1.0" 403 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; 3304; SV1; .NET CLR 1.1.4322)" "-"<br />
208.80.193.37 … "GET /blog/music/ HTTP/1.0" 403 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Dealio Toolbar 3.1.1; Zango 10.0.370.0)" "-"</code></p></blockquote>
<p>Primarily, the abuse is coming from 208.80.193.0/24.</p>
<blockquote><p><code>$ nice gunzip -c  | egrep '^208.80.19' | awk '{print($1)}' | sort | uniq -c | sort -r -n</code></p></blockquote>
<p>35 208.80.193.31<br />
34 208.80.193.44<br />
33 208.80.193.33<br />
30 208.80.193.27<br />
25 208.80.193.37<br />
25 208.80.193.32<br />
22 208.80.193.46<br />
22 208.80.193.30<br />
21 208.80.193.35<br />
20 208.80.193.42<br />
19 208.80.193.45<br />
18 208.80.193.29<br />
16 208.80.193.39<br />
15 208.80.193.40<br />
14 208.80.193.48<br />
14 208.80.193.34<br />
12 208.80.193.47<br />
11 208.80.193.36<br />
6 208.80.193.41<br />
6 208.80.193.38<br />
5 208.80.193.26<br />
4 208.80.193.59<br />
4 208.80.193.50<br />
2 208.80.193.54<br />
1 208.80.193.43</p>
<p>Here are Websense’s netblocks. Block all of them.</p>
<blockquote><p><code>* 66.194.6.0/24<br />
* 208.80.192.0/21<br />
* 204.15.64.0/21</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-mods/how-to-block-websense/feed</wfw:commentRss>
		</item>
		<item>
		<title>Anti-AdBlock V2</title>
		<link>http://proxywebmasters.com/proxy-mods/anti-adblock-v2</link>
		<comments>http://proxywebmasters.com/proxy-mods/anti-adblock-v2#comments</comments>
		<pubDate>Wed, 03 Sep 2008 18:22:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Mods]]></category>

		<category><![CDATA[anti-adblock]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=93</guid>
		<description><![CDATA[How it works&#8230;
When a normal user visits your site. Their browser will use the CSS within the &#8220;advertisement.js&#8221; file, which will override the previously posted CSS. When this happens, the &#8220;Notice&#8221; is not displayed, the page is shown to the viewer.
However, if the user has enabled ad-block, they will not download the advertisement.js file, thinking [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How it works&#8230;</strong><br />
When a normal user visits your site. Their browser will use the CSS within the &#8220;advertisement.js&#8221; file, which will override the previously posted CSS. When this happens, the &#8220;Notice&#8221; is not displayed, the page is shown to the viewer.</p>
<p>However, if the user has enabled ad-block, they will not download the advertisement.js file, thinking it is a advertisement. Then CSS will not be overrideen, and the page will be blocked from view, and a notice displayed.<span id="more-93"></span></p>
<p>Example: http://d3xt3r.net/development/adblock_banner_test.php</p>
<p><strong>Instructions&#8230;</strong><br />
Copy SCRIPT-B into a blank text file. Name the file &#8220;advertisement.js&#8221; and upload to the root of your webserver.</p>
<p>Input SCRIPT-A directly below  on any and all pages you wish to use this system. Be sure to modify the location of the .JS file to the location on your server.</p>
<p>Modify SCRIPT-A to fit your needs, but DO NOT remove the link to D3xt3r.net, only if you purchase the system.</p>
<p><strong>Notes&#8230;</strong><br />
Make sure that there are no unneeded  tags within your pages. Otherwise the system will only block the page to that point.</p>
<p>This system has been tested on many browsers, working on 68 out of 69 tested. However, I am not responsible for the use of this system, you agree to that by using it.</p>
<p>If a person has javascript disabled, the system automatically shows the override codes, and the person is not shown the ad-block notice.</p>
<p><strong>SCRIPT-A</strong></p>
<blockquote><p><code>&lt;style type="text/css"&gt;<br />
#blockblockA {<br />
position:absolute;<br />
top:0px;left:0px;<br />
background-color:#000000;<br />
width:100%;<br />
height:100%;}<br />
#blockblockA td {<br />
text-align:center;<br />
width:100%;<br />
height:100%;}<br />
#blockblockA td p {<br />
font: bold 20px Verdana;<br />
color:#ffffff;}<br />
#blockblockB {<br />
visibility:invisible;<br />
display:none;}<br />
&lt;/style&gt;</code></p>
<p>&lt;noscript&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
#blockblockA {<br />
visibility:invisible!important;<br />
display:none!important;}<br />
#blockblockA td {<br />
visibility:invisible!important;<br />
display:none!important;}<br />
#blockblockA td p {<br />
visibility:invisible!important;<br />
display:none!important;}<br />
#blockblockB {<br />
visibility:visible!important;<br />
display:block!important;}<br />
&lt;/style&gt;<br />
&lt;/noscript&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.example.com/advertisement.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;table id=&#8221;blockblockA&#8221;&gt;&lt;tr&gt;&lt;td&gt;</p>
<p>&lt;p align=&#8221;center&#8221;&gt;&lt;i&gt;Please&lt;/i&gt; Disable Ad-Block To View This Website.&lt;/p&gt;<br />
&lt;p align=&#8221;right&#8221;&gt;Anti-AdBlock V2 By &lt;a href=&#8221;http://d3xt3r.net&#8221;&gt;D3xt3r.net&lt;/a&gt;&lt;/p&gt;</p>
<p>&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</p>
<p>&lt;span id=&#8221;blockblockB&#8221;&gt;</p></blockquote>
<p><strong> SCRIPT-B</strong></p>
<blockquote><p><code>
<pre style="margin-top: 0pt; display: inline;">document.write('&lt;style type="text/css"&gt;
#blockblockA {
visibility:invisible!important;
display:none!important;}
#blockblockA td {
visibility:invisible!important;
display:none!important;}
#blockblockA td p {
visibility:invisible!important;
display:none!important;}
#blockblockB {
visibility:visible!important;
display:block!important;}
&lt;/style&gt;');</pre>
<p></code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-mods/anti-adblock-v2/feed</wfw:commentRss>
		</item>
		<item>
		<title>ByPass Ad Blockers</title>
		<link>http://proxywebmasters.com/proxy-mods/bypass-ad-blockers</link>
		<comments>http://proxywebmasters.com/proxy-mods/bypass-ad-blockers#comments</comments>
		<pubDate>Wed, 03 Sep 2008 18:00:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Mods]]></category>

		<category><![CDATA[ByPass Ad Blockers]]></category>

		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=87</guid>
		<description><![CDATA[If you&#8217;re like me and you&#8217;re seeing something like 60 - 70 percent of page views not displaying ads, you might want to let your visitors know that what they&#8217;re doing is immoral and ad blocking is going to kill the free internet. I regard 60 - 70% of page views as a staggering proportion [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me and you&#8217;re seeing something like 60 - 70 percent of page views not displaying ads, you might want to let your visitors know that what they&#8217;re doing is immoral and ad blocking is going to kill the free internet. I regard 60 - 70% of page views as a staggering proportion that leans dangerously close to making advertising pointless. If that percentage holds true for other sites you can rest assured that their days of either being a free service or even around are numbered.</p>
<p>It&#8217;s done using JavaScript with a little creativity to provide some safety against savvy web users who in addition to blocking ads, would otherwise try and block your blocking or notifying them.<span id="more-87"></span></p>
<p>The JavaScript</p>
<p>This is done in two parts. The first block of code must be placed at the END of your page, just before the &lt;*/body*&gt;tag.</p>
<blockquote><p><code>var bd = document.getElementsByTagName("body");<br />
var pc = bd[0].innerHTML;<br />
bd[0].innerHTML = &#8220;&#8221;;</code></p></blockquote>
<p>What this code does is take the entire contents of your page, stuff it in a variable and then remove it. The reasons for this will be explained shortly.</p>
<p>The next thing we need to do is add this code to within your &lt;*head*&gt;&lt;*/head*&gt; tags.</p>
<p>var l = &#8220;abcdefghijklmnopqrstuvwxyz0123456789&#8243;;<br />
var dn;<br />
for(var i=0; i&lt;20; i++) dn += l.charAt(Math.round(Math.random()*l.length));<br />
var msg = &#8220;Put your message here - maybe something about how ad blocking threatens the free nature of the internet, or how people who block ads are essentially stealing the time, effort and money you put into providing your website.&#8221;;</p>
<blockquote><p><code>window.onload = function()<br />
{<br />
var b = document.getElementsByTagName("body");<br />
b[0].innerHTML = pc;</p>
<p>document.getElementById(&#8221;content&#8221;).innerHTML = &#8220;&lt;style type=&#8221;text/css&#8221; media=&#8221;all&#8221;&gt;#&#8221;+dn+&#8221; { padding: 4px; margin; 8px; background-color: #666; display: block; } #&#8221;+dn+&#8221; * { color: #FFF; }&lt;/style&gt;&#8221; + document.getElementById(&#8221;content&#8221;).innerHTML;</p>
<p>var z = document.getElementById(dn);</p>
<p>if(window._AdblockFiltered || z.offsetHeight &lt; 60 || z.style['display'] == &#8216;none&#8217;)<br />
{<br />
document.getElementById(dn).innerHTML = msg;<br />
}<br />
else if(document.getElementById(dn) == undefined || document.getElementById(dn) == null)<br />
{<br />
b[0].innerHTML = msg;<br />
}<br />
}<br />
</code></p></blockquote>
<p>This code does several things. The first thing it does is generate a unique, random identity for a containing the ad. This is to prevent FireFox users from applying custom CSS to hide both your ad and your message. If you hard-code an id, rest assured that plenty of ad blockers will also block your notice. Because they&#8217;re cool people like that.</p>
<p>After it creates the random id it puts the page&#8217;s content back where it originally was - remember we took it out at the end of the page? The reason we put it back in in the window.onload event is so that the same wonderful people who would block your ads would also override your javascript preventative measures - if they could. So, we take all the content out of the page, and if that function is allowed to run we put it back in.</p>
<p>The next step in the script is to setup our CSS styling for our notice. Because the id is generated randomly you can&#8217;t hard-code it in to your external CSS or stylings.</p>
<p>Then we get to the crux of it - the actual detection of whether a user is blocking the advertisements, and the behavior the browser should exhibit if they are.</p>
<p>The variable z becomes a shortcut to our div with the random id. The loop below is where it actually detects whether the ad has been blocked:</p>
<blockquote><p><code>if(window._AdblockFiltered || z.offsetHeight &lt; 60 || z.style['display'] == &#8216;none&#8217;)<br />
{<br />
document.getElementById(dn).innerHTML = msg;<br />
}<br />
else if(document.getElementById(dn) == undefined || document.getElementById(dn) == null)<br />
{<br />
b[0].innerHTML = msg;<br />
}</code></p></blockquote>
<p>The first thing you&#8217;ll notice is that AdBlock gets it&#8217;s own special mention. Fortunately, the authors made AdBlock set a property in the browser to say when ads were being blocked. That value will either be true, false or nothing. If it&#8217;s true then the user gets to see the message. The other conditions that will force the user to see the message there are if the height of &#8216;z&#8217; is less than 60, or if &#8216;z&#8217; has display: none set.</p>
<p>The else if let&#8217;s us do one more check - making sure that &#8216;z&#8217; exists. &#8216;z&#8217; is our div with the ad (or message to ad blockers) in it. If it doesn&#8217;t exist, the code above will replace the entire page&#8217;s content with the letter. Drastic, but boo hoo. People blocking advertisements make a conscious choice to bypass the only revenue stream 99% of the internet has available.</p>
<p>Now - if you know javascript you might be wondering where exactly &#8216;z&#8217; comes from. All we&#8217;ve done in the code is generate an id for &#8216;z&#8217;. We haven&#8217;t actually created it as an element on the page.</p>
<p>The third and final step is to create our &#8216;z&#8217; div element with our advertisement:</p>
<blockquote><p><code>&lt;script type="text/javascript"&gt;<br />
document.write("&lt;div id="" + dn + ""&gt;");<br />
&lt;/script&gt;</p>
<p>&lt;b&gt;&lt;---- put your adsense, or other ad code here -----&gt;&lt;/b&gt;</p>
<p>&lt;script type="text/javascript"&gt;<br />
document.write("&lt;/div&gt;");<br />
&lt;/script&gt;</code></p></blockquote>
<p>We now have placed JavaScript in 3 locations throughout the page - in the , just prior to the tag and where we place the actual ads.</p>
<p>The only simple way for a user to bypass the message and the advertisements is to turn off JavaScript. I doubt many people will bother. If you think a message is too subtle, you can modify the code to redirect people running ad blockers like so:</p>
<blockquote><p><code>if(window._AdblockFiltered || z.offsetHeight &lt; 60 || z.style['display'] == &#8216;none&#8217;)<br />
{<br />
document.location = &#8220;/no-ad-blockers-allowed.html&#8221;;<br />
}<br />
else if(document.getElementById(dn) == undefined || document.getElementById(dn) == null)<br />
{<br />
document.location = &#8220;/no-ad-blockers-allowed.html&#8221;;<br />
}</code></p></blockquote>
<p>Please remember though - part of what has sparked the irrational dislike of *all* ads is the unseemly behavior of *some* ads. If you use this method to ensure your user sees 3 &#8220;smiley&#8221; banners and &#8220;punch the [whatever]&#8220;, you are reinforcing what they&#8217;re fighting against - gaudy, annoying ads. If you use discrete advertising methods like AdSense or YPN, you can inform the users that there are no pop-ups / pop-unders, malicious or distracting ads, and hopefully they will unblock your site. `</p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-mods/bypass-ad-blockers/feed</wfw:commentRss>
		</item>
		<item>
		<title>Surf Unblocked - Free Proxy Server</title>
		<link>http://proxywebmasters.com/proxy-servers/surf-unblocked-free-proxy-server</link>
		<comments>http://proxywebmasters.com/proxy-servers/surf-unblocked-free-proxy-server#comments</comments>
		<pubDate>Wed, 03 Sep 2008 05:59:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Servers]]></category>

		<category><![CDATA[anonymous]]></category>

		<category><![CDATA[free proxy]]></category>

		<category><![CDATA[free web proxy]]></category>

		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=82</guid>
		<description><![CDATA[Surf Unblocked is a proxy server, aimed at providing people the freedom to surf anonymously online. We offer free proxy service, which will allow anyone in the world to visit websites anonymously and browse under our ip address. Our free proxy is very user friendly, very fast and secure, no pop up&#8217;s, no pop under [...]]]></description>
			<content:encoded><![CDATA[<p>Surf Unblocked is a proxy server, aimed at providing people the freedom to surf anonymously online. We offer free proxy service, which will allow anyone in the world to visit websites anonymously and browse under our ip address. Our free proxy is very user friendly, very fast and secure, no pop up&#8217;s, no pop under ads or other aggressive advertisement.</p>
<blockquote><p>We support the valid use of proxies in honest ways. If you want to surf from work, thats your business. On the other hand, people trying to avoid IP bans, or promote scams, are not really being honest, are they?</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-servers/surf-unblocked-free-proxy-server/feed</wfw:commentRss>
		</item>
		<item>
		<title>Sneaking Proxy - Surf Anonymously</title>
		<link>http://proxywebmasters.com/proxy-servers/sneaking-proxy-surf-anonymously</link>
		<comments>http://proxywebmasters.com/proxy-servers/sneaking-proxy-surf-anonymously#comments</comments>
		<pubDate>Wed, 03 Sep 2008 01:35:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Servers]]></category>

		<category><![CDATA[anonymous proxy]]></category>

		<category><![CDATA[free proxy]]></category>

		<category><![CDATA[proxy sites]]></category>

		<category><![CDATA[web proxy]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/?p=80</guid>
		<description><![CDATA[Using a free proxy like this is helpful for many reasons: security, data caching (to reduce bandwidth usage), and evading censorship. Using proxies insulates you from objectionable elements of webpages such as cookies, advertisements, and dynamic content like JavaScript, Java applets and ActiveX controls. This proxy can even encrypt your web communications, protecting you from [...]]]></description>
			<content:encoded><![CDATA[<p>Using a free proxy like this is helpful for many reasons: security, data caching (to reduce bandwidth usage), and evading censorship. Using proxies insulates you from objectionable elements of webpages such as cookies, advertisements, and dynamic content like JavaScript, Java applets and ActiveX controls. This proxy can even encrypt your web communications, protecting you from routine monitoring or even dedicated surveillance. Don&#8217;t allow your internet usage to be controlled and limited. While using this proxy, you are making yourself anonymous and freeing yourself from the restrictions of one server and instead accessing ours, bypassing all policies and allowing yourself to surf the web at will!</p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-servers/sneaking-proxy-surf-anonymously/feed</wfw:commentRss>
		</item>
		<item>
		<title>Mad Proxy - Myspace Proxy</title>
		<link>http://proxywebmasters.com/proxy-servers/mad-proxy-myspace-proxy</link>
		<comments>http://proxywebmasters.com/proxy-servers/mad-proxy-myspace-proxy#comments</comments>
		<pubDate>Tue, 02 Sep 2008 20:30:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Proxy Servers]]></category>

		<category><![CDATA[free proxy server]]></category>

		<category><![CDATA[myspace proxy]]></category>

		<category><![CDATA[proxies]]></category>

		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://proxywebmasters.com/proxy-server/mad-proxy-myspace-proxy</guid>
		<description><![CDATA[Browse the web securely with freedom with www.madproxy.net and access your favorite websites from anywhere, at your school or at your work. Its a quick and secure web based service which protects your online identity and privacy.
]]></description>
			<content:encoded><![CDATA[<p>Browse the web securely with freedom with www.madproxy.net and access your favorite websites from anywhere, at your school or at your work. Its a quick and secure web based service which protects your online identity and privacy.</p>
]]></content:encoded>
			<wfw:commentRss>http://proxywebmasters.com/proxy-servers/mad-proxy-myspace-proxy/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
