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
25ae42be
Commit
25ae42be
authored
Feb 20, 2013
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Defend against minidom-based DoS in webdav.
Patch from Christian Heimes. Addresses LP #1114688.
parent
c12ebd20
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
13 deletions
+71
-13
doc/CHANGES.rst
doc/CHANGES.rst
+3
-0
src/webdav/tests/test_xmltools.py
src/webdav/tests/test_xmltools.py
+34
-11
src/webdav/xmltools.py
src/webdav/xmltools.py
+34
-2
No files found.
doc/CHANGES.rst
View file @
25ae42be
...
...
@@ -8,6 +8,9 @@ http://docs.zope.org/zope2/releases/.
2.12.27 (unreleased)
--------------------
- LP #1114688: Defend against minidom-based DoS in webdav. (Patch from
Christian Heimes).
- LP #978980: Protect views of ZPT source with 'View Management Screens'
permision.
...
...
src/webdav/tests/test_xmltools.py
View file @
25ae42be
import
unittest
class
TestNode
(
unittest
.
TestCase
):
class
NodeTests
(
unittest
.
TestCase
):
def
_getTargetClass
(
self
):
from
webdav.xmltools
import
Node
return
Node
def
_makeOne
(
self
,
wrapped
):
klass
=
self
.
_getTargetClass
()
return
klass
(
wrapped
)
return
self
.
_getTargetClass
()(
wrapped
)
def
test_remove_namespace_attrs
(
self
):
""" A method added in Zope 2.11 which removes any attributes
which appear to be XML namespace declarations """
class
DummyMinidomNode
:
class
DummyMinidomNode
(
object
):
def
__init__
(
self
):
self
.
attributes
=
{
'xmlns:foo'
:
'foo'
,
'xmlns'
:
'bar'
,
'a'
:
'b'
}
def
hasAttributes
(
self
):
...
...
@@ -27,10 +24,36 @@ class TestNode(unittest.TestCase):
self
.
assertEqual
(
wrapped
.
attributes
,
{
'a'
:
'b'
})
class
XmlParserTests
(
unittest
.
TestCase
):
def
_getTargetClass
(
self
):
from
webdav.xmltools
import
XmlParser
return
XmlParser
def
_makeOne
(
self
):
return
self
.
_getTargetClass
()()
def
test_parse_rejects_entities
(
self
):
XML
=
'
\
n
'
.
join
([
'<!DOCTYPE dt_test ['
,
'<!ENTITY entity "1234567890" >'
,
']>'
,
'<test>&entity;</test>'
])
parser
=
self
.
_makeOne
()
self
.
assertRaises
(
ValueError
,
parser
.
parse
,
XML
)
def
test_parse_rejects_doctype_wo_entities
(
self
):
XML
=
'
\
n
'
.
join
([
'<!DOCTYPE dt_test []>'
,
'<test/>'
])
parser
=
self
.
_makeOne
()
self
.
assertRaises
(
ValueError
,
parser
.
parse
,
XML
)
def
test_suite
():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
TestNode
),
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
unittest
.
makeSuite
(
NodeTests
),
unittest
.
makeSuite
(
XmlParserTests
),
))
src/webdav/xmltools.py
View file @
25ae42be
...
...
@@ -36,7 +36,9 @@ TODO:
from
StringIO
import
StringIO
from
xml.dom
import
minidom
from
xml.sax.saxutils
import
escape
as
_escape
,
unescape
as
_unescape
from
xml.sax.expatreader
import
ExpatParser
from
xml.sax.saxutils
import
escape
as
_escape
from
xml.sax.saxutils
import
unescape
as
_unescape
escape_entities
=
{
'"'
:
'"'
,
"'"
:
'''
,
...
...
@@ -171,6 +173,36 @@ class Element(Node):
writer
.
write
(
value
)
return
writer
.
getvalue
()
class
ProtectedExpatParser
(
ExpatParser
):
""" See https://bugs.launchpad.net/zope2/+bug/1114688
"""
def
__init__
(
self
,
forbid_dtd
=
True
,
forbid_entities
=
True
,
*
args
,
**
kwargs
):
# Python 2.x old style class
ExpatParser
.
__init__
(
self
,
*
args
,
**
kwargs
)
self
.
forbid_dtd
=
forbid_dtd
self
.
forbid_entities
=
forbid_entities
def
start_doctype_decl
(
self
,
name
,
sysid
,
pubid
,
has_internal_subset
):
raise
ValueError
(
"Inline DTD forbidden"
)
def
entity_decl
(
self
,
entityName
,
is_parameter_entity
,
value
,
base
,
systemId
,
publicId
,
notationName
):
raise
ValueError
(
"<!ENTITY> forbidden"
)
def
unparsed_entity_decl
(
self
,
name
,
base
,
sysid
,
pubid
,
notation_name
):
# expat 1.2
raise
ValueError
(
"<!ENTITY> forbidden"
)
def
reset
(
self
):
ExpatParser
.
reset
(
self
)
if
self
.
forbid_dtd
:
self
.
_parser
.
StartDoctypeDeclHandler
=
self
.
start_doctype_decl
if
self
.
forbid_entities
:
self
.
_parser
.
EntityDeclHandler
=
self
.
entity_decl
self
.
_parser
.
UnparsedEntityDeclHandler
=
self
.
unparsed_entity_decl
class
XmlParser
:
""" Simple wrapper around minidom to support the required
interfaces for zope.webdav
...
...
@@ -182,5 +214,5 @@ class XmlParser:
pass
def
parse
(
self
,
data
):
self
.
dom
=
minidom
.
parseString
(
data
)
self
.
dom
=
minidom
.
parseString
(
data
,
parser
=
ProtectedExpatParser
()
)
return
Node
(
self
.
dom
)
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