Closed
Description
openedon Feb 25, 2019
Notebook is setting an explicit version of SSL as the default here:
notebook/notebook/notebookapp.py
Line 1424 in bba82ca
This is overriding the default version for ssl of PROTOCOL_SSLv23
(which is now named PROTOCOL_TLS
). I think the ssl default is better as it is documented as
Selects the highest protocol version that both the client and server support. Despite the name, this option can select “TLS” protocols as well as “SSL”.
This comes up as TLS 1 is now considered poor, just like the thing that line was meant to protect against, and chrome has deprecated it: https://www.chromestatus.com/feature/5654791610957824.
Can we consider either removing that line and/or moving to be explicitly ssl.PROTOCOL_TLS
?
Activity