Skip to content

Commit

Permalink
[artstation] disable TLS 1.2 ciphers by default (#5564, #5658)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed May 30, 2024
1 parent 7ba2b20 commit a53db09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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>`__

Expand All @@ -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.
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/artstation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit a53db09

Please sign in to comment.