惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - analysis

再上百度空间(此博客将不再更新,后续文章请访问我的百度空间:http://hi.baidu.com/insight ) unary,binary,ternary LoadRunner安装问题 Apache PHP 配置 - analysis 修改 EditPlus 2.30 在Windows资源管理器右键菜单中的快捷键字母 - analysis 安装 Java SE 6 Development Kit Widget 还是 Gadget "gtalk:" 启动方式分析 - analysis - 博客园 迷恋于gVim 充分利用Gmail中的Drafts功能 Google各项Web应用界面及技术的不统一性 怎样确认对方使用的是GoogleTalk还是Gmail with Chat或者其他非Talk客户端 系统软件和数据软件 代码,文档,程序 svn 练习 使用笔记 Google Notebook 缺陷 去除 迅雷 5 广告条 (版本 5.5.2.252) Modal和Modeless 金山词霸2007昨天发布
Firefox 2.0 配置文件中代理服务器设置参数的位置及含义
analysis · 2006-12-23 · via 博客园 - analysis

作者:analysis

首先使用Windows的"查找"功能在Firefox2.0配置文件夹(WindowsXP下默认位置:C:\Documents and Settings\User\Application Data\Mozilla\Firefox\Profiles\amtsqgjr.default(或者其他名称,没有验证过))下查找设置的代理的端口号"9666",查找到了文件" prefs.js",于是初步确定"代理服务器设置参数"在此文件中。

然后使用ProcessMonitor监视了一把,效果不明显,数据太多,基本上都是访问"C:\Documents and Settings\User\Application Data\Mozilla\Firefox\Profiles\amtsqgjr.default"的信息。

最后使用RegShot又验证了一把,基本确认参数就在文件"prefs.js"中。

严谨起见,使用Firefox修改了代理设置参数,保存了2份"prefs.js"文件,使用FC对比了一下,结果如下:
正在比较文件 prefsNo.js(不设代理) 和 PREFS.JS(设置代理)
***** prefsNo.js
user_pref("network.proxy.http_port", 9666);
user_pref("pref.advanced.images.disable_button.view_image", false);
***** PREFS.JS
user_pref("network.proxy.http_port", 9666);
user_pref("network.proxy.type", 1);
user_pref("pref.advanced.images.disable_button.view_image ", false);
*****

此时,可以确定是" user_pref("network.proxy.type", 1); "一句了。

然后使用相反的测试方法,手动修改

"prefs.js"配置文件,看是否在Firefox中产生了作用,结果证明只有在Firefox重新起动后才能起作用,并且要把"C:\Documents and Settings\user\Application Data\Mozilla\Firefox"下"profile.ini"文件中设置为"StartWithLastProfile=0"。