Spaces:
Sleeping
Sleeping
File size: 5,816 Bytes
0c39b50 e7bbb2c 0c39b50 e7bbb2c 0c39b50 2414a72 0c39b50 e7bbb2c 0c39b50 e7bbb2c 0c39b50 8b1250d 0c39b50 e7bbb2c 0c39b50 e7bbb2c 0c39b50 e7bbb2c |
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 |
from RestrictedPython import compile_restricted
from RestrictedPython.PrintCollector import PrintCollector
from RestrictedPython.Guards import safe_globals, safe_builtins, guarded_iter_unpack_sequence
from RestrictedPython.Eval import default_guarded_getiter, default_guarded_getitem
from RestrictedPython.Utilities import utility_builtins
from RestrictedPython.Guards import guarded_unpack_sequence
from RestrictedPython.Limits import limited_range, limited_list, limited_tuple
from io import StringIO
import types
def eval_restricted_script(script):
# Set up print collector and output handling
all_prints = StringIO()
class CustomPrintCollector:
"""Collect printed text, accumulating in shared StringIO"""
def __init__(self, _getattr_=None):
self.txt = []
self._getattr_ = _getattr_
def write(self, text):
all_prints.write(text)
self.txt.append(text)
def __call__(self):
result = ''.join(self.txt)
return result
def _call_print(self, *objects, **kwargs):
if kwargs.get('file', None) is None:
kwargs['file'] = self
else:
self._getattr_(kwargs['file'], 'write')
print(*objects, **kwargs)
# Create the restricted builtins dictionary
restricted_builtins = dict(safe_builtins)
restricted_builtins.update(utility_builtins) # Add safe __import__
restricted_builtins.update({
# Print handling
'_print_': CustomPrintCollector,
'_getattr_': getattr,
'_getitem_': default_guarded_getitem,
'_getiter_': default_guarded_getiter,
'_iter_unpack_sequence_': guarded_iter_unpack_sequence,
'_unpack_sequence_': guarded_unpack_sequence,
'_inplacevar_': protected_inplacevar,
'_apply_': _apply,
'_write_': _default_write_,
# Define allowed imports
'__allowed_modules__': ['math', 'datetime'],
'__import__': __import__,
# Basic functions
'len': len,
'range': limited_range,
'enumerate': enumerate,
'zip': zip,
# Math operations
'sum': sum,
'max': max,
'min': min,
'abs': abs,
'round': round,
'pow': pow,
# Type conversions
'int': int,
'float': float,
'str': str,
'bool': bool,
'list': limited_list,
'tuple': limited_tuple,
'set': set,
'dict': dict,
'bytes': bytes,
'bytearray': bytearray,
# Sequence operations
'all': all,
'any': any,
'sorted': sorted,
'reversed': reversed,
# String operations
'chr': chr,
'ord': ord,
# Other safe operations
'isinstance': isinstance,
'issubclass': issubclass,
'hasattr': hasattr,
'callable': callable,
'format': format,
})
# Create the restricted globals dictionary
restricted_globals = dict(safe_globals)
restricted_globals['__builtins__'] = restricted_builtins
try:
byte_code = compile_restricted(script, filename='<inline>', mode='exec')
exec(byte_code, restricted_globals)
return {
'prints': all_prints.getvalue(),
'success': True
}
except Exception as e:
return {
'error': str(e),
'success': False
}
def _default_write_(obj):
if isinstance(obj, types.ModuleType):
raise ValueError("Modules are not allowed in to be written to.")
return obj
"""
Borrowed implementation of _inplacevar_ from the Zope Foundations's AccessControl module
https://github.com/zopefoundation/AccessControl/blob/f9ae58816f0712eb6ea97459b4ccafbf4662d9db/src/AccessControl/ZopeGuards.py#L530
"""
valid_inplace_types = (list, set)
inplace_slots = {
'+=': '__iadd__',
'-=': '__isub__',
'*=': '__imul__',
'/=': (1 / 2 == 0) and '__idiv__' or '__itruediv__',
'//=': '__ifloordiv__',
'%=': '__imod__',
'**=': '__ipow__',
'<<=': '__ilshift__',
'>>=': '__irshift__',
'&=': '__iand__',
'^=': '__ixor__',
'|=': '__ior__',
}
def __iadd__(x, y):
x += y
return x
def __isub__(x, y):
x -= y
return x
def __imul__(x, y):
x *= y
return x
def __idiv__(x, y):
x /= y
return x
def __ifloordiv__(x, y):
x //= y
return x
def __imod__(x, y):
x %= y
return x
def __ipow__(x, y):
x **= y
return x
def __ilshift__(x, y):
x <<= y
return x
def __irshift__(x, y):
x >>= y
return x
def __iand__(x, y):
x &= y
return x
def __ixor__(x, y):
x ^= y
return x
def __ior__(x, y):
x |= y
return x
inplace_ops = {
'+=': __iadd__,
'-=': __isub__,
'*=': __imul__,
'/=': __idiv__,
'//=': __ifloordiv__,
'%=': __imod__,
'**=': __ipow__,
'<<=': __ilshift__,
'>>=': __irshift__,
'&=': __iand__,
'^=': __ixor__,
'|=': __ior__,
}
def protected_inplacevar(op, var, expr):
"""Do an inplace operation
If the var has an inplace slot, then disallow the operation
unless the var an instance of ``valid_inplace_types``.
"""
if hasattr(var, inplace_slots[op]) and \
not isinstance(var, valid_inplace_types):
try:
cls = var.__class__
except AttributeError:
cls = type(var)
raise TypeError(
"Augmented assignment to %s objects is not allowed"
" in untrusted code" % cls.__name__)
return inplace_ops[op](var, expr)
def _apply(f, *a, **kw):
return f(*a, **kw) |