diff --git a/wikiteam3/utils/monkey_patch.py b/wikiteam3/utils/monkey_patch.py index 8c85c7c8..d8fdcaec 100644 --- a/wikiteam3/utils/monkey_patch.py +++ b/wikiteam3/utils/monkey_patch.py @@ -65,8 +65,8 @@ class WakeTLSAdapter(requests.adapters.HTTPAdapter): Workaround for bad SSL/TLS """ def init_poolmanager(self, connections, maxsize, block=False): - # https://www.openssl.org/docs/manmaster/man1/openssl-ciphers.html - ctx = create_urllib3_context(ciphers="ALL:COMPLMENTOFDEFAULT:eNULL:@SECLEVEL=0") + # https://docs.openssl.org/master/man1/openssl-ciphers/ + ctx = create_urllib3_context(ciphers="ALL:COMPLEMENTOFDEFAULT:COMPLEMENTOFALL:eNULL:@SECLEVEL=0") ctx.options &= ~ssl.OP_NO_TLSv1_3 & ~ssl.OP_NO_TLSv1_2 & ~ssl.OP_NO_TLSv1_1 & ~ssl.OP_NO_TLSv1 with warnings.catch_warnings():