[artstation] disable TLS 1.2 ciphers by default (#5564, #5658)

pull/5667/head
Mike Fährmann 4 months ago
parent 7ba2b209f1
commit a53db09ca0
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -663,7 +663,7 @@ Example
Description
List of TLS/SSL cipher suites in
`OpenSSL cipher list format <https://www.openssl.org/docs/manmaster/man1/openssl-ciphers.html>`__
`OpenSSL cipher list format <https://www.openssl.org/docs/manmaster/man1/openssl-ciphers.html#CIPHER-LIST-FORMAT>`__
to be passed to
`ssl.SSLContext.set_ciphers() <https://docs.python.org/3/library/ssl.html#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.

@ -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):

Loading…
Cancel
Save