Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

How to disabel users from changing your homepage and downloading programs

  • 3 回覆
  • 1 有這個問題
  • 7 次檢視
  • 最近回覆由 cor-el

more options

Hello:

 I would like to request your guidance. Lately, our community computers, we are having the unpleasant problem of getting Trojans and hijacks from users downloading programs and changing our homepage. We would like to know if there is a way to disable users from making changes. 

We hope you can kindly instruct us in how can we prevent and secure our computers. Your help is very much appreciated.

Hello: I would like to request your guidance. Lately, our community computers, we are having the unpleasant problem of getting Trojans and hijacks from users downloading programs and changing our homepage. We would like to know if there is a way to disable users from making changes. We hope you can kindly instruct us in how can we prevent and secure our computers. Your help is very much appreciated.

所有回覆 (3)

more options

Take a look at the Kiosk extensions available at AMO for Firefox.
https://addons.mozilla.org/en-US/firefox/search/?q=Kiosk&appver=20.0&platform=windows

more options

There is a feature to "lock" preferences such as the home page. This article has more information: http://kb.mozillazine.org/Lock_Prefs. However, extensions can override that once they fire up, so I'm not sure how effective it will be.

Ideally every user would come to a fresh, clean, trustworthy install of Firefox. Could you use virtual machine/sandboxing technology to launch an isolated instance of Firefox that is destroyed when you exit the browser? Windows 7 Professional may include something along these lines, or perhaps a third party product could help.

more options

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

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

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

You can also look at this extension:

You can hide the extension in the Add-ons manager with code in userContent.css to make it more difficult to remove or disable the extension.

Open the extension's XPI (ZIP) archive and look in the install.rdf file to see the ID (<em:id>xxx</em:id>) of that extension, GUID between curly brackets {} or an email address if that is used as ID.

@-moz-document url(about:addons){
#addons-page richlistitem[value="GUID"] { display:none!important; }
}

See also: