You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been using LUPA a bit and its functionality to block access to python objects works great.
But I just realized that the LUA builtins are still exposed (eg print and os.execute) despite the python part being sandboxed.
I played around a bit and discovered the following code snippet blocks access to the dangerous functions, but I was wondering if there was a better way?
lua=lupa.LuaRuntime()
forkeyinlist(lua.globals()):
ifkey!='_G':
dellua.globals()[key]
# The following now fails instead of executingf=lua.eval(''' function() os.execute('echo BLARG') end''')
f2()
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I've been using LUPA a bit and its functionality to block access to python objects works great.
But I just realized that the LUA builtins are still exposed (eg
print
andos.execute
) despite the python part being sandboxed.I played around a bit and discovered the following code snippet blocks access to the dangerous functions, but I was wondering if there was a better way?
Thanks!
The text was updated successfully, but these errors were encountered: