Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c7a3bfec
Commit
c7a3bfec
authored
Jan 03, 2012
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
0880009f
7c77235a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
3 deletions
+34
-3
Lib/ssl.py
Lib/ssl.py
+10
-2
Lib/test/test_ssl.py
Lib/test/test_ssl.py
+21
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ssl.py
View file @
c7a3bfec
...
...
@@ -86,8 +86,9 @@ _PROTOCOL_NAMES = {
}
try
:
from
_ssl
import
PROTOCOL_SSLv2
_SSLv2_IF_EXISTS
=
PROTOCOL_SSLv2
except
ImportError
:
pass
_SSLv2_IF_EXISTS
=
None
else
:
_PROTOCOL_NAMES
[
PROTOCOL_SSLv2
]
=
"SSLv2"
...
...
@@ -98,6 +99,10 @@ import base64 # for DER-to-PEM translation
import
traceback
import
errno
# Disable weak or insecure ciphers by default
# (OpenSSL's default setting is 'DEFAULT:!aNULL:!eNULL')
_DEFAULT_CIPHERS
=
'DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2'
class
CertificateError
(
ValueError
):
pass
...
...
@@ -165,7 +170,10 @@ class SSLContext(_SSLContext):
__slots__ = ('
protocol
',)
def __new__(cls, protocol, *args, **kwargs):
return _SSLContext.__new__(cls, protocol)
self = _SSLContext.__new__(cls, protocol)
if protocol != _SSLv2_IF_EXISTS:
self.set_ciphers(_DEFAULT_CIPHERS)
return self
def __init__(self, protocol):
self.protocol = protocol
...
...
Lib/test/test_ssl.py
View file @
c7a3bfec
...
...
@@ -762,10 +762,11 @@ else:
try
:
self
.
sslconn
=
self
.
server
.
context
.
wrap_socket
(
self
.
sock
,
server_side
=
True
)
except
ssl
.
SSLError
:
except
ssl
.
SSLError
as
e
:
# XXX Various errors can have happened here, for example
# a mismatching protocol version, an invalid certificate,
# or a low-level bug. This should be made more discriminating.
self
.
server
.
conn_errors
.
append
(
e
)
if
self
.
server
.
chatty
:
handle_error
(
"
\
n
server: bad connection attempt from "
+
repr
(
self
.
addr
)
+
":
\
n
"
)
self
.
running
=
False
...
...
@@ -878,12 +879,14 @@ else:
self
.
port
=
support
.
bind_port
(
self
.
sock
)
self
.
flag
=
None
self
.
active
=
False
self
.
conn_errors
=
[]
threading
.
Thread
.
__init__
(
self
)
self
.
daemon
=
True
def
__enter__
(
self
):
self
.
start
(
threading
.
Event
())
self
.
flag
.
wait
()
return
self
def
__exit__
(
self
,
*
args
):
self
.
stop
()
...
...
@@ -1004,6 +1007,7 @@ else:
def
__enter__
(
self
):
self
.
start
(
threading
.
Event
())
self
.
flag
.
wait
()
return
self
def
__exit__
(
self
,
*
args
):
if
support
.
verbose
:
...
...
@@ -1604,6 +1608,22 @@ else:
t
.
join
()
server
.
close
()
def
test_default_ciphers
(
self
):
context
=
ssl
.
SSLContext
(
ssl
.
PROTOCOL_SSLv23
)
try
:
# Force a set of weak ciphers on our client context
context
.
set_ciphers
(
"DES"
)
except
ssl
.
SSLError
:
self
.
skipTest
(
"no DES cipher available"
)
with
ThreadedEchoServer
(
CERTFILE
,
ssl_version
=
ssl
.
PROTOCOL_SSLv23
,
chatty
=
False
)
as
server
:
with
socket
.
socket
()
as
sock
:
s
=
context
.
wrap_socket
(
sock
)
with
self
.
assertRaises
((
OSError
,
ssl
.
SSLError
)):
s
.
connect
((
HOST
,
server
.
port
))
self
.
assertIn
(
"no shared cipher"
,
str
(
server
.
conn_errors
[
0
]))
def
test_main
(
verbose
=
False
):
if
support
.
verbose
:
...
...
Misc/NEWS
View file @
c7a3bfec
...
...
@@ -97,6 +97,9 @@ Core and Builtins
Library
-------
- Issue #13636: Weak ciphers are now disabled by default in the ssl module
(except when SSLv2 is explicitly asked for).
- Issue #12798: Updated the mimetypes documentation.
- Issue #11006: Don't issue low level warning in subprocess when pipe2() fails.
...
...
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