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
66f3cc6f
Commit
66f3cc6f
authored
Feb 18, 2012
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer
upon malformed POST request.
parent
d358e055
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
Lib/SimpleXMLRPCServer.py
Lib/SimpleXMLRPCServer.py
+4
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/SimpleXMLRPCServer.py
View file @
66f3cc6f
...
...
@@ -459,7 +459,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
)
...
...
Misc/NEWS
View file @
66f3cc6f
...
...
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
- Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in
SimpleXMLRPCServer upon malformed POST request.
- Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC
IV attack countermeasure.
...
...
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