mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
[WebUI] Security update for POODLE vulnerability
WebUI with HTTPS enabled is vulnerable to POODLE (CVE-2014-3566), so switch from SSLv3 to TLSv1.
This commit is contained in:
parent
d3f47097c1
commit
26f5be1760
1 changed files with 1 additions and 1 deletions
|
@ -584,7 +584,7 @@ class ServerContextFactory:
|
||||||
|
|
||||||
def getContext(self):
|
def getContext(self):
|
||||||
"""Creates an SSL context."""
|
"""Creates an SSL context."""
|
||||||
ctx = SSL.Context(SSL.SSLv3_METHOD)
|
ctx = SSL.Context(SSL.TLSv1_METHOD)
|
||||||
deluge_web = component.get("DelugeWeb")
|
deluge_web = component.get("DelugeWeb")
|
||||||
log.debug("Enabling SSL using:")
|
log.debug("Enabling SSL using:")
|
||||||
log.debug("Pkey: %s", deluge_web.pkey)
|
log.debug("Pkey: %s", deluge_web.pkey)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue