<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Proxy Blog</title>
	<atom:link href="http://blog.vectroproxy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vectroproxy.com</link>
	<description>Information and Resources for Proxy Users and Proxy Webmasters</description>
	<lastBuildDate>Tue, 31 Aug 2010 04:24:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Block Countries From Your Proxy Site</title>
		<link>http://blog.vectroproxy.com/2010/08/31/block-countries-proxy-site/</link>
		<comments>http://blog.vectroproxy.com/2010/08/31/block-countries-proxy-site/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 04:22:59 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Webmasters]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=226</guid>
		<description><![CDATA[Traffic to your proxy website from certain countries can overload the hosting server. Other times, certain countries simply do not generate enough revenue or ad clicks. Others have a particularly high rate of fraud. There may even be other reasons, depending on the situation. Blocking countries from accessing a proxy ...]]></description>
			<content:encoded><![CDATA[<p>Traffic to your proxy website from certain countries can overload the hosting server. Other times, certain countries simply do not generate enough revenue or ad clicks. Others have a particularly high rate of fraud. There may even be other reasons, depending on the situation. Blocking countries from accessing a proxy site is an issue that often comes up in the business. The most common seem to be China and Iran followed by Afghanistan. There are some who prefer not to add these restrictions, while others feel it is necessary.<span id="more-226"></span></p>
<p>There are two ways to achieve this. One is to install GeoIP on your server, or ask your host to install it for you if they do not already have it. The other way is to obtain a large list from <a href="http://www.blockacountry.com" target="_blank">Block a Country</a>.</p>
<p><strong>The GeoIP way on a Linux server. Place this code on your <a href="http://en.wikipedia.org/wiki/Htaccess" target="_blank">.htaccess</a> file:</strong></p>
<p><code>RewriteEngine on</p>
<p>SetEnvIf GEOIP_COUNTRY_CODE CN BlockCountry<br />
SetEnvIf GEOIP_COUNTRY_CODE IR BlockCountry<br />
Deny from env=BlockCountry</code></p>
<p>This would block China and Iran. Notice the use of 2 character <a href="http://www.maxmind.com/app/iso3166" target="_blank">ISO 3166 codes</a>. To add more entries, just create a new line. For example, if Taiwan (TW) were to be added, the end result would look like this:</p>
<p><code>RewriteEngine on</p>
<p>SetEnvIf GEOIP_COUNTRY_CODE CN BlockCountry<br />
SetEnvIf GEOIP_COUNTRY_CODE IR BlockCountry<br />
SetEnvIf GEOIP_COUNTRY_CODE TW BlockCountry<br />
Deny from env=BlockCountry</code></p>
<p><strong>If GeoIP is not an option:</strong></p>
<p>Use <a href="http://www.blockacountry.com" target="_blank">Block a Country</a> to generate a list of IPs to block. Copy and paste the list to your <a href="http://en.wikipedia.org/wiki/Htaccess" target="_blank">.htaccess</a> file.</p>
<p><a href="http://www.xproxyhost.com">Get proxy hosting with GeoIP, free advertising resources and outsanding tech support.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/08/31/block-countries-proxy-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change tmp Directory in Glype for Security</title>
		<link>http://blog.vectroproxy.com/2010/08/22/change-tmp-directory-glype-security/</link>
		<comments>http://blog.vectroproxy.com/2010/08/22/change-tmp-directory-glype-security/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 04:46:00 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Webmasters]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=224</guid>
		<description><![CDATA[Some Glype sites are configured to store cached pages, cookies and logs. If you have any of those 3 features enabled, it is a good idea to change the location of your Glype temporary directory to prevent against possible hacking. To do this, edit your includes/settings.php file and find this ...]]></description>
			<content:encoded><![CDATA[<p>Some Glype sites are configured to store cached pages, cookies and logs. If you have any of those 3 features enabled, it is a good idea to change the location of your Glype temporary directory to prevent against possible hacking. To do this, edit your includes/settings.php file and find this line:<span id="more-224"></span></p>
<p><code>$CONFIG['tmp_dir'] = GLYPE_ROOT . '/tmp/';</code></p>
<p>and replace it with this:</p>
<p><code>$CONFIG['tmp_dir'] = GLYPE_ROOT . '/newtmp/';</code></p>
<p>Just replace newtmp with the new name. The next step after you do this is to use FTP or SSH to rename the actual directory. Also, make sure the permissions are set so it is writable. If your host runs PHP as CGI, it is not necessary to make it world writable and is also more secure this way. If you have multiple Glype sites, it might even be a good idea to give each temp. dir. a different name.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/08/22/change-tmp-directory-glype-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Log PHPRoxy Users</title>
		<link>http://blog.vectroproxy.com/2010/07/18/log-phproxy-users/</link>
		<comments>http://blog.vectroproxy.com/2010/07/18/log-phproxy-users/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 10:50:40 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Webmasters]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=218</guid>
		<description><![CDATA[If you are comfortable modifying code, here is a quick cut-and-paste code tweak for PHProxy which logs the sites your users visit. This can come in handy to track misuse and block users which is important for keeping your script under control. It is usually a good idea to backup ...]]></description>
			<content:encoded><![CDATA[<p>If you are comfortable modifying code, here is a quick cut-and-paste code tweak for PHProxy which logs the sites your users visit. This can come in handy to track misuse and block users which is important for keeping your script under control. It is usually a good idea to backup your index.php file before making any changes to it.<span id="more-218"></span></p>
<p>Step 1: Open up index.php in the editor of your choice:</p>
<p>Step 2: Find this line 2-line block of code:</p>
<p><code>function url_parse($url, &amp; $container)<br />
{</code></p>
<p>and put this underneath it:</p>
<p><code>/* Begin Logging<br />
*/</code></p>
<p>$proxytime = date(&#8216;h:i:s A&#8217;);<br />
$proxydate = date(&#8216;d-m-Y&#8217;);<br />
$stuff = $_SERVER['REMOTE_ADDR'].&#8221;,&#8221;.$url.&#8221; , &#8220;.$proxydate.&#8221; , &#8220;.$proxytime.&#8221;\n&#8221;;<br />
$fp = fopen(&#8216;log.txt&#8217;,&#8221;a&#8221;);<br />
fwrite($fp,$stuff);<br />
fclose($fp);</p>
<p>/* End Logging<br />
*/</p>
<p>Step 3: Put a blank file named &#8216;log.txt&#8217; into your public_html directory so the script can write to it. Later on, you can download this file or view it on the web by going to http://www.yourdomain.com/log.txt and replace yourdomain.com with your actual domain name.</p>
<p>This will log all of the sites your users visit in CSV format. Like this:</p>
<p>&lt;IP ADDRESS&gt;,&lt;URL&gt; , &lt;DATE&gt; , &lt;TIME&gt;</p>
<p>It is a good idea to clear your log files every so often as they can increase in size and use up your disk space fast.</p>
<p><a href="http://www.xproxyhost.com">Get shared proxy hosting on a specially configured server and have this tweak done for you! Click here to find out more.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/07/18/log-phproxy-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent Hotlinking From Your Proxy Website and Save Bandwidth</title>
		<link>http://blog.vectroproxy.com/2010/07/03/208/</link>
		<comments>http://blog.vectroproxy.com/2010/07/03/208/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 19:45:15 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Webmasters]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=208</guid>
		<description><![CDATA[When someone hotlinks your proxy pages, it can eat precious bandwidth which costs money. This occurs when a user browses to a page via your web proxy, then copies the proxied URL and pastes it on a web page or forum. The hotlink protection built into PHPRoxy is extremely weak. ...]]></description>
			<content:encoded><![CDATA[<p>When someone hotlinks your proxy pages, it can eat precious bandwidth which costs money. This occurs when a user browses to a page via your web proxy, then copies the proxied URL and pastes it on a web page or forum.<span id="more-208"></span> The hotlink protection built into PHPRoxy is extremely weak. Glype&#8217;s anti-hotlink feature works better, but is not perfect. The purest way to block hotlinkers is at the server level. This is done by modifying (or creating) an .htaccess file. This only applies to Linux web servers. If you&#8217;re not sure, ask your host.</p>
<p>Here is the code to place in your .htaccess file. If you already have a file with this name, add the snippet to the very bottom. If not, just create a file with that name, add the code and upload it to the root directory of your website. Make sure to replace all 5 instances of example.com with your actual domain name. If you have one .htaccess file controlling all of your sites, paste the code as many times as you need.</p>
<p><code>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://example.com/.*$      [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://example.com$      [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://www.example.com/.*$      [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://www.example.com$      [NC]<br />
RewriteRule .*\.(.*.*.*gif|jpg|jpeg|png|bmp|tif|tiff|php)$ http://example.com/403.shtml [R,NC]</code></p>
<p>This code might block PHP pages from being linked to from outside sites. Your home page at the root of your domain name can be linked to without a problem. However, a link to a page such as example.com/page1.php from an outside sight may end up being blocked. Fortunately, most proxy sites don&#8217;t have any pages besides the homepage. If yours does, the solution is to place all extra .php pages (except index.php) into a separate directory (such as example.com/webpages/), then create a new .htaccess file for that directory only and use the following code:</p>
<p><code>RewriteEngine on<br />
RewriteRule ^.*$ -</code></p>
<p>Go back to the root directory and edit the original .htaccess file. Be sure to set up a search engine friendly redirect for each of the old pages to make sure search engines don&#8217;t lose track of them:</p>
<p><code>RewriteEngine on<br />
redirect 301 /page1.php http://example.com/webpages/page1.php</code></p>
<p>Be sure to change page1.php to the name of the actual page and change example.com to your actual domain name. Do this for each of your pages, putting each entry on a new line.</p>
<p><a href="http://www.xproxyhost.com/">PHP Proxy Hosting with Specialized Features and Tech Support</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/07/03/208/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oppressive Countries Block Web Sites</title>
		<link>http://blog.vectroproxy.com/2010/06/21/oppressive-countries-block-web-sites/</link>
		<comments>http://blog.vectroproxy.com/2010/06/21/oppressive-countries-block-web-sites/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 03:28:40 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Users]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=189</guid>
		<description><![CDATA[40 countries engage in Internet Censorship. They restrict access to many popular web sites which people in free countries can visit at any time and take for granted. Surprisingly, some American networking companies have installed systems in foreign countries which actually help to facilitate this violation of human rights.
The list ...]]></description>
			<content:encoded><![CDATA[<p>40 countries engage in Internet Censorship. They restrict access to many popular web sites which people in free countries can visit at any time and take for granted.<span id="more-189"></span> Surprisingly, some American networking companies have installed systems in foreign countries which actually help to facilitate this violation of human rights.</p>
<p>The list of countries know to engage in Internet Censorship is as follows:</p>
<ol>
<li>China *</li>
<li>Iran *</li>
<li>Myanmar</li>
<li>Syria</li>
<li>Tunisia</li>
<li>Vietnam *</li>
<li>Oman</li>
<li>Saudi Arabia *</li>
<li>Sudan</li>
<li>Tunisia *</li>
<li>United Arab Emirates</li>
<li>Yemen</li>
<li>North Korea *</li>
<li>South Korea (only blocks information about North Koerea).</li>
<li>Burma *</li>
<li>Cuba *</li>
<li>Egypt *</li>
<li>Syria *</li>
<li>Turkmenistan *</li>
<li>Uzbekistan *</li>
<li>Bahrain</li>
<li>Belarus</li>
<li>Belgium</li>
<li>Brazil</li>
<li>Chile</li>
<li>Columbia</li>
<li>Croatia</li>
<li>Estonia</li>
<li>Fiji</li>
<li>Pakistan</li>
<li>India</li>
<li>Malaysia</li>
<li>Jordan</li>
<li>Morocco</li>
<li>Norway</li>
<li>Russia</li>
<li>Singapore</li>
<li>Slovenia</li>
<li>Thailand</li>
<li>Turkey</li>
</ol>
<p>* = Reporters Without Borders considers these countries to be &#8220;enemies of the Internet&#8221;.</p>
<p>One of the biggest offenders is China. According to Amnesty International, Chinese Internet activity is heavily monitored and people can be arrested and in some cases jailed or executed for using free speech to spread scientific information and political views. It has become difficult for large U.S. companies to do business. Some of them have even bowed down and restricted access to Chinese users per government request.</p>
<p>The Burmese government blocks sites which express dissident views or opposition to their government. In particular, websites advocating democracy in Burma are targeted. For a brief period in 2007, all Internet access was completely disabled. Use of a modem without authorization can result in a 15 year prison sentence.</p>
<p>Cuba has the lowest rate of computer owners per inhabitant in Latin America. Citizens often access the Internet via public access points which are heavily monitored.</p>
<p>Iran not only restricts anti-government free speech, they also suppress women&#8217;s rights information. Pornography and political blogs are strictly prohibited as well. Punishments can include imprisonment. YouTube, Facebook, Twitter and Flickr are amongst the list of sites which have been blocked at one point or another.</p>
<p>North Korea controls Net activity enough that it is practically used primarily as a propaganda tool. All content hosted in the country is controlled by the government. Routine browsing activities are watched extensively.</p>
<p>These are just a few examples of censorship on the Internet and its influence on limiting Human Rights. The issue is extensive and has global reach. Proxies are essential in allowing the citizens of these oppressive nations to access information freely and share ideas.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/06/21/oppressive-countries-block-web-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Find a Proxy To Unblock Facebook</title>
		<link>http://blog.vectroproxy.com/2010/04/03/find-proxy-unblock-facebook/</link>
		<comments>http://blog.vectroproxy.com/2010/04/03/find-proxy-unblock-facebook/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 00:58:11 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Users]]></category>
		<category><![CDATA[glype]]></category>
		<category><![CDATA[unblock facebook]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=184</guid>
		<description><![CDATA[Unblocking Facebook is not as straight forward as it may seem when using a web-based proxy. There are a few factors which come into play. Two issues are the software being used and if JavaScript is available. There are a few common PHP scripts which are typically used by proxy ...]]></description>
			<content:encoded><![CDATA[<p>Unblocking Facebook is not as straight forward as it may seem when using a web-based proxy. There are a few factors which come into play. Two issues are the software being used and if JavaScript is available.<span id="more-184"></span> There are a few common PHP scripts which are typically used by proxy owners. They are Glype, PHProxy and Zelune. There are also some other less common ones like Surrogafier and Happy Proxy. Try to seek proxies which use Glype because the latest version comes standard with a module for Facebook functionality. In other cases, it is simply a matter of unchecking the &#8216;Disable Scripts&#8217; option and allowing cookies in the proxy settings. Try different configurations and see what works.</p>
<p>Example Glype Proxy &#8211; <a href="http://digitalproxy.info/">Unblock Websites</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/04/03/find-proxy-unblock-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Doesn&#8217;t YouTube Work On Many Web Proxies?</title>
		<link>http://blog.vectroproxy.com/2010/02/26/youtube-work-web-proxies/</link>
		<comments>http://blog.vectroproxy.com/2010/02/26/youtube-work-web-proxies/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 05:05:18 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Users]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=61</guid>
		<description><![CDATA[Some people try to access YouTube using a proxy just find that it doesn&#8217;t work. This is common. Web based proxies need to have a flash player built in which can decode and play the video. Most sites don&#8217;t have this, and those that once did found that it stopped ...]]></description>
			<content:encoded><![CDATA[<p>Some people try to access YouTube using a proxy just find that it doesn&#8217;t work. This is common. Web based proxies need to have a flash player built in which<span id="more-61"></span> can decode and play the video. Most sites don&#8217;t have this, and those that once did found that it stopped working after some time. This is because the streaming method use can change over time and the players need to be updated. There are a few webproxies which can play YouTube vids, but it is rare.</p>
<p><a href="http://vectroproxy.com/pages/tunnel.php">VectroTunnel lets you play YouTube videos</a> via your browser without having to visit any special sites first.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/02/26/youtube-work-web-proxies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Use Proxies To Do SEO</title>
		<link>http://blog.vectroproxy.com/2010/02/21/proxies-seo/</link>
		<comments>http://blog.vectroproxy.com/2010/02/21/proxies-seo/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 05:31:08 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Users]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=36</guid>
		<description><![CDATA[Many webmasters, even experienced ones, sometimes like to hide behind proxies when submitting their content to social bookmarking sites. This is not even done to reach the first page, but to gain backlinks which can be indexed by Google. digg and other services have changed their links to nofollow to ...]]></description>
			<content:encoded><![CDATA[<p>Many webmasters, even experienced ones, sometimes like to hide behind proxies when submitting their content to social bookmarking sites. This is not even done to reach the first page, but<span id="more-36"></span> to gain backlinks which can be indexed by Google. digg and other services have changed their links to nofollow to combat the recent flux of SEO spammers. This defeats the purpose of using it for search engine optimization in the first place. The bottom line is if the content is worth while and of quality, then it is a better idea to use your real account to submit it. Proxy IP addresses end up being banned in the long run, turning this method into a game of black-hat cat and mouse. For more tips on content quality, backlinks and social bookmarking, try joining some of the discussions at reputable webmaster forums like <a href="http://www.webtalkforums.com/" target="_blank">WebTalk Forums</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/02/21/proxies-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Use Your Shell Account To Tunnel Your Web Browsing (Linux Users)</title>
		<link>http://blog.vectroproxy.com/2010/02/21/shell-account-tunnel-web-browsing-linux-users/</link>
		<comments>http://blog.vectroproxy.com/2010/02/21/shell-account-tunnel-web-browsing-linux-users/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 05:30:42 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Users]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=34</guid>
		<description><![CDATA[OpenSSH users on Linux machines can connect to their shell account to open a secure connection, then use it to tunnel their web browser and other applications for security. This works with any SOCKS compatible program. To connect, first use one of these commands:
ssh -qTfnN -D 9853 username@example.com
(Just replace username ...]]></description>
			<content:encoded><![CDATA[<p>OpenSSH users on Linux machines can connect to their shell account to open a secure connection, then use it to tunnel their web browser and other applications for security. This<span id="more-34"></span> works with any SOCKS compatible program. To connect, first use one of these commands:</p>
<p>ssh -qTfnN -D 9853 <span style="color: red;">username</span>@<span style="color: red;">example.com</span><br />
(Just replace <span style="color: red;">username</span> with your username and <span style="color: red;">example.com</span> with the address of your shell provider. This will open the secure tunnel quietly in the background. Be sure to kill the process when you are finished using the tunnel.)</p>
<p>or&#8230;</p>
<p>ssh -D 9853 <span style="color: red;">username</span>@<span style="color: red;">example</span>.com<br />
(Just replace <span style="color: red;">username</span> with your username and <span style="color: red;">example.com</span> with the address of your shell provider. This will open the tunnel, but will not place it in the background.)</p>
<p>After it logs in, you will be asked for your password.</p>
<p>Required Next Step: Connect any SOCKS compatible applications to 127.0.0.1 on port 9853</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/02/21/shell-account-tunnel-web-browsing-linux-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Proxy Add-Ons for Firefox</title>
		<link>http://blog.vectroproxy.com/2010/02/21/proxy-add-ons-firefox/</link>
		<comments>http://blog.vectroproxy.com/2010/02/21/proxy-add-ons-firefox/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 05:29:59 +0000</pubDate>
		<dc:creator>Vectro</dc:creator>
				<category><![CDATA[Proxy Users]]></category>

		<guid isPermaLink="false">http://blog.vectroproxy.com/?p=32</guid>
		<description><![CDATA[Firefox has limited configuration options for private surfing. The 6 add-ons listed below make it even more configurable.
FoxyProxy &#8211; This is the most popular extension related to proxies with over over 7 million downloads. It allows Firefox to use different proxies based on the URLs you visit. It also supports ...]]></description>
			<content:encoded><![CDATA[<p>Firefox has limited configuration options for private surfing. The 6 add-ons listed below make it even more configurable.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2464" target="_blank">FoxyProxy</a> &#8211; This is the most popular extension related to proxies with over over<span id="more-32"></span> 7 million downloads. It allows Firefox to use different proxies based on the URLs you visit. It also supports 25 different languages.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/125" target="_blank">SwitchProxy</a> &#8211; This extension simply allows the proxy configuration to be changed on-the-fly.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1557" target="_blank">QuickProxy</a> &#8211; Perfect for enabling and disabling a single proxy with the click of a button.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/5833" target="_blank">Tor-Proxy.NET</a> &#8211; Use this one to randomly switch between different anonymizer services. It currently supports TOR, JonDos/JAP and I2P. The built-in Cookie blocker and JavaScript blocker add privacy.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/51740" target="_blank">Toggle Proxy</a> &#8211; Switches between two proxies using a toolbar.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2275" target="_blank">Torbutton</a> &#8211; Enable or disable your browser&#8217;s use of Tor.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectroproxy.com/2010/02/21/proxy-add-ons-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
