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
578139ba
Commit
578139ba
authored
Jul 05, 2013
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent arbitrary redirections via faked "CANCEL" buttons.
Fixes LP #1094144.
parent
b249b0dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
7 deletions
+20
-7
doc/CHANGES.rst
doc/CHANGES.rst
+2
-0
src/ZPublisher/Publish.py
src/ZPublisher/Publish.py
+18
-7
No files found.
doc/CHANGES.rst
View file @
578139ba
...
...
@@ -8,6 +8,8 @@ http://docs.zope.org/zope2/
2.12.28 (unreleased)
--------------------
- LP #1094144: prevent arbitrary redirections via faked "CANCEL" buttons.
- LP #1094221: add permissions to some unprotected methods of
``OFS.ObjectManager``
...
...
src/ZPublisher/Publish.py
View file @
578139ba
...
...
@@ -10,12 +10,13 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
__doc__
=
"""Python Object Publisher -- Publish Python objects on web servers
$Id$"""
import
sys
,
os
"""Python Object Publisher -- Publish Python objects on web servers
"""
import
os
import
sys
import
transaction
from
urlparse
import
urlparse
from
Response
import
Response
from
Request
import
Request
from
maybe_lock
import
allocate_lock
...
...
@@ -90,8 +91,18 @@ def publish(request, module_name, after_list, debug=0,
response
=
request
.
response
# First check for "cancel" redirect:
if
request_get
(
'SUBMIT'
,
''
).
strip
().
lower
()
==
'cancel'
:
cancel
=
request_get
(
'CANCEL_ACTION'
,
''
)
if
request_get
(
'SUBMIT'
,
''
).
strip
().
lower
()
==
'cancel'
:
cancel
=
request_get
(
'CANCEL_ACTION'
,
''
)
if
cancel
:
# Relative URLs aren't part of the spec, but are accepted by
# some browsers.
for
part
,
base
in
zip
(
urlparse
(
cancel
)[:
3
],
urlparse
(
request
[
'BASE1'
])[:
3
]):
if
not
part
:
continue
if
not
part
.
startswith
(
base
):
cancel
=
''
break
if
cancel
:
raise
Redirect
,
cancel
...
...
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