shikashi icon indicating copy to clipboard operation
shikashi copied to clipboard

shikashi is a ruby sandbox that permits the execution of "unprivileged" scripts by defining the permitted methods and constants the scripts can invoke with a white list logic

Results 12 shikashi issues
Sort by recently updated
recently updated
newest added

the example ``` ruby s = Sandbox.new priv = Privileges.new priv.allow_method :print priv.allow_const_read "Object::A" A = 8 s.run(priv, ' print "assigned Object::A:", A,"\n" ') ``` Is not working since allow_const_read...