Pier Angelo Vendrame pushed to branch tor-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits: e18a0457 by Henry Wilkes at 2023-09-13T12:58:06+01:00 fixup! Bug 40562: Added Tor Browser preferences to 000-tor-browser.js
Bug 41906: Lock network.trr.mode to be explicitly off.
- - - - - 22685798 by Henry Wilkes at 2023-09-13T12:58:06+01:00 Bug 41906: Hide DNS over HTTPS preferences.
- - - - -
2 changed files:
- browser/app/profile/000-tor-browser.js - browser/components/preferences/privacy.inc.xhtml
Changes:
===================================== browser/app/profile/000-tor-browser.js ===================================== @@ -29,6 +29,9 @@ pref("network.proxy.failover_direct", false); pref("network.security.ports.banned", "", locked); pref("network.dns.disabled", true); // This should cover the #5741 patch for DNS leaks pref("network.http.max-persistent-connections-per-proxy", 256); +// Disable DNS over HTTPS. Set to explicitly off MODE_TRROFF = 5. +// See tor-browser#41906. +pref("network.trr.mode", 5, locked);
// Treat .onions as secure pref("dom.securecontext.allowlist_onions", true);
===================================== browser/components/preferences/privacy.inc.xhtml ===================================== @@ -1193,11 +1193,12 @@ <hbox id="DoHCategory" class="subcategory" hidden="true" - data-category="panePrivacy"> + data-category="panePrivacy" + data-hidden-from-search="true"> <html:h1 data-l10n-id="preferences-doh-header"/> </hbox>
-<groupbox id="dohBox" data-category="panePrivacy" data-subcategory="doh" hidden="true" class="highlighting-group"> +<groupbox id="dohBox" data-category="panePrivacy" data-subcategory="doh" data-hidden-from-search="true" hidden="true" class="highlighting-group"> <label class="search-header" searchkeywords="doh trr" hidden="true"><html:h2 data-l10n-id="preferences-doh-header"/></label> <vbox flex="1"> <html:span id="dohDescription" class="tail-with-learn-more" data-l10n-id="preferences-doh-description"></html:span>
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/faeaeb0...