搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Disable history and password saving for all users via console and task bar drop down

  • 2 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I am trying to find out how to disable the browsing history and ability to save passwords via console commands or editing a config file for CentOS 6.5+. I have tried many options, and have it only partially working.

Settings work when launched via console (/usr/bin/firefox, or just firefox) by adding the following to /usr/lib64/firefox/defaults/preferences/all-linux.js: pref("browser.privatebrowsing.autostart", true); pref("disable.password.save", true); pref("places.history.enabled", false);

However, these settings do not affect firefox when launched via the task bar drop down (Applications > Internet > Firefox Web Browser). I can manually edit the menu item by right-clicking on Applications on the task bar, but I need to have a way that I can change it via console, so it can be scripted for security hardening purposes.

Anyone have any ideas on how to get this to work?? Thanks in advance.

I am trying to find out how to disable the browsing history and ability to save passwords via console commands or editing a config file for CentOS 6.5+. I have tried many options, and have it only partially working. Settings work when launched via console (/usr/bin/firefox, or just firefox) by adding the following to /usr/lib64/firefox/defaults/preferences/all-linux.js: pref("browser.privatebrowsing.autostart", true); pref("disable.password.save", true); pref("places.history.enabled", false); However, these settings do not affect firefox when launched via the task bar drop down (Applications > Internet > Firefox Web Browser). I can manually edit the menu item by right-clicking on Applications on the task bar, but I need to have a way that I can change it via console, so it can be scripted for security hardening purposes. Anyone have any ideas on how to get this to work?? Thanks in advance.

所有回复 (2)

more options

hi xion824, please refer to the guide at http://kb.mozillazine.org/Locking_preferences on how to deploy/lock certain preferences. in addition, please note that the right preference for disabling the storage of passwords is signon.rememberSignons (has to be set to false in this case).

more options

Note that a pref() call sets the pref on each Firefox start and that users are still able to make changes for the current session.

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

See also Configuration: