Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
e82c0344
Kaydet (Commit)
e82c0344
authored
Eyl 15, 2017
tarafından
Christian Heimes
Kaydeden (comit)
GitHub
Eyl 15, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531)
Signed-off-by:
Christian Heimes
<
christian@python.org
>
üst
a170fa16
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
8 deletions
+41
-8
ssl.rst
Doc/library/ssl.rst
+11
-1
test_ssl.py
Lib/test/test_ssl.py
+24
-3
2017-09-13-07-37-20.bpo-31431.dj994R.rst
...S.d/next/Library/2017-09-13-07-37-20.bpo-31431.dj994R.rst
+2
-0
_ssl.c
Modules/_ssl.c
+4
-4
No files found.
Doc/library/ssl.rst
Dosyayı görüntüle @
e82c0344
...
...
@@ -1674,7 +1674,10 @@ to speed up repeated connections from the same clients.
:meth:`SSLSocket.do_handshake`. The context's
:attr:`~SSLContext.verify_mode` must be set to :data:`CERT_OPTIONAL` or
:data:`CERT_REQUIRED`, and you must pass *server_hostname* to
:meth:`~SSLContext.wrap_socket` in order to match the hostname.
:meth:`~SSLContext.wrap_socket` in order to match the hostname. Enabling
hostname checking automatically sets :attr:`~SSLContext.verify_mode` from
:data:`CERT_NONE` to :data:`CERT_REQUIRED`. It cannot be set back to
:data:`CERT_NONE` as long as hostname checking is enabled.
Example::
...
...
@@ -1691,6 +1694,13 @@ to speed up repeated connections from the same clients.
.. versionadded:: 3.4
.. versionchanged:: 3.7
:attr:`~SSLContext.verify_mode` is now automatically changed
to :data:`CERT_REQUIRED` when hostname checking is enabled and
:attr:`~SSLContext.verify_mode` is :data:`CERT_NONE`. Previously
the same operation would have failed with a :exc:`ValueError`.
.. note::
This features requires OpenSSL 0.9.8f or newer.
...
...
Lib/test/test_ssl.py
Dosyayı görüntüle @
e82c0344
...
...
@@ -1363,24 +1363,45 @@ class ContextTests(unittest.TestCase):
def
test_check_hostname
(
self
):
ctx
=
ssl
.
SSLContext
(
ssl
.
PROTOCOL_TLS
)
self
.
assertFalse
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_NONE
)
# Requires CERT_REQUIRED or CERT_OPTIONAL
with
self
.
assertRaises
(
ValueError
):
ctx
.
check_hostname
=
True
# Auto set CERT_REQUIRED
ctx
.
check_hostname
=
True
self
.
assertTrue
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_REQUIRED
)
ctx
.
check_hostname
=
False
ctx
.
verify_mode
=
ssl
.
CERT_REQUIRED
self
.
assertFalse
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_REQUIRED
)
# Changing verify_mode does not affect check_hostname
ctx
.
check_hostname
=
False
ctx
.
verify_mode
=
ssl
.
CERT_NONE
ctx
.
check_hostname
=
False
self
.
assertFalse
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_NONE
)
# Auto set
ctx
.
check_hostname
=
True
self
.
assertTrue
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_REQUIRED
)
ctx
.
check_hostname
=
False
ctx
.
verify_mode
=
ssl
.
CERT_OPTIONAL
ctx
.
check_hostname
=
False
self
.
assertFalse
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_OPTIONAL
)
# keep CERT_OPTIONAL
ctx
.
check_hostname
=
True
self
.
assertTrue
(
ctx
.
check_hostname
)
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_OPTIONAL
)
# Cannot set CERT_NONE with check_hostname enabled
with
self
.
assertRaises
(
ValueError
):
ctx
.
verify_mode
=
ssl
.
CERT_NONE
ctx
.
check_hostname
=
False
self
.
assertFalse
(
ctx
.
check_hostname
)
ctx
.
verify_mode
=
ssl
.
CERT_NONE
self
.
assertEqual
(
ctx
.
verify_mode
,
ssl
.
CERT_NONE
)
def
test_context_client_server
(
self
):
# PROTOCOL_TLS_CLIENT has sane defaults
...
...
Misc/NEWS.d/next/Library/2017-09-13-07-37-20.bpo-31431.dj994R.rst
0 → 100644
Dosyayı görüntüle @
e82c0344
SSLContext.check_hostname now automatically sets SSLContext.verify_mode to
ssl.CERT_REQUIRED instead of failing with a ValueError.
Modules/_ssl.c
Dosyayı görüntüle @
e82c0344
...
...
@@ -3227,10 +3227,10 @@ set_check_hostname(PySSLContext *self, PyObject *arg, void *c)
return
-
1
;
if
(
check_hostname
&&
SSL_CTX_get_verify_mode
(
self
->
ctx
)
==
SSL_VERIFY_NONE
)
{
PyErr_SetString
(
PyExc_ValueError
,
"check_hostname needs a SSL context with either "
"CERT_OPTIONAL or CERT_REQUIRED"
)
;
return
-
1
;
/* check_hostname = True sets verify_mode = CERT_REQUIRED */
if
(
_set_verify_mode
(
self
->
ctx
,
PY_SSL_CERT_REQUIRED
)
==
-
1
)
{
return
-
1
;
}
}
self
->
check_hostname
=
check_hostname
;
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment