[tor-commits] [tor-browser-bundle/master] Use the new security.ssl.disable_session_identifiers pref.

mikeperry at torproject.org mikeperry at torproject.org
Tue Nov 4 04:17:15 UTC 2014


commit a609ff09f7ba996ac51da49bdcef3ee796d58959
Author: David Fifield <david at bamsoftware.com>
Date:   Sun Oct 26 19:06:17 2014 +0000

    Use the new security.ssl.disable_session_identifiers pref.
    
    This is to reenable the TLS session tickets that are disabled by Tor
    Browser, so the TLS client hello matches that of stock Firefox.
    
    https://trac.torproject.org/projects/tor/ticket/13442#comment:1
    https://trac.torproject.org/projects/tor/ticket/11183#comment:9
    
    The previously used pref security.enable_tls_session_tickets has been
    removed and replaced by security.ssl.disable_session_identifiers.
    
    https://bugzilla.mozilla.org/show_bug.cgi?id=917049
    https://bugzilla.mozilla.org/show_bug.cgi?id=967977
    https://trac.torproject.org/projects/tor/ticket/10822
    https://gitweb.torproject.org/tor-browser.git/commitdiff/5524ae43780e4738310852cc2a0b7c5d25aa69ed
---
 Bundle-Data/PTConfigs/meek-http-helper-user.js |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Bundle-Data/PTConfigs/meek-http-helper-user.js b/Bundle-Data/PTConfigs/meek-http-helper-user.js
index cddc237..eb94d1d 100644
--- a/Bundle-Data/PTConfigs/meek-http-helper-user.js
+++ b/Bundle-Data/PTConfigs/meek-http-helper-user.js
@@ -6,8 +6,8 @@ user_pref("browser.dom.window.dump.enabled", true);
 
 // Enable TLS session tickets (disabled by default in Tor Browser). Otherwise
 // there is a missing TLS extension.
-// https://trac.torproject.org/projects/tor/ticket/11183#comment:9
-user_pref("security.enable_tls_session_tickets", true);
+// https://trac.torproject.org/projects/tor/ticket/13442#comment:1
+user_pref("security.ssl.disable_session_identifiers", false);
 
 // Disable safe mode. In case of a crash, we don't want to prompt for a
 // safe-mode browser that has extensions disabled and no proxy.





More information about the tor-commits mailing list