From a53db09ca09aad901a5709a8c7cf01ac02ce69af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 30 May 2024 23:54:19 +0200 Subject: [PATCH] [artstation] disable TLS 1.2 ciphers by default (#5564, #5658) --- docs/configuration.rst | 4 ++-- gallery_dl/extractor/artstation.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index 54379858..522c2908 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -663,7 +663,7 @@ Example Description List of TLS/SSL cipher suites in - `OpenSSL cipher list format `__ + `OpenSSL cipher list format `__ to be passed to `ssl.SSLContext.set_ciphers() `__ @@ -673,7 +673,7 @@ extractor.*.tls12 Type ``bool`` Default - * ``false``: ``patreon``, ``pixiv:series`` + * ``false``: ``artstation``, ``patreon``, ``pixiv:series`` * ``true``: otherwise Description Allow selecting TLS 1.2 cipher suites. diff --git a/gallery_dl/extractor/artstation.py b/gallery_dl/extractor/artstation.py index 49fde7b2..ce1a78d5 100644 --- a/gallery_dl/extractor/artstation.py +++ b/gallery_dl/extractor/artstation.py @@ -22,6 +22,7 @@ class ArtstationExtractor(Extractor): directory_fmt = ("{category}", "{userinfo[username]}") archive_fmt = "{asset[id]}" browser = "firefox" + tls12 = False root = "https://www.artstation.com" def __init__(self, match):