[tor-commits] [tor-browser/tor-browser-24.3.0esr-1] fixup! Tor Browser's Firefox preference overrides.

mikeperry at torproject.org mikeperry at torproject.org
Thu Feb 27 23:47:53 UTC 2014


commit 8ba9d8e371ce794f49cdd06128c6889c15563b17
Author: Mike Perry <mikeperry-git at torproject.org>
Date:   Thu Feb 27 15:46:40 2014 -0800

    fixup! Tor Browser's Firefox preference overrides.
    
    Bug #10237: Disable the media cache to prevent disk leaks.
    Bug #10703: Force the default charset to avoid locale fingerprinting.
---
 browser/app/profile/000-tor-browser.js |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 93725ee..7e2efc9 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -30,6 +30,7 @@ pref("signon.rememberSignons", false);
 pref("browser.formfill.enable", false);
 pref("signon.autofillForms", false);
 pref("browser.sessionstore.privacy_level", 2);
+pref("media.cache_size", 0);
 
 // Misc privacy: Remote
 pref("browser.send_pings", false);
@@ -70,6 +71,7 @@ pref("general.useragent.vendorSub", "");
 pref("dom.enable_performance", false);
 pref("plugin.expose_full_path", false);
 pref("browser.zoom.siteSpecific", false);
+pref("intl.charset.default", "windows-1252");
 // pref("intl.accept_languages", "en-us, en"); // Set by Torbutton
 // pref("intl.accept_charsets", "iso-8859-1,*,utf-8"); // Set by Torbutton
 // pref("intl.charsetmenu.browser.cache", "UTF-8"); // Set by Torbutton



More information about the tor-commits mailing list