Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
95884453
Commit
95884453
authored
Jul 05, 2013
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent zlib-based DoS when parsing cookie containing paste tokens.
Fixes LP #1094049.
parent
f560f5a0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
src/OFS/CopySupport.py
src/OFS/CopySupport.py
+7
-3
No files found.
src/OFS/CopySupport.py
View file @
95884453
...
...
@@ -23,7 +23,7 @@ from urllib import quote
from
urllib
import
unquote
import
warnings
from
zlib
import
compress
from
zlib
import
decompress
from
zlib
import
decompress
obj
import
transaction
from
AccessControl
import
ClassSecurityInfo
...
...
@@ -647,8 +647,12 @@ def absattr(attr):
def
_cb_encode
(
d
):
return
quote
(
compress
(
dumps
(
d
),
9
))
def
_cb_decode
(
s
):
return
loads
(
decompress
(
unquote
(
s
)))
def
_cb_decode
(
s
,
maxsize
=
8192
):
dec
=
decompressobj
()
data
=
dec
.
decompress
(
unquote
(
s
),
maxsize
)
if
dec
.
unconsumed_tail
:
raise
ValueError
return
loads
(
data
)
def
cookie_path
(
request
):
# Return a "path" value for use in a cookie that refers
...
...
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