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
e0624664
Commit
e0624664
authored
Feb 18, 2012
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Plain Diff
Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer
upon malformed POST request.
parents
c39b5526
66f3cc6f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
Lib/SimpleXMLRPCServer.py
Lib/SimpleXMLRPCServer.py
+4
-1
Lib/test/test_xmlrpc.py
Lib/test/test_xmlrpc.py
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/SimpleXMLRPCServer.py
View file @
e0624664
...
...
@@ -486,7 +486,10 @@ class SimpleXMLRPCRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
L
=
[]
while
size_remaining
:
chunk_size
=
min
(
size_remaining
,
max_chunk_size
)
L
.
append
(
self
.
rfile
.
read
(
chunk_size
))
chunk
=
self
.
rfile
.
read
(
chunk_size
)
if
not
chunk
:
break
L
.
append
(
chunk
)
size_remaining
-=
len
(
L
[
-
1
])
data
=
''
.
join
(
L
)
...
...
Lib/test/test_xmlrpc.py
View file @
e0624664
...
...
@@ -589,6 +589,12 @@ class SimpleServerTestCase(BaseServerTestCase):
# This avoids waiting for the socket timeout.
self
.
test_simple1
()
def
test_partial_post
(
self
):
# Check that a partial POST doesn't make the server loop: issue #14001.
conn
=
httplib
.
HTTPConnection
(
ADDR
,
PORT
)
conn
.
request
(
'POST'
,
'/RPC2 HTTP/1.0
\
r
\
n
Content-Length: 100
\
r
\
n
\
r
\
n
bye'
)
conn
.
close
()
class
MultiPathServerTestCase
(
BaseServerTestCase
):
threadFunc
=
staticmethod
(
http_multi_server
)
request_count
=
2
...
...
Misc/NEWS
View file @
e0624664
...
...
@@ -93,6 +93,9 @@ Core and Builtins
Library
-------
- Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in
SimpleXMLRPCServer upon malformed POST request.
- Issue #2489: pty.spawn could consume 100% cpu when it encountered an EOF.
- Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().
...
...
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