Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zope.security-3.7.4
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
Boxiang Sun
zope.security-3.7.4
Commits
28eb4721
Commit
28eb4721
authored
Oct 07, 2016
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable RExpression and replace compile by default Python compile function.
parent
d29dda25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
70 deletions
+72
-70
src/zope/security/untrustedpython/rcompile.py
src/zope/security/untrustedpython/rcompile.py
+72
-70
No files found.
src/zope/security/untrustedpython/rcompile.py
View file @
28eb4721
...
...
@@ -18,80 +18,82 @@ Only 'eval' is supported at this time.
$Id: rcompile.py 70826 2006-10-20 03:41:16Z baijum $
"""
import
compiler.pycodegen
#
import compiler.pycodegen
import
RestrictedPython.RCompile
from
RestrictedPython.SelectCompiler
import
ast
,
OP_ASSIGN
,
OP_DELETE
,
OP_APPLY
#
from RestrictedPython.SelectCompiler import ast, OP_ASSIGN, OP_DELETE, OP_APPLY
def
compile
(
text
,
filename
,
mode
):
if
not
isinstance
(
text
,
basestring
):
raise
TypeError
(
"Compiled source must be string"
)
gen
=
RExpression
(
text
,
str
(
filename
),
mode
)
gen
.
compile
()
return
gen
.
getCode
()
# gen = RExpression(text, str(filename), mode)
# gen.compile()
# return gen.getCode()
import
compile
return
compile
(
text
,
filename
,
mode
)
class
RExpression
(
RestrictedPython
.
RCompile
.
RestrictedCompileMode
):
CodeGeneratorClass
=
compiler
.
pycodegen
.
ExpressionCodeGenerator
def
__init__
(
self
,
source
,
filename
,
mode
=
"eval"
):
self
.
mode
=
mode
RestrictedPython
.
RCompile
.
RestrictedCompileMode
.
__init__
(
self
,
source
,
filename
)
self
.
rm
=
RestrictionMutator
()
# The security checks are performed by a set of six functions that
# must be provided by the restricted environment.
_getattr_name
=
ast
.
Name
(
"getattr"
)
class
RestrictionMutator
:
def
__init__
(
self
):
self
.
errors
=
[]
self
.
warnings
=
[]
self
.
used_names
=
{}
def
error
(
self
,
node
,
info
):
"""Records a security error discovered during compilation."""
lineno
=
getattr
(
node
,
'lineno'
,
None
)
if
lineno
is
not
None
and
lineno
>
0
:
self
.
errors
.
append
(
'Line %d: %s'
%
(
lineno
,
info
))
else
:
self
.
errors
.
append
(
info
)
def
visitGetattr
(
self
,
node
,
walker
):
"""Converts attribute access to a function call.
'foo.bar' becomes 'getattr(foo, "bar")'.
Also prevents augmented assignment of attributes, which would
be difficult to support correctly.
"""
node
=
walker
.
defaultVisitNode
(
node
)
return
ast
.
CallFunc
(
_getattr_name
,
[
node
.
expr
,
ast
.
Const
(
node
.
attrname
)])
def
visitExec
(
self
,
node
,
walker
):
self
.
error
(
node
,
"exec statements are not supported"
)
def
visitPrint
(
self
,
node
,
walker
):
"""Make sure prints always have a destination
If we get a print without a destination, make the default destination
untrusted_output.
"""
node
=
walker
.
defaultVisitNode
(
node
)
if
node
.
dest
is
None
:
node
.
dest
=
ast
.
Name
(
'untrusted_output'
)
return
node
visitPrintnl
=
visitPrint
def
visitRaise
(
self
,
node
,
walker
):
self
.
error
(
node
,
"raise statements are not supported"
)
def
visitTryExcept
(
self
,
node
,
walker
):
self
.
error
(
node
,
"try/except statements are not supported"
)
#
class RExpression(RestrictedPython.RCompile.RestrictedCompileMode):
#
#
CodeGeneratorClass = compiler.pycodegen.ExpressionCodeGenerator
#
#
def __init__(self, source, filename, mode = "eval"):
#
self.mode = mode
#
RestrictedPython.RCompile.RestrictedCompileMode.__init__(
#
self, source, filename)
#
self.rm = RestrictionMutator()
#
#
#
#
The security checks are performed by a set of six functions that
#
#
must be provided by the restricted environment.
#
#
_getattr_name = ast.Name("getattr")
#
#
#
class RestrictionMutator:
#
#
def __init__(self):
#
self.errors = []
#
self.warnings = []
#
self.used_names = {}
#
#
def error(self, node, info):
#
"""Records a security error discovered during compilation."""
#
lineno = getattr(node, 'lineno', None)
#
if lineno is not None and lineno > 0:
#
self.errors.append('Line %d: %s' % (lineno, info))
#
else:
#
self.errors.append(info)
#
#
def visitGetattr(self, node, walker):
#
"""Converts attribute access to a function call.
#
#
'foo.bar' becomes 'getattr(foo, "bar")'.
#
#
Also prevents augmented assignment of attributes, which would
#
be difficult to support correctly.
#
"""
#
node = walker.defaultVisitNode(node)
#
return ast.CallFunc(_getattr_name,
#
[node.expr, ast.Const(node.attrname)])
#
#
def visitExec(self, node, walker):
#
self.error(node, "exec statements are not supported")
#
#
def visitPrint(self, node, walker):
#
"""Make sure prints always have a destination
#
#
If we get a print without a destination, make the default destination
#
untrusted_output.
#
"""
#
node = walker.defaultVisitNode(node)
#
if node.dest is None:
#
node.dest = ast.Name('untrusted_output')
#
return node
#
visitPrintnl = visitPrint
#
#
def visitRaise(self, node, walker):
#
self.error(node, "raise statements are not supported")
#
#
def visitTryExcept(self, node, walker):
#
self.error(node, "try/except statements are not supported")
#
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