gpt4 book ai didi

ruby - 鹿石 : cannot access constant Hash exception

转载 作者:太空宇宙 更新时间:2023-11-03 16:04:55 24 4
gpt4 key购买 nike

为什么在这种情况下使用 Shikashi Gem 会出现安全错误“无法访问常量哈希”

include Shikashi

privileges = Privileges.new
privileges.instances_of(Hash).allow_all
Sandbox.new.run(privileges, "arguments=Hash.new;")

有什么见解吗?我需要在沙盒中运行一些 ruby​​ 代码,看看它的行为是否良好。

最佳答案

您需要允许脚本 read the Hash constant .您还需要允许 calling the new method on the Hash object :

include Shikashi

privileges = Privileges.new
privileges.allow_const_read "Hash"
privileges.object(Hash).allow :new
privileges.instances_of(Hash).allow_all
Sandbox.new.run(privileges, "arguments=Hash.new;")

关于ruby - 鹿石 : cannot access constant Hash exception,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16223160/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com