summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-13 23:44:50 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-13 23:45:34 +0100
commit2128b696b87ed1b44aac0ee31deb94b0b777f7db (patch)
treeda759386017604a634c551a79490d5b1bc0f9f58
parenta23669220a6d45bfc01d5cf9b047eba42e772003 (diff)
downloadyoutube-dl-2128b696b87ed1b44aac0ee31deb94b0b777f7db.tar.gz
youtube-dl-2128b696b87ed1b44aac0ee31deb94b0b777f7db.tar.xz
youtube-dl-2128b696b87ed1b44aac0ee31deb94b0b777f7db.zip
[utils] Do not make an exception for SSLv3
SSLv3 is terminally vulnerable to POODLE; web browsers are currently deprecating/removing it.
Closes #4459, fixes #4294
-rw-r--r--youtube_dl/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index ac66f3de0..5e92bcc71 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -390,7 +390,6 @@ def formatSeconds(secs):
 def make_HTTPS_handler(opts_no_check_certificate, **kwargs):
     if hasattr(ssl, 'create_default_context'):  # Python >= 3.4 or 2.7.9
         context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
-        context.options &= ~ssl.OP_NO_SSLv3  # Allow older, not-as-secure SSLv3
         if opts_no_check_certificate:
             context.verify_mode = ssl.CERT_NONE
         try: