朝廷阅兵在即,稳定要紧,自宣和六年以来,杀伐决断,无所不用其极。
上有所好,下必甚焉。大墙之内,小墙林立。在家上网,要翻GFW,到了公司,还得翻LGFW(Less Great Firewall)。银河系是大,可像模像样的网站也就那么几个,被功夫网拦掉几个,再被小功夫网滤掉几个,掰着手指头一算,好么,还得搭上几个。
PAC一直是我的交 通协管,原来也就是和功夫网作阵地战,因此配置得简单一些。但现在要判断是在家还是在公司,从而自动决定是否将一些被公司网关过滤掉的网站加入使用代理访 问的网址列表,并决定是使用公司网关作为代理来访问没有被屏蔽的网址还是直接访问互联网,甚至还要对公司内部网站使用直接访问的方式。因此重写了PAC, 从此两点一线间,可以无缝切换了。
JAVASCRIPT:
- function FindProxyForURL(url, host){
- url = url.toLowerCase();
- host = host.toLowerCase();
- //Your Freedom
-
- //Sufferers under the despotic power of GFW
- var sufferers = new Array();
-
- //As I say, if the despotic power of GFW disappoints me, holding a candle to the devil outrages me.
- var furiesOfYuri = new Array();
-
- var gateway = "DIRECT";
- //If my IP address is as below, it indicates that I am in the office.
- if(myIpAddress() == '10.1.29.29'){
- //Use the gateway of my company's network to visit the internet
- //Append URLs blocked by the company to the sufferers
- sufferers = sufferers.concat(furiesOfYuri);
- }
-
- //No one can take my freedom away
- for(var i = 0;i <sufferers.length;i++){
- if(shExpMatch(host,sufferers[i])){
- return freedom;
- }
- }
-
- if(isPlainHostName(host)){
- //Visit local network directly
- return "DIRECT";
- }else{
- //Visit other URLs by gateway, which either indicates visiting directly at home or by the gateway of company in my office
- return gateway;
- }
- }
--
Posted By GFW Blog to GFW BLOG at 9/11/2009 05:12:00 P
--~--~---------~--~----~------------~-------~--~----~
1、请点击www.chinagfw.org访问我们,订阅地址:http://feeds2.feedburner.com/chinagfwblog。2、需要Psiphon2注册邀请的朋友,请向english@sesawe.net发送电子邮件请求,说明 "can I have psiphon2 access" 并告诉您所在的国家。也可以使用Twitter Direct Messages或登陆Psiphon网站直接向Psiphon索取使用邀请。3、GFW Blog现提供最新翻墙工具下载(地址一、二、三),翻墙(突破网络封锁)方法介绍请见本站anti-censorship部分。4、本站热烈欢迎各位朋友投稿或推荐文章,请发邮件至chinagfwblog[at]gmail.com。5、敬请关注、支持、参与Sesawe和黑箱监管集体诉讼。
To unsubscribe from this group, send email to
gfw-blog+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/gfw-blog?hl=zh-CN
-~----------~----~----~----~------~----~------~--~---
没有评论:
发表评论