1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
import pytest
from RestrictedPython import compile_restricted_exec
from RestrictedPython.Guards import guarded_unpack_sequence
from RestrictedPython.Guards import safe_builtins
from RestrictedPython.Guards import safe_globals
from RestrictedPython.Guards import safer_getattr
from tests.helper import restricted_eval
from tests.helper import restricted_exec
def _write_(x):
return x
def test_Guards_bytes():
"""It contains bytes"""
assert restricted_eval('bytes(1)') == bytes(1)
def test_Guards_sorted():
"""It contains sorted"""
assert restricted_eval('sorted([5, 2, 8, 1])') == sorted([5, 2, 8, 1])
def test_Guards__safe_builtins__1():
"""It contains `slice()`."""
assert restricted_eval('slice(1)') == slice(1)
def test_Guards__safe_builtins__2():
"""It allows to define new classes by allowing `__build_class__`.
"""
class_can_be_defined_code = '''
class MyClass:
value = None
def display(self):
return str(self.value)
ob1 = MyClass()
ob1.value = 2411
result = ob1.display()'''
restricted_globals = dict(
result=None,
__name__='restricted_module',
__metaclass__=type,
_write_=_write_,
_getattr_=getattr)
restricted_exec(class_can_be_defined_code, restricted_globals)
assert restricted_globals['result'] == '2411'
def test_Guards__guarded_setattr__1():
"""It allows use setattr and delattr when _guarded_writes is True.
"""
class MyObjectD:
value = None
_guarded_writes = 1
setattr_code = '''
my_object_d = MyObjectD()
setattr(my_object_d, 'value', 9999)'''
delattr_code = "delattr(my_object_d, 'value')"
restricted_globals = dict(
__builtins__=safe_builtins,
MyObjectD=MyObjectD,
my_object_d=None,
__name__='restricted_module',
__metaclass__=type,
_write_=_write_,
_getattr_=getattr,)
restricted_exec(setattr_code, restricted_globals)
assert 9999 == restricted_globals['my_object_d'].value
restricted_exec(delattr_code, restricted_globals)
assert None is restricted_globals['my_object_d'].value
def test_Guards__write_wrapper__1():
"""It wraps the value attribute when it is not
marked with _guarded_writes."""
class ObjWithoutGuardedWrites:
my_attr = None
setattr_without_guarded_writes_code = '''
my_ob = ObjWithoutGuardedWrites()
setattr(my_ob, 'my_attr', 'bar')'''
restricted_globals = dict(
__builtins__=safe_builtins,
ObjWithoutGuardedWrites=ObjWithoutGuardedWrites,
my_attr=None,
__name__='restricted_module',
__metaclass__=type,
_write_=_write_,
_getattr_=getattr,)
with pytest.raises(TypeError) as excinfo:
restricted_exec(
setattr_without_guarded_writes_code, restricted_globals)
assert 'attribute-less object (assign or del)' in str(excinfo.value)
def test_Guards__write_wrapper__2():
"""It wraps setattr and it works when guarded_setattr is implemented."""
class ObjWithGuardedSetattr:
my_attr = None
def __guarded_setattr__(self, key, value):
setattr(self, key, value)
set_attribute_using_guarded_setattr_code = '''
myobj_with_guarded_setattr = ObjWithGuardedSetattr()
setattr(myobj_with_guarded_setattr, 'my_attr', 'bar')
'''
restricted_globals = dict(
__builtins__=safe_builtins,
ObjWithGuardedSetattr=ObjWithGuardedSetattr,
myobj_with_guarded_setattr=None,
__name__='restricted_module',
__metaclass__=type,
_write_=_write_,
_getattr_=getattr,)
restricted_exec(
set_attribute_using_guarded_setattr_code, restricted_globals)
assert restricted_globals['myobj_with_guarded_setattr'].my_attr == 'bar'
def test_Guards__guarded_unpack_sequence__1(mocker):
"""If the sequence is shorter then expected the interpreter will raise
'ValueError: need more than X value to unpack' anyway
=> No childs are unpacked => nothing to protect."""
src = "one, two, three = (1, 2)"
_getiter_ = mocker.stub()
_getiter_.side_effect = lambda it: it
glb = {
'_getiter_': _getiter_,
'_unpack_sequence_': guarded_unpack_sequence,
}
with pytest.raises(ValueError) as excinfo:
restricted_exec(src, glb)
assert 'values to unpack' in str(excinfo.value)
assert _getiter_.call_count == 1
STRING_DOT_FORMAT_DENIED = """\
a = 'Hello {}'
b = a.format('world')
"""
def test_Guards__safer_getattr__1a():
"""It prevents using the format method of a string.
format() is considered harmful:
http://lucumr.pocoo.org/2016/12/29/careful-with-str-format/
"""
glb = {
'__builtins__': safe_builtins,
}
with pytest.raises(NotImplementedError) as err:
restricted_exec(STRING_DOT_FORMAT_DENIED, glb)
assert 'Using the format*() methods of `str` is not safe' == str(err.value)
# contributed by Ward Theunisse
STRING_DOT_FORMAT_MAP_DENIED = """\
a = 'Hello {foo.__dict__}'
b = a.format_map({foo:str})
"""
def test_Guards__safer_getattr__1b():
"""It prevents using the format method of a string.
format() is considered harmful:
http://lucumr.pocoo.org/2016/12/29/careful-with-str-format/
"""
glb = {
'__builtins__': safe_builtins,
}
with pytest.raises(NotImplementedError) as err:
restricted_exec(STRING_DOT_FORMAT_MAP_DENIED, glb)
assert 'Using the format*() methods of `str` is not safe' == str(err.value)
# contributed by Abhishek Govindarasu
STR_DOT_FORMAT_DENIED = """\
str.format('{0.__class__.__mro__[1]}', int)
"""
def test_Guards__safer_getattr__1c():
"""It prevents using the format method of a string.
format() is considered harmful:
http://lucumr.pocoo.org/2016/12/29/careful-with-str-format/
"""
glb = {
'__builtins__': safe_builtins,
}
with pytest.raises(NotImplementedError) as err:
restricted_exec(STR_DOT_FORMAT_DENIED, glb)
assert 'Using the format*() methods of `str` is not safe' == str(err.value)
STR_DOT_FORMAT_MAP_DENIED = """\
str.format_map('Hello {foo.__dict__}', {'foo':str})
"""
def test_Guards__safer_getattr__1d():
"""It prevents using the format method of a string.
format() is considered harmful:
http://lucumr.pocoo.org/2016/12/29/careful-with-str-format/
"""
glb = {
'__builtins__': safe_builtins,
}
with pytest.raises(NotImplementedError) as err:
restricted_exec(STR_DOT_FORMAT_MAP_DENIED, glb)
assert 'Using the format*() methods of `str` is not safe' == str(err.value)
SAFER_GETATTR_ALLOWED = """\
class A:
def __init__(self, value):
self.value = value
a = A(2)
result = getattr(a, 'value')
"""
def test_Guards__safer_getattr__3():
"""It allows to use `safer_getattr`."""
restricted_globals = dict(
__builtins__=safe_builtins,
__name__=None,
__metaclass__=type,
_write_=_write_,
getattr=safer_getattr,
result=None,
)
restricted_exec(SAFER_GETATTR_ALLOWED, restricted_globals)
assert restricted_globals['result'] == 2
SAFER_GETATTR_BREAKOUT = """\
def g(obj, name):
# create class FakeString which inherits from str
class FakeString(str):
# overload startswith() to always return false
def startswith(self, _):
return False
return getattr(obj, FakeString(name))
# call str.__class__.__base__.__subclasses__()
subclasses = g(g(g(str, "__class__"), "__base__"), "__subclasses__")()
# traverse list of subclasses until we reach the BuiltinImporter class
x = "test"
while "BuiltinImporter" not in str(x):
x = subclasses.pop()
continue
# use BuiltinImporter to import 'os' and access to a not allowed function
result = x.load_module('os').getgid()
"""
def test_Guards__safer_getattr__4():
restricted_globals = dict(
__builtins__=safe_builtins,
__name__=None,
__metaclass__=type,
# _write_=_write_,
getattr=safer_getattr,
result=None,
)
with pytest.raises(TypeError) as err:
restricted_exec(SAFER_GETATTR_BREAKOUT, restricted_globals)
assert 'type(name) must be str' == str(err.value)
SAFER_GETATTR_BREAKOUT2 = """\
g = None
leak = None
def test():
global g, leak
leak = getattr(getattr(getattr(g, "gi_frame"), "f_back"), "f_back")
yield leak
g = test()
g.send(None)
os = getattr(leak, "f_builtins").get('__import__')('os')
result = os.getgid()
"""
def test_Guards__safer_getattr__5():
restricted_globals = dict(
__builtins__=safe_builtins,
__name__=None,
__metaclass__=type,
# _write_=_write_,
getattr=safer_getattr,
result=None,
)
# restricted_exec(SAFER_GETATTR_BREAKOUT2, restricted_globals)
# assert restricted_globals['result'] == 20
with pytest.raises(AttributeError) as err:
restricted_exec(SAFER_GETATTR_BREAKOUT2, restricted_globals)
assert (
'"gi_frame" is a restricted name, '
'that is forbidden to access in RestrictedPython.'
) == str(err.value)
def test_Guards__safer_getattr_raise():
from types import SimpleNamespace
from RestrictedPython.Guards import safer_getattr_raise
o = SimpleNamespace(a="a")
assert safer_getattr_raise(o, "a") == "a"
assert safer_getattr_raise(o, "b", None) is None
with pytest.raises(AttributeError):
safer_getattr_raise(o, "b")
def test_call_py3_builtins():
"""It should not be allowed to access global builtins in Python3."""
result = compile_restricted_exec('builtins["getattr"]')
assert result.code is None
assert result.errors == ('Line 1: "builtins" is a reserved name.',)
GETATTR_UNDERSCORE_NAME = """
getattr([], '__class__')
"""
def test_safer_getattr__underscore_name():
"""It prevents accessing an attribute which starts with an underscore."""
result = compile_restricted_exec(GETATTR_UNDERSCORE_NAME)
assert result.errors == ()
assert result.warnings == []
glb = safe_globals.copy()
glb['getattr'] = safer_getattr
with pytest.raises(AttributeError) as err:
exec(result.code, glb, {})
assert (
'"__class__" is an invalid attribute name because it starts with "_"'
== str(err.value))
|